/*
0-600px:        Phone
600 -900px:     Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800px] is where our normal styles apply
1800px + :      Big desktop
*/
/*
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER OF BREAKPOINTS: 
Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: "montserrat";
  line-height: 1.5;
  word-spacing: 2px;
  letter-spacing: 4px;
}

html {
  font-size: 100%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 120%;
  }
}
@media only screen and (max-width: 85rem) {
  html {
    font-size: 80%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 65%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 55%;
  }
}

body {
  margin: 0;
}

nav {
  position: relative;
  top: 0;
  width: 100%;
  padding: 0.1rem 1rem;
  margin: 0;
  background: rgb(60, 63, 69);
}
nav ul {
  display: flex;
  gap: 1rem;
  justify-content: end;
}
nav li {
  list-style: none;
}
nav li:last-child a {
  background-color: rgb(89, 98, 100);
  color: rgb(241, 241, 241);
  font-weight: 700;
}
nav li:last-child a:hover {
  background-color: rgb(92, 92, 92);
  box-shadow: rgb(41, 40, 40) 0px 0px 30px 2px;
}
nav a {
  text-transform: capitalize;
  text-decoration: none;
  margin: auto 1rem;
  padding: 0.5rem;
  border-radius: 6px;
  color: whitesmoke;
  transition: 0.3s all;
}
nav a:hover, nav a:active {
  background-color: rgb(92, 92, 92);
  box-shadow: rgb(41, 40, 40) 0px 0px 30px 2px;
  color: blanchedalmond;
}
@media only screen and (max-width: 56.25em) {
  nav {
    display: none;
  }
}

.hamburger__checkbox {
  display: none;
}
.hamburger__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0rem 1rem 3rem rgba(0, 0, 0, 0.3);
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 56.25em) {
  .hamburger__button {
    top: 4rem;
    right: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hamburger__button {
    top: 3rem;
    right: 3rem;
  }
}
.hamburger__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#1b598b, #051daa);
  z-index: 1000;
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 56.25em) {
  .hamburger__background {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hamburger__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}
.hamburger__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  opacity: 0;
  width: 0%;
  transition: all 0.7s cubic-bezier(0.98, -0.65, 0.265, 1.55);
}
.hamburger__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  list-style: none;
  text-align: center;
  width: 100%;
}
.hamburger__item {
  margin: 1rem;
}
.hamburger__link:link, .hamburger__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
  background-size: 225%;
  transition: all 0.4s;
}
.hamburger__link:link span, .hamburger__link:visited span {
  margin-right: 1rem;
  display: inline-block;
}
.hamburger__link:hover, .hamburger__link:active {
  background-position: 100%;
  color: #55c57a;
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.hamburger__checkbox:checked ~ .hamburger__background {
  transform: scale(80);
}
.hamburger__checkbox:checked ~ .hamburger__nav {
  width: 100%;
  opacity: 1;
}
.hamburger__icon {
  position: relative;
  margin-top: 3.5rem;
}
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
  transition: background-color 1.5s, transform 1s, top 1s;
}
.hamburger__icon::before, .hamburger__icon::after {
  content: "";
  position: absolute;
  left: 0rem;
}
.hamburger__icon::before {
  top: -0.8rem;
}
.hamburger__icon::after {
  top: 0.8rem;
}
.hamburger__button:hover .hamburger__icon::before {
  top: -1rem;
}
.hamburger__button:hover .hamburger__icon::after {
  top: 1rem;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon {
  background-color: transparent;
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::before {
  top: 0rem;
  transform: rotate(135deg);
}
.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::after {
  top: 0rem;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 56.25em) {
  .hamburger {
    display: none;
  }
}

.kontaktOss {
  padding-top: 20rem;
}
.kontaktOss .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  background-color: #4e4c4c;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.kontaktOss .contact-form label {
  font-size: 18px;
  font-weight: 600;
}
.kontaktOss .contact-form label::after {
  content: ":";
}
.kontaktOss .contact-form input[type=text],
.kontaktOss .contact-form input[type=email],
.kontaktOss .contact-form input[type=tel],
.kontaktOss .contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
.kontaktOss .contact-form textarea {
  resize: vertical;
}
.kontaktOss .contact-form .submit-button {
  background-color: #04141d;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.kontaktOss .contact-form .submit-button:hover {
  background-color: #023e8a;
}
.kontaktOss .contact-form__flash {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  height: 10rem;
}
.kontaktOss .contact-form__flash--info {
  background-color: rgba(146, 233, 255, 0.8);
  color: rgb(22, 8, 218);
}
.kontaktOss .contact-form__flash--success {
  background-color: rgba(0, 128, 0, 0.3);
}
.kontaktOss .contact-form__flash--error {
  background-color: rgba(255, 0, 0, 0.3);
}

.header {
  background-image: linear-gradient(rgba(51, 45, 45, 0.549) 0 4%, rgb(61, 57, 57)), url(https://www.millerwelds.com/-/media/miller-electric/images/article-images/8/f/5/multimatic-220-ac-dc-application-0807180586_resized.jpg?h=410&w=720&la=en&hash=9DFB212CC7EB88B150B570C536DB799A);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 120dvh;
  padding-block: 5rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .site-title {
  font-size: 3rem;
  letter-spacing: 0.8rem;
  text-align: center;
  text-shadow: black 2px 2px 4px;
}
.header .site-title__subtitle {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.75rem;
}
.header h2 {
  text-align: center;
}
.header .site-title,
.header h2 {
  transform: translateY(-10rem);
}
@media only screen and (max-width: 85rem) {
  .header .site-title,
  .header h2 {
    transform: translateY(-30rem);
  }
}

.wrapper {
  max-width: 85rem;
  margin-inline: auto;
  padding: 0 5rem;
}

.tjenester {
  position: relative;
  transform: skewY(0deg);
}
.tjenester::after {
  content: "";
  background: linear-gradient(-160deg, #6cc2d1, #116f80, #353e4c 60%);
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  bottom: -100px;
  transform: skewY(-5deg);
  z-index: -1;
}
.tjenester__container {
  padding: 5rem 0 10rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 7rem;
}
.tjenester__container:nth-child(odd) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 56.25em) {
  .tjenester__container:nth-child(odd) {
    flex-direction: column;
  }
}
@media only screen and (max-width: 56.25em) {
  .tjenester__container {
    flex-direction: column;
  }
}
.tjenester__container_text {
  text-shadow: black 10px 10px 50px;
  flex-basis: 40%;
  min-width: 20%;
}
.tjenester__container_image {
  flex-basis: 60%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: black 3px 6px 32px -6px;
}
.tjenester__container_image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.footer {
  background-color: rgb(71, 70, 70);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer h2 {
  border-bottom: solid rgb(80, 78, 78);
  text-align: center;
}
.footer__container {
  width: 100%;
  height: auto;
  margin-inline: 12rem;
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 85rem) {
  .footer__content {
    flex-direction: column;
    gap: 5rem;
  }
}
.footer__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__card p {
  text-align: center;
}
.footer .title {
  margin: auto;
}

.section-title {
  font-size: 2rem;
}

section {
  position: relative;
  padding-block: 5rem;
}

.omoss {
  display: flex;
  align-items: center;
  transform: skewY(-5deg);
  height: 100vw;
  color: #353e4c;
  background: url(https://www.theeuclidobserver.com/wp-content/uploads/2020/11/clean-water-16x9-1.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.omoss-opacity {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-color: #fdfdfd;
}
.omoss .wrapper {
  transform: skewY(5deg);
  backdrop-filter: blur(40px);
  padding-inline: 35px;
}

/*# sourceMappingURL=style.css.map */
