@charset "UTF-8";
/*  COLORS */
/*  FONTS */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  background-color: white;
}

body.overflow {
  overflow: hidden;
}

p {
  font-family: "Inter";
  color: #6e7175;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: "Poppins";
  color: #2a303d;
}

h1 {
  font-size: 4rem;
  font-weight: 600;
}

@media (max-width: 400px) {
  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
}

h5 {
  font-size: 0.8rem;
  color: #454b54;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  position: absolute;
  bottom: 170px;
  right: -70px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media (max-width: 768px) {
  h5 {
    display: none;
  }
}

h6 {
  font-size: 0.8rem;
  color: #e8eae9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  padding: 0px 0px 20px;
}

@media (max-width: 768px) {
  h6 {
    display: none;
  }
}

/* BURGER ========================================== */
.header {
  width: 100%;
  position: fixed;
  padding: 0% 4% 4%;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  /*  NAV
  ========================================== */
  /*  OVERLAY   */
}

@media (max-width: 600px) {
  .header {
    padding: 0px 24px 24px;
  }
}

@media (min-width: 1200px) {
  .header {
    padding: 0% 2%;
  }
}

.header .logo-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  margin: 20px 0px 20px;
}

@media (max-width: 450px) {
  .header .logo-icon {
    height: 40px;
  }
}

.header .logo-icon .logo {
  width: auto;
  height: 80px;
}

@media (max-width: 600px) {
  .header .logo-icon .logo {
    height: 64px;
  }
}

.header .logo-icon svg path, .header .logo-icon svg circle {
  fill: #0e1319;
}

.header .burger {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10;
}

@media (max-width: 600px) {
  .header .burger {
    top: 26px;
  }
}

.header .burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -1.5px;
}

.header .burger span, .header .burger span::before, .header .burger span::after {
  display: block;
  width: 36px;
  height: 4px;
  background-color: #2a303d;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.header .burger span::before, .header .burger span::after {
  width: 36px;
  position: absolute;
  content: "";
}

.header .burger span::before {
  top: -9px;
}

.header .burger span::after {
  top: 9px;
}

.header .burger.clicked span {
  background-color: transparent;
}

.header .burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.header .burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.header .burger.clicked span:before, .header .burger.clicked span:after {
  background-color: #e8eae9;
}

.header .burger:hover {
  cursor: pointer;
}

