<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
  Theme Name: Regna
  Theme URL: https://bootstrapmade.com/regna-bootstrap-onepage-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --goodwill: #C8A681ff;
  --olive: #79822Eff;
  --dark-green: #262E11ff;
  --drab-dark-brown: #40391Aff;
  --dark-moss-green: #616B2Dff;
  --goodwill: #ed302a;
}

body {
  background: #fff;
  color: var(--dark-green);
  font-size: 20px;

  text-align: justify;

  font-family: "Roboto", serif !important;
  font-weight: 400;
  font-style: normal;
}

#contact iframe {
  width: 100% !important;
  padding: 0px !important;
}

a {
  color: var(--goodwill);
}

a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
  font-family: "Roboto", serif !important;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

#wellcome_row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: auto;
	gap: 10px;
	text-align: left;
	max-width: 1300px;
	height: 100%;
	padding: 10rem 0rem 0rem 0rem;
}
@media (max-width: 60rem) { /* Adjust 768px to your desired breakpoint */
  #wellcome_row {
    grid-template-columns: 1fr; /* Single column on smaller screens */
    width: 100%;
    height: auto;
  }

}

.contact_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates two equal-width columns */
  grid-auto-rows: auto; /* Automatically adjusts row height based on content */
  gap: 10px; /* Optional: Adds spacing between grid items */
  margin-bottom: 2rem;
}

#wellcome_row_left{
  padding: 2rem;
  margin: 2rem;
}

#wellcome_row_right {
	padding: 4rem;
	margin: 2rem;
	background: #fff;
	color: #202020;
	border-radius: 1rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition-duration: 200ms;
  border: 1px solid #fff;
}
#wellcome_row_right:hover{
  border: 1px solid var(--goodwill);
}

#welcome_form{
  form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  label {
    margin-bottom: 5px;
  }
  input, textarea {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    color: white;
  }
  &amp; input, &amp; textarea, &amp; select {
    background-color: rgba(242, 242, 242, 0);
    border: 0px;
    /* border-radius: 5px; */
    color: #1e1e1e;
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 0.8rem;
    border-bottom: 1px solid #2b2b2b;
    transition-duration: 200ms;
  }
  
  select {
    height: 3rem; /* Match the height of other input fields */
    line-height: 3rem; /* Vertically center the text */
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #1e1e1e;
    transition-duration: 200ms;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    outline: none; /* Remove default outline */
    border-bottom: 1px solid #ed302a;
    background-color: #ed302a18;
  }
  button[type="submit"] {
    background-color: var(--goodwill); /* Vibrant yellow */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    margin-top: 2rem;
  }
  button[type="submit"]:hover {
    background-color: #ff9800; /* Slightly darker yellow on hover */
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

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

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
  outline: none;
}

.back-to-top:hover {
  background: var(--goodwill);
  color: #1a1a1a;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 5.5rem;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
  margin: 0
}

#contact_row {
	background: var(--goodwill);
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 0.8rem;
}
#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #1a1a1a;
}

#header #logo img {
  padding: 0;
  margin: 0;
  border: 10px solid white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }

  #header #logo img {
  }
}

#header.header-fixed {
  background: rgb(255 255 255);
  height: 6.5rem;
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#header.header-fixed a {
  color: rgb(31, 31, 31);
}

#header_menu_row {
	margin-top: 1rem;
	height: 5.5rem;
}

.contact_row_text{
  color: white;
}

.button_contact{
  background: var(--goodwill);
  color: white !important;
  padding: 1rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 3rem;
  transition-duration: 200ms;
}
.button_contact a{
  color:white;
}
.button_contact:hover{
  background-color: red;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/goodwill/movers-04.jpg) top center;
  background-size: cover;
  position: relative;
  z-index: 996;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 60em) {
  #hero {
    height: auto;
  }
}

#hero:before {
  content: "";
  background: linear-gradient(white, #fff0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #1a1a1a;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #1a1a1a;
}

#hero .btn-get-started:hover {
  background: var(--goodwill);
  border: 2px solid var(--goodwill);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu&gt;li {
  float: left;
}

.nav-menu li:hover&gt;ul,
.nav-menu li.sfHover&gt;ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.0rem;
  outline: none;
}

.nav-menu&gt;li {
  margin-left: 10px;
}

