<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# LOCAL TO BUSINESS
--------------------------------------------------------------*/


/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #1a4c91;
  --color-secondary: #DD6644;
}




/*--------------------------------------------------------------
# Sections &amp; Section Header
--------------------------------------------------------------*/
.sections-bg {
  background-color: #1a4c91;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #012f70;
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 00px 0;
}


.contact .contact-item h1 {
  font-weight: 700;
  margin: 40px 20px 00px 20px;
  padding-bottom: 8px;
  font-size: 28px;
}



.contact .contact-item {
  width: 100%;
  background-color: #5a85c0;
  margin-bottom: 10px;
  padding: 10px 10px 00px 10px ;
  border-radius: 10px;
  color: #D4E8FD;
}

.contact .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 33px;
  height: 33px;
  background-color: rgba(250, 250, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .contact-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .contact-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .contact-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: left;
  padding: 15px;
  font-weight: 400;
  font-size: 20px;
}

.contact .php-email-form .sent-message .smaller {
  font-weight: 200;
  font-size: 17px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 8px 25px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

.contact .php-email-form .form-check {
  color: #004D96;
  font-size: 13px;
  font-weight: 400;
}


.contact .contact-item .anfahrt {
    font-size: 18px;
    padding-bottom: 10px;
    color: #EDFCFF;
}

.contact .contact-item .anfahrt .emphasis{
    font-weight: 600
}



.rowspace {
    padding-bottom: 25px;
}




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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer .footer-links ul a {
  color: #bbccdd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
</pre></body></html>