/*-----------------------------------------------------------------------------
// style.css
//
// The main styling page of the website for the practice Maxones & Heil. The 
// styling is inspired by the 587 Tiya Golf Club template from the website 
// templatemo.com (https://templatemo.com/tm-587-tiya-golf-club). While the 
// service items style is inspired by TemplateMo 586 Scholar
// (https://templatemo.com/tm-586-scholar).
//
//----------------------------------------------------------------------------*/

/*---------------------------------------
  COLOR THEMES             
-----------------------------------------*/

/* Original colors */
/* :root {
  --index-primary-color:          #C66E4E;
  --index-secondary-color:        #F2CC8F;
  --maxones-primary-color:        #BF3131;
  --maxones-secondary-color:      #E19E9E;
  --heil-primary-color:           #E0A75E;
  --heil-secondary-color:         #F9D689;
  --white-color:                  #ffffff;
  --dark-color:                   #000000;
} */

/* Nature based */
/* :root {
  --index-primary-color:          #7288c8;
  --index-secondary-color:        #e1d7ad;
  --maxones-primary-color:        #a94f2e;
  --maxones-secondary-color:      #d1b18d;
  --heil-primary-color:           #3F784C;
  --heil-secondary-color:         #dfdf93;
  --white-color:                  #eee1d3;
} */

/* Inspired by pinterest palette (https://pin.it/7g8WC84tl) */
/* :root {
  --index-primary-color:          #527c31;
  --index-secondary-color:        #d7c672;
  --maxones-primary-color:        #d45735;
  --maxones-secondary-color:      #e2b7a9;
  --heil-primary-color:           #706b98;
  --heil-secondary-color:         #b3d0d3;
  --white-color:                  #eee1d3;
} */

/* Inspired by Stellas Logo draft color selection 1 */
/* :root {
  --index-primary-color:          #7C6E3A;
  --index-secondary-color:        #CFC1A7;
  --maxones-primary-color:        #A15C42;
  --maxones-secondary-color:      #EFE9D7;
  --heil-primary-color:           #55553c;
  --heil-secondary-color:         #d6bfa9;
  --white-color:                  #eee1d3;
} */

/* Inspired by Stellas Logo draft color selection 2 */
/* :root {
  --index-primary-color:          #D9934E;
  --index-secondary-color:        #e9d0b8;
  --maxones-primary-color:        #AB5E38;
  --maxones-secondary-color:      #d3b29f;
  --heil-primary-color:           #7E7858;
  --heil-secondary-color:         #cfc8ac;
} */

/* Inspired by Stellas Logo draft color selection 3 */
/* :root {
  --index-primary-color:          #C19D68;
  --index-secondary-color:        #EFE7D5;
  --maxones-primary-color:        #645c1b;
  --maxones-secondary-color:      #CFBFA3;
  --heil-primary-color:           #292869;
  --heil-secondary-color:         #BBC1BD;
} */

/* Final selection */
:root {
  --index-primary-color:          #a07951;
  --index-secondary-color:        #dac9a6;
  --maxones-primary-color:        #c15e4d; 
  --maxones-secondary-color:      #d7b18d;
  --heil-primary-color:           #7f733d;
  --heil-secondary-color:         #c5b175;
  --white-color:                  #eee9d7;
  --dark-color:                   #404040;
  /* 
    Attention: Logo-Color must be changed 
    individually with the filter properties
    (Current default: --white-color) 
  */
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --current-primary-color:        var(--index-primary-color);
  --current-secondary-color:      var(--index-secondary-color);

  --selection-color:              #81B29A;
  --selection-color:              var(--current-primary-color);
  --p-color:                      var(--bs-gray-600);
  --special-inverted-color:       #beab86;

  --custom-btn-bg-color:          var(--current-secondary-color);
  --custom-btn-bg-hover-color:    var(--current-primary-color);
  --link-hover-color:             var(--current-secondary-color);

  --body-font-family:             'DM Sans', Arial, sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}