.nav-menu&gt;li&gt;a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--goodwill);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover&gt;a:before,
.nav-menu .menu-active&gt;a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: var(--goodwill);
  color: #1a1a1a;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 2.5rem 2rem 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #474747;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #1a1a1a;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #1a1a1a;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #1a1a1a;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--goodwill);
}

#mobile-nav ul .menu-item-active {
  color: var(--goodwill);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  backdrop-filter: blur(3px);
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #1a1a1a;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #4d4d4d;
  ;
}

/* willkommen Us Section
--------------------------------*/
#willkommen {
  background: #fff;
  padding: 80px 0;

}

#willkommen .willkommen-container .background {
  min-height: 300px;
  background: url(../img/willkommen-img.jpg) center top no-repeat;
  margin-bottom: 10px;
}

#willkommen .willkommen-container .content {
  background: #fff;
}

#willkommen .willkommen-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 40em) {
  #willkommen .willkommen-container .title {
    padding-top: 15px;
  }

  #willkommen {
    padding-top: 20px;
  }
}

#willkommen .willkommen-container p {
  line-height: 26px;
}

#willkommen .willkommen-container p:last-child {
  margin-bottom: 0;
}

#willkommen .willkommen-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#willkommen .willkommen-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--goodwill);
}

#willkommen .willkommen-container .icon-box .icon i {
  color: var(--goodwill);
  font-size: 24px;
}

#willkommen .willkommen-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#willkommen .willkommen-container .icon-box .title a {
  color: #111;
}

#willkommen .willkommen-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

.willkommen-zitat {
  padding: 20px;
  border-left: 5px solid var(--goodwill);
  font-size: 20px;
  background: #f7f7f7;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.aikido_link_text {
  padding: 20px;
  font-size: 20px;
  background: #ffffff;
  margin: 0px auto;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 1rem;
}

/* Facts Section
--------------------------------*/
#facts {
  background: #fff;
  padding: 80px 0 60px 0;
}

#facts .counters span {
  font-size: 48px;
  display: block;
  color: var(--goodwill);
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/* Services Section
--------------------------------*/
#services {
  background: #f7f7f7;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#willkommen .box {
  padding: 20px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#willkommen .box h2 {
  color: white;
}

#services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: var(--goodwill);
}

#services .icon a {
  display: inline-block;
}

#services .icon i {
  color: #1a1a1a;
  font-size: 24px;
}

#services .box:hover .icon {
  background: #fff;
  border: 2px solid var(--goodwill);
}

#services .box:hover .icon i {
  color: var(--goodwill);
}

#services .box:hover .icon a {
  color: var(--goodwill);
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}

#services .description {
  font-size: 14px;
  line-height: 24px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/17.png) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #1a1a1a;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #1a1a1a;
}

#call-to-action .cta-btn:hover {
  background: var(--goodwill);
  border: 2px solid var(--goodwill);
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  background: #f7f7f7;
  padding: 80px 0;
}

#portfolio #portfolio-wrapper {
  padding-right: 15px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 45px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: var(--goodwill);
  color: #1a1a1a;
}

#portfolio .portfolio-item {
  position: relative;
  height: 200px;
  overflow: hidden !important;
  margin-bottom: 15px;
  transition: all 350ms ease;
  transform: scale(1);
}

#portfolio .portfolio-item a {
  display: block;
  margin-right: 15px;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .details {
  height: 50px;
  background: var(--goodwill);
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -50px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 8px 0 2px 8px;
  margin: 0;
}

#portfolio .portfolio-item .details span {
  display: block;
  color: #1a1a1a;
  font-size: 13px;
  padding-left: 8px;
}

#portfolio .portfolio-item:hover .details {
  bottom: 0;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

/* Team Section
--------------------------------*/
#team {
  background: #f7f7f7;
  padding: 80px 0 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 70%;
  margin: 0px auto;
  border-radius: 50%;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: var(--goodwill);
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 0px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 0px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: var(--goodwill);
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #1a1a1a;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: var(--goodwill);
  color: #1a1a1a;
}

#contact .form #sendmessage {
  color: var(--goodwill);
  border: 1px solid var(--goodwill);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

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

#contact .form button[type="submit"] {
  background: var(--goodwill);
  border: 0;
  padding: 10px 24px;
  color: #1a1a1a;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #51d8ad;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #e7e7e7;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* -------------- EXTRA ------------------ */
#content {
  width: 1000px;
  margin: 0px auto;
}

.box {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  transition: all 0.5s;
  background: var(--goodwill) !important;
}

