@font-face {
  font-family: "Norms-Bold";
  src: url("fonts/TTNormsProBold.woff2") format("woff2");
}
@font-face {
  font-family: "Norms-Light";
  src: url("fonts/TTNormsProLight.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Norms-Light", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  font-size: 18px;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-display: swap;
}

@media (max-width: 1300px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-family: "Norms-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  text-wrap: balance;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin: 0;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  p {
    margin-bottom: 10px;
  }
}
strong {
  font-family: "Norms-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

a {
  color: rgb(59, 60, 83);
  text-decoration: underline;
  transition: all ease-in 0.25s;
}

a:hover {
  color: rgb(255, 222, 65);
  text-decoration: none;
}

a.btn {
  display: inline-block;
  background: rgb(255, 222, 65);
  font-family: "Norms-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  padding: 13px 20px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 15px;
}

a.btn:hover {
  background: black;
  color: rgb(255, 222, 65);
  text-decoration: none;
}

.sectionPadding {
  padding-left: 130px;
  padding-right: 130px;
}

.sectionMargin {
  margin-top: 130px;
}

@media (max-width: 1300px) {
  .sectionPadding {
    padding-left: 80px;
    padding-right: 80px;
  }
  .sectionMargin {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .sectionPadding {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sectionMargin {
    margin-top: 60px;
  }
}
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 7px;
  transition: all ease-in 0.25s;
}

.headerTiny {
  background: white;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
}

.brandImg {
  width: 250px;
  transition: all ease-in 0.25s;
}

.brandImgTiny {
  width: 150px;
}

@media (max-width: 500px) {
  .brandImg {
    width: 200px;
  }
}
.nav {
  width: 100%;
  height: 100%;
  background-color: rgb(59, 60, 83);
  overflow: hidden;
}

.mainNav {
  position: fixed;
  right: 80px;
  top: 40px;
  transition: all ease-in 0.25s;
}

.mainNavTiny {
  top: 20px;
}

ul.menu {
  display: flex;
  list-style: none;
  margin: 0;
}

.menu a {
  display: inline-block;
  padding: 0 0 5px;
  margin-left: 30px;
  color: rgb(59, 60, 83);
  font-family: "Norms-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  text-decoration: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
}

.menu a:hover {
  color: rgb(59, 60, 83);
  border-bottom: 3px solid rgb(59, 60, 83);
}

.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.hamb {
  cursor: pointer;
  float: right;
  padding: 10px 20px;
} /* Style label tag */
.hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} /* Style span tag */
.hamb-line::before,
.hamb-line::after {
  background: black;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.hamb-line::before {
  top: 5px;
}

.hamb-line::after {
  top: -5px;
}

.side-menu {
  display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav {
  max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .nav {
    max-height: none;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
  }
  .menu a {
    text-decoration: none;
  }
  .menu a:hover {
    background-color: transparent;
  }
  .hamb {
    display: none;
  }
}
@media (max-width: 1200px) {
  .menu a {
    display: inline-block;
    padding: 0 0 5px;
    margin-left: 30px;
    color: rgb(255, 222, 65);
    font-family: "Norms-Bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    -webkit-text-decoration: 0;
            text-decoration: 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
  }
  .menu a:hover {
    color: white;
  }
  ul.menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
  }
  ul.menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 15px;
    padding: 20px;
  }
  .mainNav {
    position: fixed;
    right: 20px;
    top: 26px;
  }
  .mainNavTiny {
    position: fixed;
    right: 20px;
    top: 17px;
  }
}
#hero {
  background: url("img/MCBrandsMenschen.webp"), url("img/hero.svg");
  background-repeat: no-repeat;
  background-position: top right, 30vw center;
  background-size: contain, cover;
}

.heroRow {
  height: 100vh;
  padding-top: 100px;
}

@media (max-width: 1440px) {
  .heroRow {
    height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }
  #hero {
    background: url(img/MCBrandsMenschen.webp), url(img/hero.svg);
    background-repeat: no-repeat;
    background-position: top right -9vw, 30vw center;
    background-size: contain, cover;
  }
}
@media (max-width: 1370px) {
  #hero {
    background: url(img/MCBrandsMenschen.webp), url(img/hero.svg);
    background-repeat: no-repeat;
    background-position: top 3vh right -3vw, 30vw center;
    background-size: 64%, cover;
  }
}
@media (max-width: 1024px) {
  #hero {
    background: url(img/MCBrandsMenschen.webp), url(img/hero.svg);
    background-repeat: no-repeat;
    background-position: top 3vh right -2vw, 30vw center;
    background-size: 50%, cover;
  }
}
@media (max-width: 820px) {
  #hero {
    background: url(img/MCBrandsMenschen.webp), url(img/hero.svg);
    background-repeat: no-repeat;
    background-position: top 7vh right -2vw, 30vw center;
    background-size: 41%, cover;
  }
}
@media (max-width: 820px) {
  #hero {
    background: url(img/MCBrandsMenschen.webp), url(img/hero.svg);
    background-repeat: no-repeat;
    background-position: top 7vh right -2vw, 30vw center;
    background-size: 0, cover;
  }
}
#hero h1 {
  font-size: 4rem;
  display: inline-block;
  -webkit-text-stroke: 2px white;
  paint-order: stroke fill;
}

