@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  background: url(../img/phone_main_background.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (20%)[5];
      grid-template-columns: repeat(5, 20%);
  -ms-grid-rows: 5rem 21rem max-content max-content;
      grid-template-rows: 5rem 21rem -webkit-max-content -webkit-max-content;
      grid-template-rows: 5rem 21rem max-content max-content;
      grid-template-areas: "header header nav nav nav" ". . info_text . ." "main main main main main" "footer footer footer footer footer";
}

body > button {
  position: absolute;
  top: -100rem;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1rem;
}

body > button:focus {
  top: 7rem;
  left: 50%;
  outline: #6a0dad solid 4px;
  border: none;
  background: #ffffff;
  color: #000000;
  z-index: 999999;
  border-radius: 0.2rem;
  font-weight: 600;
  font-size: 1.5em;
  outline-offset: 0rem;
  -webkit-text-decoration: underline solid #000000;
          text-decoration: underline solid #000000;
}

body > button:hover {
  outline-offset: 0.5rem;
  cursor: pointer;
}

body > button:active {
  outline-offset: 1rem;
}

body #backgroundvideo {
  display: none;
}

body header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: header;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body header a {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 3rem;
  z-index: 99999;
}

body header a img {
  height: 3rem;
}

body nav#telefon_nav {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: nav;
  background: #ffffff;
}

body nav#telefon_nav details summary {
  list-style: none;
  z-index: 99999;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

body nav#telefon_nav details summary img {
  width: 3rem;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

body nav#telefon_nav details[open] summary img {
  width: 3rem;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  -webkit-transform: rotate(450deg);
          transform: rotate(450deg);
}

body nav#telefon_nav details summary::-webkit-details-marker {
  display: none;
}

body nav#telefon_nav details ul {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

body nav#telefon_nav details ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  gap: 1rem;
}

body nav#telefon_nav details ul li img {
  max-inline-size: 2em;
}

body nav#telefon_nav details ul li a {
  text-decoration: none;
  font-size: 1.4em;
}

body nav#telefon_nav details ul li a:link, body nav#telefon_nav details ul li a:visited, body nav#telefon_nav details ul li a:hover {
  color: #000000;
}

body nav#telefon_nav details ul li a:active {
  -webkit-text-decoration: underline solid black;
          text-decoration: underline solid black;
}

body nav#dator_nav {
  display: none;
}

body #info_text {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: info_text;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5em;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body #info_text h2 {
  position: relative;
  text-align: center;
}

body main {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: main;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  padding: 1rem;
  background: #ffffff;
}

body main aside {
  background: gainsboro;
}

body main aside ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}

body main aside ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

body main aside ul.breadcrumb li a {
  color: #6a0dad;
  text-decoration: none;
}

body main aside ul.breadcrumb li a:hover {
  color: #6a0dad;
  text-decoration: underline;
}

body main aside ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

body main img {
  max-inline-size: 100%;
}

body picture {
  width: 10rem;
  margin: auto;
}

body footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: footer;
  padding: 1rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

body footer article hr {
  background: #000000;
  height: 1px;
  border: none;
  outline: none;
  margin: 1rem 0rem;
}

body footer article h3 {
  font-weight: 600;
}

body footer article > a {
  text-decoration: none;
  font-style: italic;
}

body footer article > a:link, body footer article > a:visited, body footer article > a:hover {
  color: #000000;
}

body footer article > a:active {
  -webkit-text-decoration: underline solid black;
          text-decoration: underline solid black;
}

body footer article form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body footer article form label {
  font-weight: 500;
}