.box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.box_content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
}

.title {
  padding-top: 0px;
  transition: all 0.5s;
}

.discription {
  padding-bottom: 40px;
}

.readmore {
  position: absolute;
  display: inline;
  width: 100%;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  bottom: 0;
  left: 0;
  background: var(--goodwill);
}

.readmore_bg {
  background: none;
}

.readmore_bg span {
  display: none;
}

.readmore_bg::before {
  content: 'Weniger anzeigen ';
}



/* ----------- DOJO ------------------- */
#facts .section-header p {
  font-size: 18px;
}

.left {
  grid-area: left;
  background-color: #fafafa;
  padding: 20px;
  width: 100%;
  border: 1px solid #e6e6e6;
  font-size: 20px;
}

.right {
  grid-area: right;
  background: #fafafa;
  padding: 20px;
  width: 100%;
  border: 1px solid #e6e6e6;
  font-size: 20px;
}

.right ul {
  list-style-type: decimal !important;
}

.left-bottom-note {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 20px;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'left right';
  grid-gap: 20px;
  grid-auto-columns: 1fr;
  padding: 20px;
}

@media (max-width: 40em) {
  .grid-container {
    grid-template-areas:
      'left'
      'right';
  }
}

/* ------- TRAINING/SEMINARE ------- */

.grid-aikido {
  grid-area: 'aikido';
}

.grid-zazen {}

.grid-qigong {
  grid-area: 'qigong';
}

.grid-yoga {}

.grid-philo {
  grid-area: 'philo';
}

.grid-timetable {
  display: grid;
  grid-template-areas:
    'aikido qigong philo';
  grid-gap: 10px;
  width: 620px;
  margin: 0px auto;
}

.item {
  width: 200px;
  height: 200px;
  margin: 0px auto;
  cursor: pointer;
  position: relative;

  background-color: palegreen;
  color: white;
  transition: all .3s;
  overflow: hidden;
}

.item:hover {
  transform: scale(1.05);
}

.item .bg {
  position: absolute;
  bottom: 0;
  width: 100%;

  transition: all .3s;
}

.item .bg-title {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 40em) {
  .grid-timetable {
    grid-template-areas:
      'aikido'
      'qigong'
      'philo';
  }
}


/* ------- CONTACT ----------------- */
.contact-button button[type="submit"] {
  position: relative;
  right: 0;
  float: right;
  margin-bottom: 20px;
}

#contact iframe {
  width: 90%;
  background: #fff;
  padding: 10px;

}

#content_times {
  width: 620px;
  margin: 0px auto;
}




#links {
  padding-top: 80px;
}

#links li {
  list-style: none;
  padding: 5px;
  margin: 5px;
}

#angebot {

  background-color: #1a1a1a;
  padding-top: 80px;
  padding-bottom: 80px;
}


#galerie {
  background-color: #f7f7f7;
  padding-top: 80px;
  padding-bottom: 80px;
}


#editWindow {
  position: fixed;
    min-height: 100px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    color: black;
    z-index: 2000;
    padding: 20px;
    filter: drop-shadow(10px);
    backdrop-filter: blur(5px);
    margin: 5rem auto;
    border-radius: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.editControll {
  width: 1000px;
  margin: 20px auto;
}

#editTextArea {
  max-width: 1000px;
  background: white;
  margin: 20px auto;
  padding: 10px;
  border-radius: 5px;
}

#aktuell {
  width: 300px;
  position: fixed;
  left: 0;
  top: 72px;
  z-index: 995;
  background: white;
  border: 3px solid #c41010;
  margin: 30px;
  padding: 10px;
  font-size: 16px
}

@media (max-width: 1800px) {
  #aktuell {
    position: static;
    margin: 0;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;

  }
}

.wellcome_banner {
  bottom: 0;
  position: absolute;
  padding: 0;
  margin: 0 !important;
  color: white;
  line-height: 3.5rem;
}




.roboto-thin {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: italic;
}