.header nav {
  background-color: #2a303d;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 420px;
  width: 100%;
  padding: 64px 56px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.header .menu-logo-icon {
  width: 48px;
  padding: 0px 0px 32px;
}

.header nav.show {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.header nav.show ul.main li {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.header nav.show ul.main li:nth-child(1) {
  -webkit-transition-delay: 0.20s;
          transition-delay: 0.20s;
}

.header nav.show ul.main li:nth-child(2) {
  -webkit-transition-delay: 0.40s;
          transition-delay: 0.40s;
}

.header nav.show ul.main li:nth-child(3) {
  -webkit-transition-delay: 0.60s;
          transition-delay: 0.60s;
}

.header nav.show ul.main li:nth-child(4) {
  -webkit-transition-delay: 0.80s;
          transition-delay: 0.80s;
}

.header nav.show ul.main li:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.header nav.show ul.main li:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.header nav.show ul.main li:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.header nav.show ul.main li:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.header nav.show ul.main li:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.header nav.show .about, .header nav.show .social, .header nav.show ul.sub {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

@media (min-width: 667px) {
  .header nav {
    padding: 48px 64px;
  }
}

.header nav ul.main {
  list-style-type: none;
}

.header nav ul.main li {
  margin-bottom: 0px;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header nav ul.main li:last-of-type {
  margin-bottom: 0px;
}

.header nav ul.main li a {
  color: #e8eae9;
  font-family: "Poppins";
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0px 0px 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header nav ul.main li a .material-icons {
  font-size: 28px;
  color: #ff7900;
  position: absolute;
  top: 3px;
  left: -36px;
}

.header nav ul.main li a span {
  color: #2a303d;
}

.header nav ul.main li a:hover {
  color: #ff7900;
}

.header nav ul.main li a.current_page {
  padding-left: 0px;
}

.header nav .about {
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header nav .about p {
  color: #e8eae9;
  font-family: "Poppins";
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  line-height: 170%;
}

.header nav .social {
  margin-top: 56px;
  position: relative;
  padding-bottom: 30px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.header nav .social:after {
  content: "";
  width: 230px;
  height: 0px;
  background-color: #6e7175;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header nav .social a {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 28px;
}

.header nav .social a .socialicon {
  width: 48px;
  height: 48px;
}

.header nav .social a:last-of-type {
  margin-right: 0px;
}

.header nav .social a:hover svg path, .header nav .social a:hover svg circle, .header nav .social a:hover svg rect {
  fill: #ff7900;
}

.header nav .social a svg {
  width: 100%;
  height: 100%;
}

.header nav .social a svg path, .header nav .social a svg circle, .header nav .social a svg rect {
  fill: #6e7175;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header nav ul.sub {
  color: #808489;
  list-style-type: none;
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header nav ul.sub li {
  margin-bottom: 10px;
  color: #808489;
  font-weight: 400;
}

.header nav ul.sub li:last-of-type {
  margin-bottom: 0px;
}

.header nav ul.sub li a {
  color: #e8eae9;
  font-family: "Poppins";
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header nav ul.sub li a:hover {
  color: #ff7900;
}

.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #454b54;
  opacity: 0;
  visibility: hidden;
}

.header .overlay.show {
  opacity: 0.50;
  visibility: visible;
}

/*  Innehåll  */
.main-container {
  max-width: 100%;
  padding: 130px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 600px) {
  .main-container {
    padding: 105px 0px 0px;
  }
}

.main-container .full-section {
  width: 100%;
  padding: 14% 4% 14% 4%;
  background: #f5f7f6;
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, #f5f7f6), color-stop(70%, #e8eae9));
  background: linear-gradient(90deg, #f5f7f6 70%, #e8eae9 70%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .main-container .full-section {
    font-size: 2rem;
    padding: 56px 32px 56px 32px;
    background: #f5f7f6;
  }
}

.main-container .full-section h1 {
  color: #2a303d;
  font-size: 4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (max-width: 600px) {
  .main-container .full-section h1 {
    font-size: 2rem;
    padding: 0px;
  }
}

.main-container .full-section p {
  max-width: 80%;
  padding: 48px 0px 0px;
}

@media (max-width: 600px) {
  .main-container .full-section p {
    max-width: 95%;
  }
}

.main-container .full-section a {
  color: #ff7900;
  text-decoration: underline;
}

.main-container .full-section .btn-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f7f6), to(#f5f7f6)) padding-box, -webkit-gradient(linear, left top, right top, from(#ff7900), to(#2bcc7b)) border-box;
  background: linear-gradient(#f5f7f6, #f5f7f6) padding-box, linear-gradient(to right, #ff7900, #2bcc7b) border-box;
  border-radius: 50em;
  border: 3px solid transparent;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 20px;
  color: #454b54;
  padding: 16px 32px;
  margin: 48px 0px 0px;
  cursor: pointer;
}

.main-container .full-section .btn-gradient a {
  text-decoration: none;
}

.main-container .full-section .btn-back {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f7f6), to(#f5f7f6)) padding-box, -webkit-gradient(linear, left top, right top, from(#ff7900), to(#2bcc7b)) border-box;
  background: linear-gradient(#f5f7f6, #f5f7f6) padding-box, linear-gradient(to right, #ff7900, #2bcc7b) border-box;
  border-radius: 50em;
  border: 3px solid transparent;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 20px;
  color: #454b54;
  padding: 16px 32px;
  margin: 48px 0px 0px;
  cursor: pointer;
}

.main-container .full-section .material-icons {
  padding-left: 16px;
}

.main-container .full-section .back-icon {
  padding-left: 0px !important;
  padding-right: 16px;
}

.main-container .full-section .content-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

@media (max-width: 600px) {
  .main-container .full-section .content-50 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.main-container .full-section .content-tech {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.main-container .full-section .content-tech .page-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-container .full-section .content-tech .page-nav a {
  font-family: "Poppins";
  text-decoration: none !important;
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech .page-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.main-container .full-section .content-tech .page-nav .prev-btn {
  background: transparent;
  border-radius: 50em;
  border: 2px solid #808489;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
  color: #454b54;
  padding: 16px 32px;
  margin: 48px 0px 0px;
  cursor: pointer;
}

.main-container .full-section .content-tech .page-nav .prev-btn:hover {
  color: #ff7900 !important;
  border: 2px solid #ff7900;
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech .page-nav .prev-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.main-container .full-section .content-tech .page-nav .next-btn {
  background: transparent;
  border-radius: 50em;
  border: 2px solid #808489;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
  color: #454b54;
  padding: 16px 32px;
  margin: 48px 0px 0px;
  cursor: pointer;
}

.main-container .full-section .content-tech .page-nav .next-btn:hover {
  color: #ff7900 !important;
  border: 2px solid #ff7900;
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech .page-nav .next-btn {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 24px 0px 0px;
  }
}

.main-container .full-section .content-tech-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-size: cover;
  overflow: hidden;
}

.main-container .full-section .content-tech-img .img-100 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background-size: cover;
  overflow: hidden;
  background-color: #c9c7c3;
  border-radius: 420px;
  margin: 16px 0px;
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech-img .img-100 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .main-container .full-section .content-tech-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 32px;
  }
}

.main-container .full-section .img-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  background-size: cover;
  overflow: hidden;
  background-color: #c9c7c3;
  border-radius: 420px;
}

@media (max-width: 600px) {
  .main-container .full-section .img-50 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 32px;
  }
}

.main-container .top-section {
  width: 100%;
  padding: 14% 4% 14% 4%;
  background-image: url(../img/stream.jpg);
  background-size: cover;
  background-position: center;
  background-color: #c9c7c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .main-container .top-section h1 {
    font-size: 2.6rem;
  }
}

.main-container .top-section h1 {
  color: #f5f7f6;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 50%;
}

@media (max-width: 600px) {
  .main-container .top-section h1 {
    max-width: 100%;
  }
}

.main-container .top-section h4 {
  font-size: 1rem;
  color: #f5f7f6;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0px 0px 20px;
}

@media (max-width: 600px) {
  .main-container .top-section h4 {
    padding: 0px;
  }
}

.light-grey-section {
  background-color: #f5f7f6 !important;
}

.error-container {
  width: 100%;
  text-align: center;
  padding-bottom: 100px;
}

.error-container h4 {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #454b54;
}

.error-container h1 {
  font-size: 200px;
  font-weight: 100;
  color: #ff7900;
}

footer {
  background-color: #2a303d;
  width: 100%;
  margin: auto;
  padding: 4% 4% 0% 4%;
}

@media (min-width: 700px) {
  footer {
    padding: 4% 4% 0% 4%;
  }
}

@media (max-width: 400px) {
  footer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 5%;
    line-height: 1.6rem;
  }
}

footer .footer-content {
  max-width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  footer .footer-content {
    padding: 2% 5% 0% 5%;
  }
}

footer .footer-content .contact-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90%;
          flex: 0 0 90%;
  min-height: 480px;
}

footer .footer-content .contact-info p {
  color: #f5f7f6;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

footer .footer-content .contact-info h2 {
  color: #ff7900;
  font-weight: 600;
  padding: 0 0 24px;
}

footer .footer-content .contact-info h4 {
  color: #e8eae9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 2%;
}

footer .footer-content .contact-info .footericon {
  width: 50px;
  height: 50px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  footer .footer-content .contact-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: auto;
    padding-top: 20px;
  }
}

footer .footer-content .footer-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
  background-image: url(../img/wtetech_logo_icon.png);
  background-repeat: no-repeat;
  background-position: top center;
}

@media (max-width: 600px) {
  footer .footer-content .footer-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

footer .copyright {
  width: 100%;
  height: 80px;
  text-align: center;
  border-top: 1px solid #454b54;
}

footer .copyright p {
  font-size: 0.8rem;
  color: #e8eae9;
  letter-spacing: 0.03rem;
  padding: 24px 0px;
}

@media (max-width: 400px) {
  footer .copyright p {
    letter-spacing: 0.01rem;
  }
}
/*# sourceMappingURL=style.css.map */