:root {
    --background-color: #fff;
    --main-color: #031aeb;
    --red-color: #e73c32;
    --secondary-color: #031aeb;
    --navbar-color: #fff;
    --navbar-text-color: #333;
    --footer-color: #3e3e3e;
    --footer-heading-color: #d9d9d9;
    --heading-color: #444;
    --error-color: #FF0000;
    --background-parallax-color: #F0F0F0;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/roboto-latin/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Roboto'), local('Roboto-Regular'),
        url('../webfonts/roboto-latin/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../webfonts/roboto-latin/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../webfonts/roboto-latin/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../webfonts/roboto-latin/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../webfonts/roboto-latin/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

.page-title {
    display: inline-block;
    padding-top: 10px;
    padding-left: 50px;
    vertical-align: top;
    min-width: 75%; /* Standardgröße für größere Bildschirme */
    text-align: left;
}

/* Allgemeines Layout */
body {
    font-size: 100%;
    font-family: 'Roboto', sans-serif;
    background: var(--background-color);
    color: var(--heading-color);
}

/* Sticky footer with flexbox */
.site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.site-content {
	flex: 1;
}

/* General rules */
.nopadding {
    padding: 0 !important;
}

/*h1, h2 {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 54px;
}*/

h1 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--heading-color);
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.2rem;
}

a:link,
a:active,
a:visited {
    color: var(--red-color);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

.white > a:link,
.white > a:active,
.white > a:visited {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.white > a:hover {
	text-decoration: underline;
    color: #fff;
}

.blue {
    color: var(--main-color);
}

.grey-bg {
    background: var(--background-parallax-color);
}

.error {
	color: var(--error-color);
}
.fullname {
	display: none;
}
.middle-text {
    font-size: 14px;
}
.small-text {
    font-size: 12px;
}
.smaller {
	font-size: 11px;
}

.line {
    width: 80px;
    border: 1px solid var(--main-color);
}

.line-left {
    float:left;
    width: 80px;
    border: 1px solid var(--main-color);
}

.clear {
    clear: both;
}

/* Hide E-Mail from spam bots */
mail::after{content:attr(dom)}
mail::before{content:attr(me) "\0040"}

/* Fix outline on on click */
:active, :focus { outline: none; -moz-outline-style: none; }

/* Navbar */
.navbar-custom {
	border-top: 1px solid #eeeeee;
	background: var(--navbar-color) !important;
    box-shadow: 0 1px 6px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 6px rgba(0,0,0,.2);
    -o-box-shadow: 0 1px 6px rgba(0,0,0,.2);
}

/* Navbar Logosize */
#navbar-logo {
    max-width: 240px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--navbar-text-color);
}

/* Navbar active link & link on hover */
.navbar-custom .nav-item.active .nav-link, .navbar-custom .nav-item:hover .nav-link {
	color: var(--main-color) !important;
}

.nav-link.active {
	color: var(--main-color) !important;
    font-weight: 600;
}

/* Navbar Dropdown background & onclick */
.navbar-custom .dropdown-item.active, .navbar-custom .dropdown-item:active {
    background: var(--navbar-color) !important;
}

.navbar-custom .dropdown-item a {
    color: var(--navbar-text-color);
}

.navbar-custom .dropdown-item.active a {
    color: var(--main-color) !important;
}

/* Breakpoint fix */
@media (min-width: 768px) {
	.np {
		padding-right: 15px;
	}
}

@media (min-width:575px) and (max-width:690px){
	.navbar-custom .navbar-nav .nav-link {
    	font-size: 15px !important;
	}
}

@media (max-width: 1200px) {
    .hidden-lg {
        display: none;
    }
}

@media (max-width: 1100px) {
    #navbar-logo {
      width: 250px;
      height: auto;
    }
    .np {
        padding-right: 0;
    }
}

/* Breakpoint fix
@media (max-width: 768px) {
    #navbar-logo {
        margin-top: 5px !important;
    }
} */

/* For smartphones */
@media (max-width: 420px) {
    #navbar-logo {
      width: 200px;
      height: auto;
    }
    .np {
        padding-right: 0;
    }
}

.col-client {
    min-height: 200px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.img-client {
    margin: 0 auto;
    opacity: 0.7;
}


/* Footer */
footer {
	padding-top: 40px;
	background: var(--footer-color);
}

#footer-logo {
	width: 320px;
	height: auto;
	margin-top: 10px;
}

footer h1 {
    font-size: 1.25rem;
    color: var(--footer-heading-color);
}

.footer p {
	margin: 3px 0;
}

.footer-item ul li {
	padding: 1px 0px;
}