::selection {
  background-color: var(--selection-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM CLASSES
-----------------------------------------*/
.center-wrap
{
  width: 100%;
  display: flex;
  justify-content: center;
}

.no-margin
{
  margin: 0;
}

.no-padding
{
  padding: 0;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--current-primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
  font-size: var(--p-font-size);
}


/*---------------------------------------
  SECTIONS             
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn, .custom-border-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color) !important;
}

.custom-btn:hover, .custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color) !important;
  border: 2px solid var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color) !important;
}

/*---------------------------------------
  WAVES
-----------------------------------------*/
.wave, .nav-wave {
  width: 100vw;
}

.nav-wave {
  min-height: 150px;
}

.lower-wave-fix {
  transform: translateY(7px);
}

/*---------------------------------------
  MILKY WINDOWS
-----------------------------------------*/
.milky-window-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 50px 0;
}

.milky-window-block .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.milky-window-block .input-group-text {
  background-color: transparent;
  border: 0;
}

/*---------------------------------------
  CUSTOM COLORS
-----------------------------------------*/
.maxones-color {
  border: var(--maxones-primary-color) 3px solid;
}

.heil-color {
  border: var(--heil-primary-color) 3px solid;
}

/*---------------------------------------
  NAVIGATION BAR
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--current-primary-color);
}

.navbar {
  background: transparent;
  z-index: 99;
  padding: 15px 0;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
  max-width: 48px;
}

.navbar-brand-image {
  width: 48px;
  height: 48px;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-brand-subtitle, .site-footer-brand-subtitle {
  display: flex;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent !important;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--index-secondary-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  min-height: 670px;
  margin-bottom: -90px;
  display: flex;
  flex-direction: column;
}

.hero-section-maxones {
  background-image: url('../images/quote-images/hero-maxones.webp');
}

.hero-section-heil {
  background-image: url('../images/quote-images/hero-heil.webp');
}

.hero-window {
  margin: 30px 0;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
  background-position: 50% 90%;
}

.hero-50 object{
  position: absolute;
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section object {
  right: 0;
  left: 0;
  top:0;
}

.hero-section > object {
  top: 0;
}

.hero-section .container + object {
  top: auto;
  bottom: -10px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}

.hero-button-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.hero-btn-banner {
  flex-direction: column;
  align-items: center;
}

.hero-btn-banner h3 {
  margin: 0;
  padding: 0;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%
}

.hero-btn-group a {
  margin: 5px;
}

.hero-image {
  border-radius: var(--border-radius-medium);
  border: 6px solid;
  border-color: transparent;
  height: 80%;
  width: 80%;
  object-fit: cover;
  object-position: center;
  margin: 10px 0;
}

.individual-hero-slogan {
  margin-top: 30px;
  margin-bottom: 30px;
}

/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.about-section {
  padding-bottom: 70px;
}

.about-me-tag {
  color: var(--current-primary-color);
  border: var(--current-primary-color) 2px solid;
  border-radius: var(--border-radius-small);
  padding: 5px;
  margin: 5px;
  width: auto;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-image-small {
  width: 50%;
  height: 50%;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}

.about-image {
  transition: all 0.3s;
}

/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.bg-img-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
  height: fit-content;
}

.bg-index-img1 {
  background-color: var(--index-secondary-color);
}

.bg-index-img2 {
  background-color: var(--index-secondary-color);
}

.bg-maxones-img1 {
  background-image: url('../images/quote-images/maxones-quote1-img.webp');
}

.bg-maxones-img2 {
  background-image: url('../images/quote-images/maxones-quote2-img.webp');
}

.bg-heil-img1 {
  background-image: url('../images/quote-images/heil-quote1-img.webp');
}

.bg-heil-img2 {
  background-image: url('../images/quote-images/heil-quote2-img.webp');
}

.bg-heil-img3 {
  background-image: url('../images/quote-images/heil-quote3-img.webp');
}

.bg-img-place-holder {
  height: 250px;
}


/*---------------------------------------------
  SERVICES (GENERAL)
-----------------------------------------------*/
.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 120px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  background-color: var(--current-primary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
}

.services .service-item .icon img {
  max-width: 86px;
}

.services .service-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 50px 30px;
  background-color: var(--current-secondary-color);
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
}

.services .service-item p {
  color: #4a4a4a;
  margin-bottom: 25px;
}

.services .service-item .main-content img {
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius-medium);
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*---------------------------------------------
  SERVICES (GUENTER)
