/*
Theme Name: George vor der Haar Theme
Author: Eillinghoff
Author URI: http://eillinghoff.de
Description: Ein individuelles WordPress-Theme für Minnebusch.
Version: 1.0
Text Domain: george.eillinghoff.de
Tags: architecture, modern, minimal, responsive
*/
.bg-none {
	background-color:transparent !important;
}
/* Import fonts Locally */
* {
  /* border: 1px solid red; */
}
.bg-none {
  background-color: transparent !important;
}
.bg-gray {
  background-color: var(--bg-light) !important;
}
.bg-black {
  background-color: var(--bg-dark) !important;
}
/* Import fonts Locally */
@font-face {
  font-family: "VAG";
  src: url("./fonts/VAG-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "VAG";
  src: url("./fonts/VAG-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "VAG";
  src: url("./fonts/VAG-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "VAG";
  src: url("./fonts/VAG-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
:root {
  --primary-color: #00862f;
  --secondary-color: #353e3e;
  --yellow-color: #ffbf00;
  /* section padding */
  --section-padding-sm: 50px 0;
  --section-padding-md: 75px 0;
  --section-padding-lg: 100px 0;
  /* section margin */
  --section-margin-sm: 50px 0;
  --section-margin-md: 75px 0;
  --section-margin-lg: 100px 0;
  /* section background */
  --bg-light: #f7f7f7;
  --bg-dark: #353e3e;
}
/* Import fonts */
/* General Styles */
/* ======================================== */
/* ============  RESET ==================== */
/* ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
/* Usage */
body {
  scroll-behavior: smooth;
  position: relative;
  /* overflow-x: hidden; */
  width: 100%;
  font-family: "VAG", sans-serif;
}

li {
  list-style: none;
}

a,
img,
span,
button {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: "VAG", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer !important;
  font-weight: 300;
}
.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

/* Container Utility */
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* FONT-SIZE */

/* Heading Primary 92px */
.h-primary {
  font-size: 30px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: "Raleway", sans-serif;
}
/* Default: Mobile */
.h-secondary {
  font-size: 24px;
  font-weight: 400;
  color: var(--secondary-color);
  font-family: "Raleway", sans-serif;
}

.h-tertiary {
  font-size: 26px;
  font-weight: 400;
  color: var(--secondary-color);
}

.h-quaternary {
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-color);
}
.subheading {
  font-size: 17px;
  font-weight: 100;
  color: #fff;
}
.p {
  font-size: 16px;
  font-weight: 100;
  color: #353e3e;
  line-height: 1.6;
}
.white-link div {
  font-size: 16px;
  font-weight: 100;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
  cursor: pointer;
  position: relative;
}
.white-link div span::before {
  width: 0;
  height: 2px;
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: 5px;
  transition: all 0.3s ease;
}
.white-link div:hover span::before {
  width: 70%;
  transition: all 0.3s ease;
}

.white-link img {
  max-width: 25%;
}

/* Buttons */
.btn {
  padding-top: 12px !important;
  padding-bottom: 9px !important;
  padding-inline: 48px !important;
  outline: none !important;
  border: none !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  max-width: fit-content !important;
  transition: all 0.3s ease !important;
  background-color: var(--primary-color) !important;
  color: white !important;
  border-radius: 20px !important;
  font-weight: lighter !important;
}
.btn:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}
.btn-gray {
  padding-top: 16px !important;
  padding-block: 12px !important;
  padding-inline: 28px !important;
  outline: none !important;
  border: none !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  max-width: fit-content !important;
  transition: all 0.3s ease !important;
  background-color: var(--gray-color-light) !important;
  color: var(--secondary-color) !important;
  border-radius: 6px;
}
.btn-gray:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
  transition: all 0.3s ease !important;
}
.btn-red {
  background-color: #d9000d !important;
}
.btn-red:hover {
  background-color: var(--secondary-color) !important;
}
.btn-yellow {
  background-color: #ffbf00 !important;
  color: #353e3e;
}
.btn-yellow:hover {
  background-color: #fff !important;
  color: #353e3e !important;
}
.btn-transparent {
  background-color: transparent !important;
  border: 2px solid #fff !important;
}
.btn-transparent:hover {
  background-color: #fff !important;
  border: 2px solid transparent;
  color: var(--secondary-color) !important;
}
.btn-bg-white:hover {
  background-color: #fff;
  color: #00862f !important;
}
.link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}
.link:hover {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.csutom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  cursor: pointer;
}
.csutom-link:hover a {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.csutom-link a {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: white;
}

.csutom-link .img {
padding: 7px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    max-width: 33px;
	aspect-ratio: 1 / 1;
	overflow:hidden;
}
.csutom-link:hover .img {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.csutom-link:hover img {
  content: url("./imgs/icons/rotate-black.png");
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/* Colors */
.green {
  color: var(--primary-color);
}
.red {
  color: #d9000d;
}
.gray {
  color: var(--gray-color);
}
.gray-dark {
  color: var(--secondary-color);
}
.white {
  color: white !important;
}
.yellow {
  color: var(--yellow-color);
}

/* Margins */
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-sm-50 {
  margin-top: 50px !important;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-30-60 {
  margin-bottom: 30px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
/* Paddings */
.p-0 {
  padding: 0 !important;
}
.p-10 {
  padding: 10px;
}
.p-20 {
  padding: 20px;
}
.p-30 {
  padding: 30px;
}
.p-35 {
  padding: 35px;
}
.p-40 {
  padding: 40px;
}
.p-50 {
  padding: 50px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-50 {
  padding-left: 50px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-50 {
  padding-right: 50px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-135 {
  padding-top: 135px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-135 {
  padding-bottom: 135px;
}
.w-100 {
  width: 100% !important;
}
.tcenter-c {
	text-align:center;
}
.t-center {
  text-align: start;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
/* Visibility */
.sm-hide {
  display: none;
}
.big-hide {
  display: block;
}

/* Section padding */
.section-padding {
  padding: var(--section-padding-sm);
}
/* Section padding */
/* Section Margin */
.section-margin {
  margin: var(--section-margin-sm);
}
/* Section Margin */

/* display flex */
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.column {
  flex-direction: column !important;
}
.wrap {
  flex-wrap: wrap;
}
.gap-10 {
  gap: 10px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-40 {
  gap: 40px !important;
}
.gap-50 {
  gap: 50px !important;
}
.gap-60 {
  gap: 60px !important;
}

/* Responsive Breakpoints - Mobile First */

/* Extra Small devices (portrait phones, less than 576px) */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .h-primary {
    font-size: 33px;
    font-weight: 400;
    color: var(--primary-color);
  }
  .h-secondary {
    font-size: 32px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  /* Section padding */
  .section-padding {
    padding: var(--section-padding-md);
  }
  /* Section padding */
  /* Section Margin */
  .section-margin {
    margin: var(--section-margin-md);
  }
  /* Section Margin */
}

/* Extra Large devices (1200px and up) */
@media (min-width: 1200px) {
	.csutom-link .img {
padding: 20px;
    border: 2px solid white;
    max-width: unset;
}
	.t-center {
  text-align: center;
}
  .container {
    max-width: 1140px;
  }
  .mb-30-60 {
    margin-bottom: 60px;
  }
  .csutom-link span {
    font-size: 55px;
  }
  .sm-hide {
    display: block;
  }
  .big-hide {
    display: none;
  }
  .csutom-link a {
    font-size: 55px;
  }
}

/* Extra Extra Large devices (1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  /* Section padding */
  .section-padding {
    padding: var(--section-padding-lg);
  }
  /* Section padding */
  /* Section Margin */
  .section-margin {
    margin: var(--section-margin-lg);
  }
  /* Section Margin */
  .h-primary {
    font-size: 92px;
  }

  /* Heading Secondary 60px */
  .h-secondary {
    font-size: 55px;
  }

  /* Heading Tertiary 48px */
  .h-tertiary {
    font-size: 48px;
  }

  /* Heading Quaternary 36px */
  .h-quaternary {
    font-size: 36px;
  }

  /* Paragraph 16px */
  .p {
    font-size: 20px;
  }
  .subheading {
    font-size: 21px;
  }
  .white-link {
    font-size: 20px;
  }
  /* Buttons */
  .btn {
    font-size: 16px !important;
  }
  .btn-gray {
    font-size: 16px !important;
  }
  .link {
    font-size: 16px;
  }
}

/* 4K screens (1920px and up) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}