body footer article form input,
body footer article form textarea {
  outline: none;
  border: none;
  background: #eeeeeec7;
  padding: 1rem;
  border-bottom: solid transparent 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body footer article form input:focus,
body footer article form textarea:focus {
  border-bottom: solid #ff0000c7 4px;
  border-collapse: collapse;
}

body footer article form input:focus:valid,
body footer article form textarea:focus:valid {
  border-bottom: solid #51ff00c7 4px;
}

body footer article form input::-webkit-input-placeholder,
body footer article form textarea::-webkit-input-placeholder {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

body footer article form input:-ms-input-placeholder,
body footer article form textarea:-ms-input-placeholder {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

body footer article form input::-ms-input-placeholder,
body footer article form textarea::-ms-input-placeholder {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

body footer article form input::placeholder,
body footer article form textarea::placeholder {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

body footer article form #skicka {
  font-weight: 600;
  font-style: italic;
  font-size: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body footer article form #skicka:active {
  background: #000000;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  body {
    background: transparent;
    overflow-x: hidden;
  }
  body #backgroundvideo {
    display: block;
    position: fixed;
    top: -24rem;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  body header a:focus {
    outline: #6a0dad solid;
  }
  body header img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body header img:hover {
    -webkit-transform: scaleX(1.05) scaleY(0.95);
            transform: scaleX(1.05) scaleY(0.95);
  }
  body header img:active {
    -webkit-transform: scaleX(1.2) scaleY(0.8);
            transform: scaleX(1.2) scaleY(0.8);
  }
  body nav#telefon_nav {
    display: none;
  }
  body nav#dator_nav {
    display: block;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-area: nav;
    background: #ffffff;
    position: relative;
  }
  body nav#dator_nav ul {
    position: absolute;
    right: 2rem;
    top: 1rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style-type: none;
    gap: 3rem;
  }
  body nav#dator_nav ul li a:link,
  body nav#dator_nav ul li a:visited {
    color: #000000;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  body nav#dator_nav ul li a:link#active::before,
  body nav#dator_nav ul li a:visited#active::before {
    content: "";
    width: 100%;
    height: 0.15rem;
    background: #6a0dad;
    bottom: -1.75rem;
    left: 0;
    position: absolute;
    z-index: 0;
  }
  body nav#dator_nav ul li a:link:after,
  body nav#dator_nav ul li a:visited:after {
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body nav#dator_nav ul li a:link:hover::after,
  body nav#dator_nav ul li a:visited:hover::after {
    content: "";
    width: 100%;
    height: 0.15rem;
    background: #000000;
    bottom: -1.75rem;
    left: 0;
    position: absolute;
  }
  body nav#dator_nav ul li a:link:active,
  body nav#dator_nav ul li a:visited:active {
    color: #6a0dad;
  }
  body #info_text {
    font-size: 3em;
  }
  body #info_text h2 {
    text-wrap: nowrap;
  }
  body main {
    gap: 5rem;
    padding: 5rem 1rem;
  }
  body main section {
    margin: 0% 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  body main section.order_class {
    margin: 0% 25%;
  }
  body main section.order_class img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body main section:nth-of-type(1) {
    margin: 0% 25%;
  }
  body main section img {
    max-inline-size: 50%;
  }
  body main section video {
    width: 200%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body main section article {
    position: relative;
    padding: 0rem 1rem;
  }
  body main section article h2 {
    margin-bottom: 1rem;
  }
  body main section article > a {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  body footer {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10rem;
    padding: 5rem 1rem;
  }
  body footer article hr {
    background: #000000;
    height: 1px;
    border: none;
    outline: none;
    margin: 1rem 0rem;
  }
  body footer article h3 {
    font-weight: 600;
  }
  body footer article > a {
    text-decoration: none;
    font-style: italic;
  }
  body footer article > a:link, body footer article > a:visited, body footer article > a:hover {
    color: #000000;
  }
  body footer article > a:active {
    -webkit-text-decoration: underline solid black;
            text-decoration: underline solid black;
  }
  body footer article form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body footer article form label {
    font-weight: 500;
  }
  body footer article form input,
  body footer article form textarea {
    outline: none;
    border: none;
    background: #eeeeeec7;
    padding: 1rem;
    border-bottom: solid transparent 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer article form input:focus,
  body footer article form textarea:focus {
    border-bottom: solid #ff0000c7 4px;
    border-collapse: collapse;
  }
  body footer article form input:focus:valid,
  body footer article form textarea:focus:valid {
    border-bottom: solid #51ff00c7 4px;
  }
  body footer article form input::-webkit-input-placeholder,
  body footer article form textarea::-webkit-input-placeholder {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-style: italic;
  }
  body footer article form input:-ms-input-placeholder,
  body footer article form textarea:-ms-input-placeholder {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-style: italic;
  }
  body footer article form input::-ms-input-placeholder,
  body footer article form textarea::-ms-input-placeholder {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-style: italic;
  }
  body footer article form input::placeholder,
  body footer article form textarea::placeholder {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-style: italic;
  }
  body footer article form #skicka {
    font-weight: 600;
    font-style: italic;
    font-size: 1em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer article form #skicka:active {
    background: #000000;
    color: #ffffff;
  }
  body footer h4 {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    font-size: 0.75em;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
  }
}
/*# sourceMappingURL=style.css.map */