-----------------------------------------------*/
.service-item {
  position: relative;
  margin-top: 95px;
  font-size: var(--p-font-size);
}

.service-item .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 44px;
  color: var(--white-color);
  font-weight: bold;
  font-family: serif;

  background-color: var(--current-primary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 50px 30px;
  background-color: var(--current-secondary-color);
}

.service-item .main-content p,
.service-item .main-content ul li,
.service-item .main-content strong {
  color: var(--dark-color);
}

.service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
}

.service-item p {
  margin-bottom: 25px;
}

.service-item .main-content img {
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius-medium);
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.service-image-wrapper img {
  width: 80% !important;
  height: 80% !important;
}

/*---------------------------------------------
  DOUBLE COLUMN SERVICE (BARBARA)
-----------------------------------------------*/
.double-col-service-item {
  position: relative;
  height: 100%;
}

.double-col-service-col-marging {
  margin-top: 100px;
}

.double-col-service-item .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 44px;
  color: var(--white-color);
  font-weight: bold;
  font-family: serif;

  background-color: var(--current-primary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.double-col-service-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 30px 30px;
  background-color: var(--current-secondary-color);
  height: 100%;
}

.main-content p a:hover{
  color: var(--white-color);
}

.double-col-service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  padding-top: 18px;
  text-align: center;
}

.double-col-service-item p {
  color: var(--dark-color);
  margin-bottom: 25px;
}

.double-col-services-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*---------------------------------------------
  PROCESS
-----------------------------------------------*/
.process-item {
  position: relative;
  height: 100%;
}

.process-col-marging {
  margin-top: 100px;
}

.process-item .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 44px;
  color: var(--white-color);
  font-weight: bold;
  font-family: serif;

  background-color: var(--current-primary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 30px 30px;
  background-color: var(--current-secondary-color);
  height: 100%;
}

.main-content p a:hover{
  color: var(--white-color);
}

.process-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  padding-top: 18px;
  text-align: center;
}

.process-item p {
  color: var(--dark-color);
  margin-bottom: 25px;
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  padding-top: 0px;
  background-color: var(--current-secondary-color);
}

.contact-map {
  display: flex;
  justify-content: center;
  position: relative;
}

.contact-map a {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe, .contact-map img {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
}

.contact-map-button {
  position: absolute;
  bottom: 10px;
  background-color: var(--current-primary-color);
  color: white;
  border-radius: var(--border-radius-medium);
  padding: 10px;
  font-weight: bold;
}

.contact-information {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.contact-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  color: var(--dark-color);
}
.contact-point:hover {
  color: var(--dark-color);
}
.contact-point a:hover {
  cursor: pointer;
}

.contact-point i {
  font-size: 30px;
}

/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
  position: relative;
  background-color: var(--current-primary-color);
}