span.heroH2 {
  font-size: 3rem;
  margin-top: -10px;
  display: block;
}

span.heroH3 {
  font-size: 2rem;
  display: block;
  margin-top: -70px;
}

.heroUnderline h2 {
  font-size: 1.5rem;
  -webkit-text-stroke: 2px white;
  paint-order: stroke fill;
}

.heroUnderline {
  margin-top: 40px;
}

.serviceRow {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 60px;
}

.serviceBox {
  background: white;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: all ease-in 0.25s;
}

.serviceBox:hover {
  transform: scale(1.05) !important;
  color: rgb(59, 60, 83);
}

a.serviceBox img {
  max-width: 100px;
  max-height: 100px;
}

.serviceBox:nth-child(1) {
  grid-area: 1/1/2/3;
}

.serviceBox:nth-child(2) {
  grid-area: 1/3/2/5;
}

.serviceBox:nth-child(3) {
  grid-area: 1/5/2/7;
}

.serviceBox:nth-child(4) {
  grid-area: 1/7/2/9;
}

.serviceBox:nth-child(5) {
  grid-area: 1/9/2/11;
}

.serviceBox:nth-child(6) {
  grid-area: 1/11/2/13;
}

.serviceBox:nth-child(7) {
  grid-area: 2/1/3/3;
}

.serviceBox:nth-child(8) {
  grid-area: 2/3/3/5;
}

.serviceBox:nth-child(9) {
  grid-area: 2/5/3/7;
}

.serviceBox:nth-child(10) {
  grid-area: 2/7/3/9;
}

.serviceBox:nth-child(11) {
  grid-area: 2/9/3/11;
}

.serviceBox:nth-child(12) {
  grid-area: 2/11/3/13;
}

@media (max-width: 1400px) {
  .serviceRow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .serviceBox:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .serviceBox:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .serviceBox:nth-child(3) {
    grid-area: 1/3/2/4;
  }
  .serviceBox:nth-child(4) {
    grid-area: 1/4/2/5;
  }
  .serviceBox:nth-child(5) {
    grid-area: 2/1/3/2;
  }
  .serviceBox:nth-child(6) {
    grid-area: 2/2/3/3;
  }
  .serviceBox:nth-child(7) {
    grid-area: 2/3/3/4;
  }
  .serviceBox:nth-child(8) {
    grid-area: 2/4/3/5;
  }
  .serviceBox:nth-child(9) {
    grid-area: 3/1/4/2;
  }
  .serviceBox:nth-child(10) {
    grid-area: 3/2/4/3;
  }
  .serviceBox:nth-child(11) {
    grid-area: 3/3/4/4;
  }
  .serviceBox:nth-child(12) {
    grid-area: 3/4/4/5;
  }
}
@media (max-width: 1030px) {
  .serviceRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .serviceBox:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .serviceBox:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .serviceBox:nth-child(3) {
    grid-area: 1/3/2/4;
  }
  .serviceBox:nth-child(4) {
    grid-area: 2/1/3/2;
  }
  .serviceBox:nth-child(5) {
    grid-area: 2/2/3/3;
  }
  .serviceBox:nth-child(6) {
    grid-area: 2/3/3/4;
  }
  .serviceBox:nth-child(7) {
    grid-area: 3/1/4/2;
  }
  .serviceBox:nth-child(8) {
    grid-area: 3/2/4/3;
  }
  .serviceBox:nth-child(9) {
    grid-area: 3/3/4/4;
  }
  .serviceBox:nth-child(10) {
    grid-area: 4/1/5/2;
  }
  .serviceBox:nth-child(11) {
    grid-area: 4/2/5/3;
  }
  .serviceBox:nth-child(12) {
    grid-area: 4/3/5/4;
  }
}
@media (max-width: 500px) {
  .heroRow {
    padding-top: 200px;
  }
  #hero h1 {
    font-size: 4rem;
  }
  span.heroH2 {
    font-size: 2.6rem;
    margin-top: -3px;
  }
  span.heroH3 {
    font-size: 1.6rem;
  }
  .serviceRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .serviceBox:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .serviceBox:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .serviceBox:nth-child(3) {
    grid-area: 2/1/3/2;
  }
  .serviceBox:nth-child(4) {
    grid-area: 2/2/3/3;
  }
  .serviceBox:nth-child(5) {
    grid-area: 3/1/4/2;
  }
  .serviceBox:nth-child(6) {
    grid-area: 3/2/4/3;
  }
  .serviceBox:nth-child(7) {
    grid-area: 4/1/5/2;
  }
  .serviceBox:nth-child(8) {
    grid-area: 4/2/5/3;
  }
  .serviceBox:nth-child(9) {
    grid-area: 5/1/6/2;
  }
  .serviceBox:nth-child(10) {
    grid-area: 5/2/6/3;
  }
  .serviceBox:nth-child(11) {
    grid-area: 6/1/7/2;
  }
  .serviceBox:nth-child(12) {
    grid-area: 6/2/7/3;
  }
}
#McBrands {
  text-align: center;
  padding-top: 100px;
}

