@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap");

/*
Theme Name: IFL Institute 
Author: Eillinghoff
Author URI: http://eillinghoff.de
Description: Ein individuelles WordPress-Theme für IFL Institute .
Version: 1.0
Text Domain: ifl.eillinghoff.de
Tags: architecture, modern, minimal, responsive
*/
* {
  /* 	border:1px solid red; */
}
:root {
  --primary-color: #00862f;
  --secondary-color: #353e3e;
  --orange: #f28e3f;
  --light-green: #c5d452;
  --lighter-green: #d7e698;
  --med-green: #67a32a;
  --dark-green: #468a3a;
  --darker-green: #0b400f;
}
/* General Styles */
/* ======================================== */
/* ============  RESET ==================== */
/* ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Maven Pro", sans-serif;
}
.bold {
  font-weight: 600 !important;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
/* Usage */
body {
  scroll-behavior: smooth;
  position: relative;
  /* overflow-x: hidden; */
  width: 100%;
  font-family: "Maven Pro", sans-serif;
  font-style: normal;
}

li {
  list-style: none;
}

a,
img,
span,
button {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}

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 */

.title {
  font-size: 48px;
  font-family: "Maven Pro", sans-serif;
}
.h-primary {
  font-size: 24px;
  font-weight: 600;
}
/* Default: Mobile */
.h-secondary {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
}

.subheading {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.p {
  font-size: 20px;
  font-weight: 100;
  color: #353e3e;
  line-height: 1.4;
}
.p strong {
  font-weight: 600;
  color: var(--darker-green);
}
.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: 16px !important;
  padding-block: 6px !important;
  padding-inline: 20px !important;
  outline: none !important;
  border: none !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  max-width: fit-content !important;
  transition: all 0.3s ease !important;
  background-color: #468a3a !important;
  color: white !important;
  border-radius: 20px !important;
  font-weight: lighter !important;
}
.kontakt-button {
  padding-top: 5px !important;
  padding-block: 12px !important;
  padding-inline: 28px !important;
  outline: none !important;
  border: none !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  max-width: fit-content !important;
  transition: all 0.3s ease !important;
  background-color: #2d5d27 !important;
  color: white !important;
  border-radius: 36px !important;
  font-weight: lighter !important;
}
.btn-kontakt {
  border-radius: 60px !important;
}
.btn:hover {
  background-color: #f28e3f !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}
.btn-orange {
  background-color: #f28e3f !important;
}
.btn-orange:hover {
  background-color: #2d5d27 !important;
  color: #fff !important;
  transition: all 0.3s ease !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 span {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.csutom-link span {
  font-size: 30px;
  font-weight: 500;
  color: white;
}

.csutom-link .img {
  padding: 20px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.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");
}
/* Colors */
.green {
  color: #2d5d27 !important;
}
.dark-green {
  color: #0b4b0f !important;
}

.red {
  color: #d9000d;
}
.gray {
  color: var(--gray-color);
}
.gray-dark {
  color: var(--secondary-color);
}
.white {
  color: white !important;
}
.yellow {
  color: var(--yellow-color);
}
.bg-green {
  background-color: #67a32a;
}
.bg-light {
  background-color: #d7e698;
}
.bg-dark {
  background-color: #106a31;
}
.b-400 {
  font-weight: 400;
}
.b-500 {
  font-weight: 500;
}
.b-600 {
  font-weight: 600;
}
.b-700 {
  font-weight: 700;
}
.b-800 {
  font-weight: 800;
}
.b-900 {
  font-weight: 900;
}

/* 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;
}
.ml-10 {
  margin-left: 10px;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-30 {
  margin-left: 30px;
}
.ml-40 {
  margin-left: 40px;
}
.ml--40 {
  margin-left: -40px !important;
}
.ml-50 {
  margin-left: 50px;
}
.ml-70 {
  margin-left: 70px !important;
}
.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-50 {
  margin-right: 50px;
}
/* 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 !important;
}
.p-50 {
  padding: 50px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}
.mxf {
  max-width: fit-content !important;
}
.pl-40 {
  padding-left: 40px;
}
.pl-50 {
  padding-left: 50px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.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;
}
.t-center {
  text-align: center;
}
.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-1 {
  flex: 1 !important;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.max-1140 {
  max-width: 1140px !important;
}
.max-550 {
  max-width: 550px !important;
}
.max-950 {
  max-width: 950px !important;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-50 {
  gap: 50px;
}
.gap-60 {
  gap: 60px;
}

/* Responsive Breakpoints - Mobile First */

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

/* 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) {
  .container {
    max-width: 1140px;
  }
  .mb-30-60 {
    margin-bottom: 60px;
  }
  .csutom-link span {
    font-size: 55px;
  }
  .sm-hide {
    display: block;
  }
  .big-hide {
    display: none;
  }
}

/* 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 */
  .title {
    font-size: 80px;
  }
  .h-primary {
    font-size: 40px;
  }

  /* Heading Secondary 60px */
  .h-secondary {
    font-size: 30px;
  }
  /* Paragraph 16px */
  .p {
    font-size: 20px;
  }
  .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;
  }
}