.site-footer .container {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.site-footer-logo-wraper{
  display: flex;
  align-items: center;
  width: 50%;
}

.svg-filter-white-color {
  filter: brightness(0) invert(1);
  filter: brightness(0) saturate(100%) invert(94%) sepia(12%) saturate(376%) hue-rotate(337deg) brightness(103%) contrast(87%);
}

.site-footer-links{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: #000000;
  width: 50%;
}

.site-footer-link-title {
color: var(--white-color);
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--current-primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  color: var(--link-hover-color);
}

.site-footer-legal-notice-row, .site-footer-copyright-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.site-footer-legal-notice-row *, .site-footer-copyright-row * {
  color: white;
  flex-shrink: unset;
  width: unset;
  max-width: unset;
  padding-left: 3px;
  padding-right: 3px;
}

.site-footer-legal-notice-row a {
  text-decoration: underline;
}

.site-footer-legal-notice-row i {
  font-size: 8px;
}

.site-footer-legal-notice-row a:hover {
  color: var(--link-hover-color);
}

.site-footer-copyright-row p, .site-footer-copyright-row i{
  font-size: 12px;
  margin: 0px;
}

/*---------------------------------------
  LEGAL NOTICE            
-----------------------------------------*/
.legalnotice-privacy-section {
  min-height: 100%;
}

.legal-notice, .privacy {
  margin-bottom: 50px;
}

.legalnotice-privacy-section h2 {
  font-weight: normal;
}

.legalnotice-privacy-section p {
  color: var(--dark-color);
  padding-left: 15px;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

@media screen and (max-width: 1199px){
  .navbar-brand-subtitle {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .mt-4-responsive
  {
    margin-top: 1.5rem;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--current-primary-color);
  }

  .nav-wave
  {
    min-height: 80px;
    width: 100vw;
    transform: translateY(-40px);
  }
  
  .navbar-brand-subtitle {
    flex-direction: row;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  .about-image-small {
    width: 75%;
    height: 75%;
  }

  .responsive-underline {
    border: none;
    border-bottom: 2px solid var(--white-color);
    border-radius: 0 !important;
    color: var(--white-color) !important;
  }

  .responsive-underline:hover {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--link-hover-color);
    color: var(--link-hover-color) !important;
  }

  .legalnotice-privacy-section {
    margin-top: 82px;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }

  .hero-btn-group {
    margin-bottom: 20px;
  }

  .hero-btn-banner {
    bottom: 55px;
  }

  .contact-information {
    width: 100%;
  }

  .bg-img-section {
    margin-bottom: 0;
  }

  .milky-window-block {
    padding: 30px;
    margin: 30px 0;
  }

  .hero-window {
    margin: 0;
  }

  .site-footer {
    padding-top: 20px;
  }

  .responsive-reverse {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .site-footer-brand-subtitle {
    flex-direction: column;
  }

  .service-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .milky-window-block {
    padding: 30px;
  }

  .hero-image {
    width: 100%;
    height: 100%;
  }

  .about-image-small {
    width: 100%;
    height: 100%;
  }

  .site-footer-logo-wraper {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .site-footer-width-fix {
    max-width: 100%;
  }
  
  .site-footer-links {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 30px;
    margin-bottom: 10px;
    align-items: center;
  }

  .site-footer-links h5 {
    margin-bottom: 0;
  }

  .navbar-brand-subtitle {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-brand-subtitle {
    flex-direction: row;
  }
}

@media screen and (max-width: 400px) {
  .hero-btn-group {
    flex-direction: column;
  }
  
  .hero-btn-group a{
    width: 100%;
  }

  .site-footer-brand-subtitle {
    flex-direction: column;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}

/*---------------------------------------
  SPECIAL COLOR ADAPTIONS
  (at the bottom for more priority)
-----------------------------------------*/
.inverted-color {
  color: var(--current-primary-color) !important;
  font-weight: 600 !important;
  background-color: var(--white-color) !important;
}

a.inverted-color {
  font-size: 17px !important;
}

a.inverted-color:hover, a.inverted-color.active {
  color: var(--special-inverted-color) !important;
}

.inverted-color-btn {
  background-color: transparent;
  color: var(--current-primary-color) !important;
  border-color: var(--current-primary-color);
}

.inverted-color-btn:hover {
  background-color: var(--current-secondary-color);
  border-color: var(--current-secondary-color);
  color: var(--white-color)
}

.inverted-color-navbar-toggler, .inverted-color-navbar-toggler::before, .inverted-color-navbar-toggler::after {
  background-color: var(--current-primary-color) !important;
}

.inverted-color-responsive-underline {
  border-color: var(--current-primary-color);
  color: var(--current-primary-color) !important;
  background: none;
}

.inverted-color-responsive-underline:hover {
  border-color: var(--current-secondary-color);
  color: var(--current-secondary-color) !important;
  background: none;
}

.index-color {
  color: var(--index-primary-color);
  border: none !important;
}

.maxones-color {
  color: var(--maxones-primary-color);
  border: none !important;
}

.heil-color {
  color: var(--heil-primary-color);
  border: none !important;
}

.maxones-color-btn {
  background-color: var(--maxones-primary-color);
  color: var(--white-color);
}

.maxones-color-btn:hover {
  background-color: var(--maxones-secondary-color);
  border-color: var(--maxones-secondary-color);
}

.heil-color-btn {
  background-color: var(--heil-primary-color);
  color: var(--white-color);
}

.heil-color-btn:hover {
  background-color: var(--heil-secondary-color);
  border-color: var(--heil-secondary-color);
}

.secondary-bg-section {
  background-color: var(--current-secondary-color);
}