#McBrands h2,
#Dienstleistungen h2 {
  font-size: 4rem;
  line-height: 4rem;
}

.mainBoxes {
  margin: 60px 0;
}

.mainBoxInner {
  background: rgb(255, 222, 65);
  border-radius: 30px;
  padding-bottom: 10px;
}

.mainBoxIconBox {
  display: grid;
  place-content: center;
}

.mainBoxIcon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  padding: 17px;
  margin-top: -40px;
  margin-bottom: 20px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  display: grid;
  place-content: center;
}

.mainBoxContent {
  width: 100%;
}

#McBrands h3,
#Dienstleistungen h3 {
  font-size: 2rem;
  line-height: 2.2rem;
}

@media (max-width: 1200px) {
  .mainBox {
    margin-bottom: 50px;
  }
  .mainBox:last-child {
    margin-bottom: 0px;
  }
  #McBrands h3 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media (max-width: 992px) {
  #McBrands h2,
  #Dienstleistungen h2 {
    font-size: 4rem;
    line-height: 4rem;
  }
  #McBrands h3,
  #Dienstleistungen h3 {
    font-size: 1.9rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 700px) {
  #McBrands h2,
  #Dienstleistungen h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  #McBrands h3,
  #Dienstleistungen h3 {
    font-size: 1.9rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 450px) {
  #McBrands h2,
  #Dienstleistungen h2 {
    font-size: 2.1rem;
    line-height: 2.1rem;
  }
  #McBrands h3,
  #Dienstleistungen h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
#Dienstleistungen {
  text-align: center;
  background: rgb(59, 60, 83);
  padding-top: 80px;
  padding-bottom: 80px;
  color: white;
}

#Dienstleistungen h2 {
  color: rgb(255, 222, 65);
}

#Dienstleistungen h3 {
  color: white;
}

#Dienstleistungen .mainBoxIcon {
  background: rgb(255, 222, 65);
  margin-top: -60px;
}

#Dienstleistungen .mainBoxInner {
  background: none;
  color: white;
  padding: 20px 20px 10px;
  margin-bottom: 60px;
  border: 2px solid rgb(255, 222, 65);
}

#Dienstleistungen h4 {
  color: rgb(255, 222, 65);
}

.dienstleistungsRow {
  margin-top: 60px;
}

.warumBox {
  text-align: left;
  padding: 30px;
}

.warumBox ul {
  margin: 0 0 0 15px;
  padding: 0;
}

.warumBox strong {
  font-size: 2rem;
}

#Referenzen {
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.gradientLeft,
.gradientRight {
  position: absolute;
  width: 300px;
  height: 400px;
  background: rgb(255, 255, 255);
  z-index: 20;
}

.gradientLeft {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.gradientRight {
  top: 0;
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.main-gallery:focus {
  outline: none;
}

.gallery-cell {
  width: 50%;
  padding: 50px;
  margin-right: 60px;
  background: white;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.gallery-cell:hover {
  cursor: grab;
}

img.stars {
  max-width: 150px;
  margin-bottom: 15px;
}

@media (max-width: 500px) {
  .gradientRight,
  .gradientLeft {
    display: none;
  }
  .gallery-cell {
    width: 70%;
  }
}
footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin-left: 30px;
}

main#page {
  padding-top: 150px;
  padding-bottom: 80px;
  border-bottom: 1px solid black;
}

main#page h1 {
  font-size: 2.5rem;
}

main#page h2 {
  font-size: 1.7rem;
}

main#page h3 {
  font-size: 1.5rem;
}

main#page h4 {
  font-size: 1.3rem;
}/*# sourceMappingURL=style.css.map */