/* -------------- SERVICES -------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-item {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 1rem;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition-duration:  400ms;
  margin-top: 5rem;
}

.service-item-image {
	width: 8rem;
	background: white;
	margin: 0px auto;
	border-radius: 50%;
	height: 8rem;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	margin-top: -5.3rem;
	margin-bottom: 2rem;
}
.service-item-image img{
  text-align: center;
  margin: 0px auto;
  display: block;
  transform: scale(0.7);
  transform-origin: center;
}

/* when hovering .service-item-image i want the image to shake */
.service-item:hover .service-item-image {
  animation: shake 0.5s;
}
.service-item:hover .service-item-image img{
  transform: scale(1);
  transform-origin: center;
  transition-duration: 200ms;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 0px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.service-item-text {
  text-align: center;
  font-size: 1.0rem;
}

.service-item-text h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.service-item:nth-child(1) {
  background-color: #19242d1f;
}

.service-item:nth-child(2) {
  background-color: #783b381f;
}

.service-item:nth-child(3) {
  background-color: #e0aa251f;
}

.service-item:nth-child(4) {
  background-color: #90664f1f;
}

.service-item:nth-child(5) {
  background-color: #c13e331f;
}

.service-item:nth-child(6) {
  background-color: #19242d1f;
}

.service-item:nth-child(1):hover {
  background-color: #19242d;
  color: white;
}

.service-item:nth-child(2):hover {
  background-color: #783b38;
  color: white;
}

.service-item:nth-child(3):hover {
  background-color: #e0aa25;
  color: white;
}

.service-item:nth-child(4):hover {
  background-color: #90664f;
  color: white;
}

.service-item:nth-child(5):hover {
  background-color: #c13e33;
  color: white;
}

.service-item:nth-child(6):hover {
  background-color: #19242d;
  color: white;
}


/* -------------- process -------------- */

#process {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
    
}
#process_background{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 94%;
  height: 30rem;
  background: rgba(255, 0, 0, 0);
  background-image: url('/img/goodwill/movers-02.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 20%;
  margin: 3%;
  z-index: 1;
}

.section-header{
  position: relative;
  z-index: 2;
}
.container{
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  #process {
    background-size: 35%;
    background-position: left bottom;
  }
}
@media screen and (max-width: 768px) {
  #process {
    background-size: 45%;
    background-position: left bottom;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 2px dotted #c41010;
}

.process-item {
  background-color: #f7f7f700;
  padding: 20px;
  text-align: center;
  margin-top: -3.2rem;
}

.process-item h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.process-item p {
  font-size: 1rem;
}
.process-item-icon {
	height: 4rem;
	width: 4rem;
	background: #fafafa;
	border-radius: 50%;
	text-align: center;
	margin: 0px auto;
	margin-bottom: 2rem;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
  color: #c41010;
  border: 2px dotted #c41010;
  background: #fff7d8;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(1, 1fr);
    border-top: none;
  }
}

/* -------------- reviews -------------- */

#reviews {
  background-color: #f7f7f7;
  padding-top: 80px;
  padding-bottom: 80px;
}

.reviews-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  /* 3 columns */
  flex-wrap: wrap;
}

.review-item {
  background-color: #fff;
  padding: 3rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* height by content*/
  height: fit-content;
  max-width: 30%;
  /* center */
  margin: 0 auto; 
}

.stars {
  font-size: 2rem;
  color: #c41010;
  margin-bottom: 1rem;
}

.review-item-text {
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .reviews-grid {
    flex-direction: column;
  }
  .review-item {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .reviews-grid {
    flex-direction: column;
  }
  .review-item {
    max-width: 100%;
    margin: 0 auto;
  }
}

.review-more {
  text-align: right;
  font-size: 1rem;
  margin-top: 2rem;
}

/* -------------- contact -------------- */

#contact {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

#contact{
  form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  label {
    margin-bottom: 5px;
  }
  input, textarea {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    color: white;
  }
  &amp; input, &amp; textarea, &amp; select {
    background-color: rgba(242, 242, 242, 0);
    border: 0px;
    /* border-radius: 5px; */
    color: #1e1e1e;
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 0.8rem;
    border-bottom: 1px solid #2b2b2b;
    transition-duration: 200ms;
  }
  
  select {
    height: 3rem; /* Match the height of other input fields */
    line-height: 3rem; /* Vertically center the text */
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #1e1e1e;
    transition-duration: 200ms;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    outline: none; /* Remove default outline */
    border-bottom: 1px solid #ed302a;
    background-color: #ed302a18;
  }
  button[type="submit"] {
    background-color: var(--goodwill); /* Vibrant yellow */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    margin-top: 2rem;
    width: 10%;
    margin-left: auto;
  }
  button[type="submit"]:hover {
    background-color: #ff9800; /* Slightly darker yellow on hover */
  }
}</pre></body></html>