/* Social List */
ul.social-list  {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.social-list li {
    float: left;
    font-size: 20px;
}

.social-list li a {
    display: block;
    color: var(--main-color);
    text-align: center;
    padding: 16px 10px;
    text-decoration: none;
}

.social-list-first {
    padding-left: 70px !important;
}

.social-list li a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-trans {
    margin-top: 20px;
    font-weight: 400;
    padding: 10px 25px;
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-trans:hover {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #ffffff;
}

.btn-custom {
    font-weight: 400;
    padding: 10px 25px;
    color: #fff;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-custom:hover {
    border: 1px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
}

.btn-filled {
    font-weight: 400;
    padding: 5px 15px;
    color: #fff;
    background-color: #066731;
    border: 1px solid #066731;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-filled:hover {
    border: 1px solid #149414;
    background-color: #149414;
}

.btn-white {
    font-weight: 400;
    padding: 5px 15px;
    color: #066731;
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-white:hover {
	color: #fff;
    border: 1px solid #149414;
    background-color: #149414;
}

/* Parallax */
.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0;
    padding-bottom: 0;
}
.parallax-kp {
    /*background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url("https://via.placeholder.com/1920x200");*/
    background: var(--background-parallax-color);
}

.col-parallax {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-parallax {
    padding-top: 40px ;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .col-parallax {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .text-parallax {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .button-parallax {
        padding-bottom: 40px;
    }
}

/* Google maps */
iframe {
   float: left;
   max-height: 100%;
}

/* Forms */
.form-control:focus{
    border-color: var(--main-color);
    box-shadow: none;
    -webkit-box-shadow: none;
}

textarea {
    resize: none;
}

input, textarea {
    border-radius: 2px !important;
}

/* Extend bootstrap spacing */
.pt-6,
.py-6 {
 	padding-top: 5rem !important;
}

.pr-6,
.px-6 {
 	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
 	padding-bottom: 5rem !important;
}

.pl-6,
.px-6 {
 	padding-left: 5rem !important;
}

/* TeamPage */
.team-image {
    /*max-width: 250px;*/
    opacity: 1;
    transition: .5s ease;
    backface-visibility: hidden;
}

.team-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.team-container:hover .team-image {
    opacity: 0.2;
}

.team-container:hover .team-middle {
    opacity: 1;
}

.team-text {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}

/* ProjectPage */
.project-container {
    cursor: pointer
}

.project-image {
    opacity: 0.3;
    transition: .5s ease;
    backface-visibility: hidden;
}

.project-middle {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    bottom: 10px;
    left: 25px;
    text-align: left;
}

.project-container:hover .project-image {
    opacity: 0.1;
    background: var(--main-color) !important;
}

.project-container:hover .project-middle {
    opacity: 1;
}

.project-text {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}

.project-active {
    opacity: 1;
}

.project-active .project-image {
    opacity: 0.2;
}

.tab-content{
    display: none;
}

.tab-content.current{
    display: inherit;
}

/* xs */
@media (max-width:767px) {
  .xs-only-text-left {
    text-align: left !important; }

  .xs-only-text-right {
    text-align: right !important; }

  .xs-only-text-center {
    text-align: center !important; }
 }
@media only screen {
  .xs-text-left {
    text-align: left !important; }

  .xs-text-right {
    text-align: right !important; }

  .xs-text-center {
    text-align: center !important; }
}

/* sm */
@media only screen and (min-width:768px) and (max-width:991px) {
  .sm-only-text-left {
    text-align: left !important; }

  .sm-only-text-right {
    text-align: right !important; }

  .sm-only-text-center {
    text-align: center !important; }
}
@media only screen and (min-width:768px) {
  .sm-text-left {
    text-align: left !important; }

  .sm-text-right {
    text-align: right !important; }

  .sm-text-center {
    text-align: center !important; }
}

/* md */
@media only screen and (min-width:992px) and (max-width:1199px) {
  .md-only-text-left {
    text-align: left !important; }

  .md-only-text-right {
    text-align: right !important; }

  .md-only-text-center {
    text-align: center !important; }
}
@media only screen and (min-width:992px) {
  .md-text-left {
    text-align: left !important; }

  .md-text-right {
    text-align: right !important; }

  .md-text-center {
    text-align: center !important; }
}

/* lg */
@media (min-width:1200px) {
  .lg-only-text-left {
    text-align: left !important; }

  .lg-only-text-right {
    text-align: right !important; }

  .lg-only-text-center {
    text-align: center !important; }
}
@media only screen and (min-width:1200px) {
  .lg-text-left {
    text-align: left !important; }

  .lg-text-right {
    text-align: right !important; }

  .lg-text-center {
    text-align: center !important; }
}

/**
 * Button
 */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/*[class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
  position: relative;
  padding-bottom: 50px;
}*/

@media (max-width: 768px) {
    .center-logo-xs {
        text-align: center !important
    }
}

a:focus-visible {
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: black;
}
