/* Ljungs El  AB */

@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");

/* Hero New (sans-serif) */
@import url("https://use.typekit.net/oge8uef.css");
/* ==========================================================================
Generellt 
========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  background-position: center 20%;
  font-family: "hero-new", sans-serif;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
  padding: 12rem 5rem;
}
.mw-1500 .section-block-wrapper,
.mw-1500:not(.section-wrapper) {
    max-width: 150rem !important;
}

 .SubPage .pb-0 .section-block,
.pb-0:not(.section-wrapper) {
padding-bottom: 0rem;
}

.mt-2{
  margin-top: 2rem !important;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
padding-top: 0rem;
}
.pt-4 .section-block,
.pt-4:not(.section-wrapper) {
padding-top: 4rem;
}
.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
padding-bottom: 0rem;
}
.p-5{
  padding: 5rem;
}
.p-4{
  padding-left: 8rem;
}
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}
   

@media only screen and (max-width: 1024px) {
  .LayoutPage .section-block,
  .SubPage .LayoutPage .section-block {
    padding: 8rem 5rem;
  }
}
@media only screen and (max-width: 500px) {
  .LayoutPage .section-block,
  .SubPage .LayoutPage .section-block {
    padding: 5rem 3rem;
  }
}

.LayoutPage .section-block-wrapper {
  max-width: 120rem;
}

.section-block-wrapper::after {
  display: table;
  clear: both;
  content: "";
}

/* Video background */
.fullscreen-bg-video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ==========================================================================
Sektion-split
========================================================================== */

.section-split .normaltext-type {
  max-width: none;
}

.section-split .section-block .normaltext-type {
  max-width: none;
}

.section-split .section-block .section-block-wrapper {
  max-width: 160rem;
}

.section-split .section-block .btn:first-child {
  margin-right: 1rem;
}

/* ==========================================================================
Split Wrapper
========================================================================== */

.split-section .normaltext-type {
  max-width: none;
}

.split-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.split-wrapper.reverse {
  flex-direction: row-reverse;
}

.split-content {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 10rem;
  text-align: left;
  align-self: center;
}

.split-text {
  align-self: center;
}

.split-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.split-image img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: unset !important;
}

@supports (object-fit: cover) {
  .split-image img {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    object-fit: cover;
    object-position: center;
    height: 100% !important;
    width: 100% !important;
  }

  .split-image img.contain {
    object-fit: contain;
  }
}

@media screen and (max-width: 1100px) {
  .split-content {
    width: 50%;
    text-align: left;
    padding: 5rem;
  }
}

@media screen and (max-width: 1000px) {
  .split-wrapper.reverse {
    flex-direction: row;
  }

  .split-content {
    width: 100%;
  }

  .split-image {
    width: 100%;
    padding: 0;
  }
}

/* Cards
========================================================================== */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
}

/* Bredder */
.cards-wrapper.w-33 .card-item {
  width: calc((100% / 3) - 2rem);
  margin: 1rem;
}
.cards-wrapper.w-50 .card-item {
  width: calc((100% / 2) - 2rem);
  margin: 1rem;
}

@media only screen and (max-width: 1050px) {
  /* Bredder */
  .cards-wrapper.w-33 .card-item {
      width: calc((100% / 2) - 2rem);
      margin: 1rem;
  }
}

@media only screen and (max-width: 750px) {
  /* Bredder */
  .cards-wrapper.w-33 .card-item {
      width: 100%;
      margin: 1rem 0;
  }
  .cards-wrapper.w-50 .card-item {
    width: 100%;
    margin: 1rem 0;
}

}

@media only screen and (max-width: 480px) {
  /* Paddings */
  .card-item.p-3,
  .card-item .p-3 {
      padding: 2rem;
  }
}

/* Card 1-1 */
.card-1-1 .card-item {
  border-radius: 2rem;
}


/* ==========================================================================
Buttons
========================================================================== */

.btn {
  font-family: inherit;
  font-weight: 400;
  max-width: 50rem;
  display: inline-block;
  width: auto;
  box-sizing: border-box;
  padding: 1.4rem 4rem;
  background-color: transparent;
  border: 2px solid #fff;
  color: #444;
  border-radius: 0.5rem;
  text-align: center;
  letter-spacing: 0rem;
  font-size: 1.6rem;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.btn:active {
  transform: scale(0.96);
}

.btn a {
  padding: 0;
}

.btn-primary {
  color: #fff;
  border: 2px solid #de2b19;
  background-color: #de2b19;
}

.btn-outlined-white:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #de2b19;
}

.btn-outlined-primary:hover,
.btn-primary:hover {
  background-color: transparent;
  border: 2px solid #de2b19;
  color: #de2b19 !important;
}

.btn-outlined-white {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-multiple .btn{
  min-width: 20rem;
}

/* before och after - ikonknappar */

.btn-link:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  content: "\f0da";
  margin-left: 15px;
  text-decoration: none;
  display: inline-block;
}

.link:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  content: "\f061";
  margin-left: 0.8rem;
  text-decoration: none;
  display: inline-block;
  transform: translateX(1rem);
}
.link:hover {
  text-decoration: underline;
}
.btn-link:after:hover,
.link:after:hover {
  transform: translateX(1.5rem);
}

.link.arrow-down:after {
  content: "\f078";
}

.arrow-link::after {
  content: " \f178";
  opacity: 1;
  transition: all 0.3s ease;
  font-family: "Font Awesome 5 Pro";
  margin-left: 3px;
  font-weight: 400;
}
.arrow-link {
  font-weight: 500;
}
.arrow-link:hover::after {
  content: " \f178";
  opacity: 1;
  margin-left: 10px;
}

.btn-wrapper {
  margin-top: 2.5rem;
}
.btn-wrapper.center {
text-align: center;
}
.btn-wrapper.center .btn{
  margin-bottom: 1rem;
  }

/* ==========================================================================
Text och typsnitt
========================================================================== */

p {
  font-family: inherit;
  color: #444;
  font-weight: 400;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: normal !important;
}

a,
li {
  font-size: inherit;
}

a {
  text-decoration: none;
  font-size: 1.6rem;
  font-family: inherit;
}

a:hover {
  text-decoration: none;
  color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-transform: none;
  line-height: 1.3;
  letter-spacing: normal !important;
}

h1 {
  font-weight: 400;
  font-style: normal;
}

h2,
.text-label {
  font-family: inherit;
  font-weight: 400;
  color: #de2b19;
  font-size: 2rem;
  padding-bottom: 1rem;
  letter-spacing: 0rem;
}

h3,
.section-title {
  font-weight: 500;
  font-family: inherit;
  font-size: 4rem;
  line-height: 1.4;
  padding-bottom: 3rem;
  margin: 0 auto;
  color: #444;
}


h4 {
  margin-bottom: 1rem;
  max-width: 30rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.5;
}

.ingress {
  font-weight: 500;
  font-family: inherit;
  font-size: 2.5rem;
  line-height: 1.4;
  padding-bottom: 3rem;
  margin: 0 auto;
  color: #444;
}

.text-center{
  text-align: center !important;
}
.text-block{
  max-width: 90rem;

}
.text-block-center{
  max-width: 100rem;
  margin: auto;
}
.justify-center{
  justify-content: center;
}
.bg-transparent{
  background-color: transparent !important;
}
.bg-white{
  background-color: white;
}
.bg-light-gray{
  background:  rgb(243, 242, 242) !important;
}
.br-2{
  border-radius: 2rem;
}
@media only screen and (max-width: 770px) {
  h3,
  .section-title {
    font-size: 3.5rem;
  }
}

@media only screen and (max-width: 600px) {
  h3,
  .section-title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 470px) {
  h3,
  .section-title {
    font-size: 2.7rem;
    padding-bottom: 1rem;
  }
}

@media only screen and (max-width: 350px) {
  h3,
  .section-title {
    font-size: 2.2rem;
  }
}

.box-shadow {
  box-shadow: 0 1rem 3rem rgb(234, 234, 234);
}

/* =====================================================================
Width 
=========================================================================*/

.width-2000 .section-block-wrapper {
  max-width: 200rem;
}

.width-2000 .section-block .normaltext-type {
  max-width: none;
}

.width-1800 .section-block-wrapper {
  max-width: 180rem;
}

.width-1500 .section-block-wrapper {
  max-width: 150rem;
}

.width-100 .normaltext-type {
  max-width: 75rem;
}

/* ==========================================================================
Header / Navigation
========================================================================== */

/* cta-btn */
.cta-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.btn-nav {
  border: 2px solid #de2b19;
  background-color: #de2b19;
}

.btn-nav {
  font-size: 1.4rem;
  padding: 1rem 3rem;
}

.btn-nav:hover {
  background-color: transparent;
  border: 2px solid #fff;
}

header.scrolled .btn-nav:hover {
  background-color: transparent;
  border: 2px solid #de2b19;
  color: #de2b19;
}

/* Kontaktuppg i header */

header .cta-contact-info {
  position: absolute;
  top: 1.8rem;
  right: 14.5rem;
  opacity: 1;
  -moz-transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.cta-contact-info .contact-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 2rem;
}

.cta-contact-info .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  padding: 0;
  border-radius: 2rem;
  border: 0.1rem solid #fff;
  background-color: #fff;
  color: #de2b19;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

header.scrolled .cta-contact-info .contact:hover {
  background-color: transparent;
  border-color: #de2b19;
  color: #de2b19;
  text-decoration: none;
}

.cta-contact-info .contact:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

header.scrolled .cta-contact-info .contact {
  background-color: #de2b19;
  border-color: #de2b19;
  color: #fff;
  text-decoration: none;
}

.cta-contact-info .contact::before {
  font-size: 1.5rem;
  position: relative;
}

/* CTA sociala medier  */

header .cta-socials {
  position: absolute;
  top: 1.8rem;
  right: 23.5rem;
  opacity: 1;
  -moz-transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  
}

.cta-socials .social-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin-right: 2rem;
}

.cta-socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  padding: 0;
  border-radius: 2rem;
  border: 0.1rem solid #fff;
  background-color: #fff;
  color: #de2b19;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.cta-socials .social:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

header.scrolled .cta-socials .social {
  background-color: #de2b19;
  border-color: #de2b19;
  color: #fff;
  text-decoration: none;
}

header.scrolled .cta-socials .social:hover {
  background-color: transparent;
  border-color: #de2b19;
  color: #de2b19;
  text-decoration: none;
}

.cta-socials .social::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  font-size: 1.5rem;
  position: relative;
  top: 1px;
}

.social-facebook::before {
  content: "\f39e";
}

.social-instagram::before {
  content: "\f16d";
}

/* header  */

header .container {
  max-width: none;
  padding: 0;
}

header {
  background-color: transparent;
  box-shadow: none;
  -moz-transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  height: 70px;
}

header .header-logo {
  filter: invert(1) grayscale(1);
  width: 12rem;
  padding: 1.5rem 2rem 2rem;
  position: absolute;
  opacity: 1;
  transition: 0.4s ease-in-out;
}

header .header-logo a {
  opacity: 1;
  font-size: inherit;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  font-family: "open sans", sans-serif;
  text-transform: none;
}

@media only screen and (max-width: 1500px) {
  header .header-logo {
    font-size: 1.6rem;
  }
}

/* HEADER SCROLLED */
header{
  margin-top: 0;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
}

header nav.mainmenu a {
  color: #444;
}

header .header-logo {
  filter: none;
  opacity: 1;
}

nav.mainmenu {
  text-align: left;
  margin-left: 15rem;
}

nav.mainmenu ul.TemplateMenu > li {
  line-height: auto;
  height: auto;
}

nav.mainmenu a {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 0 2rem;
  line-height: 72px;
  font-size: 1.4rem;
  letter-spacing: 0rem;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
  background-color: transparent;
  color: #fff !important;
}
nav.mainmenu li a:hover,
nav.mainmenu li.active a {
  color: red !important;
}

header.scrolled nav.mainmenu li:hover,
header.scrolled nav.mainmenu li.active {
  background-color: transparent;
  color: #444 !important;
}

header.scrolled nav.mainmenu li a:hover,
header.scrolled nav.mainmenu li.active a {
  color: #444 !important;
}

nav.mainmenu a:hover:before,
nav.mainmenu li.active a:before,
header.scrolled nav.mainmenu li.active a:before,
header.scrolled nav.mainmenu a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

nav.mainmenu a:before,
header.scrolled nav.mainmenu a:before {
  visibility: hidden;
  position: absolute;
  content: "";
  height: 2px;
  bottom: 20px;
  width: 50%;
  left: 25%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

nav.mainmenu a:before {
  background-color: #fff !important;
}

header.scrolled nav.mainmenu a:before {
  background-color: #444 !important;
}

nav.mainmenu .nav-expandable:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  content: "\f0d7";
  margin-left: 7px;
  text-decoration: none;
  display: inline-block;
}

nav.mainmenu .nav-expandable:after {
  text-decoration: none !important;
}

header .mobile-menu span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  margin-bottom: 7px;
  display: none;
}

/* Dropdown*/

/* Styling for first level ul */

nav.mainmenu ul > li > ul {
  background-color: #fff;
  width: auto;
  border-bottom: 5px solid #ed1d25;
}

nav.mainmenu ul > li > ul > li {
  overflow: hidden;
}

/* Background color on active submenu item */
nav.mainmenu ul > li:hover > ul > li.active {
  background-color: #f2f2f2;
}

/* Background color on hover */
nav.mainmenu ul > li:hover > ul > li:hover {
  background-color: #f2f2f2;
}

nav.mainmenu ul > li.expandable-li:hover > a {
  color: #444;
  
}

nav.mainmenu ul > li.expandable-li:hover > a:hover:before {
  display: none;
}

nav.mainmenu ul > li.expandable-li > a::before {
  visibility: hidden;
}

nav.mainmenu ul > li > ul > li.active a::before {
  background-color: #f2f2f2;
  transform: scale(1);
  border-radius: 100%;
}

nav.mainmenu ul > li > ul > li.active a::after {
  background-color: #f2f2f2;
  opacity: 1;
  transform: translateX(-92px);
  width: 100px;
  border-radius: 4px;
}

nav.mainmenu ul > li.expandable-li > ul > li > a,
header.scrolled nav.mainmenu ul > li.expandable-li > ul > li > a {
  line-height: 5rem;
  height: 5rem;
  padding: 0 4rem 0 2rem;
  color: #444 !important;
}

nav.mainmenu ul > li > ul > li > a,
header.scrolled nav.mainmenu ul > li > ul > li > a {
  line-height: 5rem;
  height: 5rem;
  padding: 0 4rem 0 2rem;
  color: #444 !important;
}

nav.mainmenu ul > li > ul > li:hover > a {
  color: #444 !important;
}

nav.mainmenu ul > li > ul > li.active > a {
  color: #444 !important;
}

nav.mainmenu ul > li > ul > li:hover > a::before {
  visibility: hidden;
}

header.scrolled nav.mainmenu ul > li > ul > li:hover > a::before {
  visibility: hidden;
}

nav.mainmenu ul > li.expandable-li > ul > li > a::before {
  visibility: hidden;
}

header.scrolled nav.mainmenu ul > li.expandable-li > ul > li > a::before {
  visibility: hidden;
}

/* Mobilmenyn */

@media only screen and (max-width: 1100px) {
  header .cta-socials {
    right: 30rem;
  }

  header .cta-contact-info {
    right: 21rem;
  }

  .cta-menu {
    right: 6rem;
  }

  header nav.mainmenu {
    margin-left: 0rem;
  }

  nav.mainmenu a:before {
    visibility: hidden !important;
  }

  header.scrolled nav.mainmenu a:before {
    visibility: hidden !important;
  }

  nav.mainmenu ul > li > ul > li.active > a {
    color: #444 !important;
  }

  nav.mainmenu ul > li > ul > li.active {
    background-color: #f2f2f2 !important;
  }

  nav.mainmenu li:hover,
  nav.mainmenu li.active {
    background-color: transparent;
    color: #444 !important;
  }

  nav.mainmenu li a:hover,
  nav.mainmenu li.active a {
    color: #444 !important;
  }

  header.scrolled nav.mainmenu li:hover,
  header.scrolled nav.mainmenu li.active {
    background-color: transparent !important;
    color: #444 !important;
  }

  nav.mainmenu li:hover,
  nav.mainmenu li.active {
    background-color: transparent !important;
    color: #444 !important;
  }

  header.scrolled nav.mainmenu li a:hover,
  header.scrolled nav.mainmenu li.active a {
    color: #444 !important;
  }
}

@media only screen and (min-width: 1100px) {
  .hamburger {
    display: none;
  }

  .expandable:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    content: "\f0d7";
    margin-left: 0.8rem;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    vertical-align: middle;
  }

  nav.mainmenu a:before,
  nav.mainmenu a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    visibility: visible;
    transform: scaleX(1);
  }

  nav.mainmenu a:before {
    background-color: #fff;
    visibility: hidden;
    position: absolute;
    content: "";
    height: 2px;
    bottom: 15px;
    width: 50%;
    margin: 0 auto;
    display: block;
    left: 25%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media only screen and (max-width: 1100px) {
  /* Hamburger */
  .hamburger {
    position: absolute;
    z-index: 99;
    left: auto;
    right: 2rem;
    top: 0.6rem;
  }

  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    color: #fff;
    background-color: #fff;
  }

  .hamburger--menu .hamburger-inner::after {
    content: "MENY";
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: #fff;
  }

  header.scrolled .hamburger .hamburger-inner,
  header.scrolled .hamburger .hamburger-inner::before {
    color: #444;
    background-color: #444;
  }

  header.scrolled .hamburger--menu .hamburger-inner::after {
    color: #444;
  }

  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    width: 4rem;
  }

  /* navigation */

  nav.mainmenu {
    text-align: left;
    display: none;
    position: fixed;
    height: 100%;
    left: 0;
    width: 100%;
    max-width: 35rem;
    background-color: #fff;
    z-index: 15;
    top: 0;
    box-shadow: none;
    overflow-y: scroll;
  }

  nav.mainmenu .Padding {
    margin: 8rem 0 !important;
  }

  nav.mainmenu li {
    text-align: left;
    display: block;
  }

  nav.mainmenu li a {
    margin: unset;
    padding: unset;
    padding-left: 4rem;
    font-size: 1.6rem;
    line-height: 3.7;
    color: #444 !important;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 6;
  }

  /* Dropdown */
  nav.mainmenu ul > li > ul {
    background-color: #fff !important;
    width: auto !important;
    border: none;
  }

  nav.mainmenu ul > li > ul {
    display: contents !important;
  }

  nav.mainmenu ul > li > ul > li a {
    color: #000 !important;
  }

  nav.mainmenu ul > li > ul > li > a {
    width: auto;
    padding: 0 0 0 6rem;
  }

  nav.mainmenu ul > li.expandable-li:hover > a {
    padding-bottom: 0;
  }

  nav.mainmenu ul.TemplateMenu > li,
  .scrolled nav.mainmenu ul.TemplateMenu > li {
    line-height: unset;
    height: unset;
  }
}

@media only screen and (max-width: 500px) {
  header .cta-socials,
  header .cta-contact-info {
    display: none;
  }

  nav.mainmenu {
    max-width: 50rem;
  }

  .hamburger.is-clicked .hamburger-inner,
  .hamburger.is-clicked .hamburger-inner::after,
  .hamburger.is-clicked .hamburger-inner::before {
    color: #000;
    background-color: #000;
  }
}

/* ==========================================================================
Top-section
========================================================================== */

.top-section {
  height:auto;
  overflow: hidden;
  background: linear-gradient(
    46deg,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.6) 120%
  );
}

.top-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100vh;
}

.page-title-wrap {
  transform: none;
  position: static;
  max-width: 80rem;
  text-align: left;
  padding: 2rem 2rem 10rem 5rem;
  z-index: 3;
}

.page-title-wrap .link {
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0rem;
}

.page-title-innerwrap .btn:first-child {
  margin-right: 2rem;
}

.page-title-wrap h1 {
  font-size: 5.7rem;
  font-weight: 300;
  margin: 0 auto;
  line-height: 1.4;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.27);
  font-family: inherit;
}

.usp-decor {
  font-weight: 700;
}

.top-text {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.5rem;
  font-family: inherit;
}

.page-title-innerwrap p {
  padding-bottom: 0;
  font-size: 1.6rem;
  color: #fff;
  font-family: inherit;
  font-weight: 400;
}

@media only screen and (max-width: 700px) {
  .page-title-wrap {
    padding: 2rem 4rem 5rem 4rem;
  }

  .page-title-wrap h1 {
    font-size: 4.5rem;
  }

  .btn-wrapper {
    display: flex;
    flex-direction: column;
  }
  .btn-wrapper .btn {
    max-width: none;
    width: 100%;
  }

  .btn-wrapper:nth-child(1) {
    margin-bottom: 2rem;
  }

  .page-title-innerwrap .btn:first-child {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .page-title-wrap .link {
    text-align: center;
  }
}

@media only screen and (max-width: 550px) {
  .page-title-wrap h1 {
    font-size: 4.3rem;
  }

  .page-title-wrap p {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  .page-title-wrap h1 {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Om oss
========================================================================== */
.about .section-block-wrapper {
  max-width: 145rem;
}
/*.LayoutPage .about {
  background: linear-gradient(-6deg, white 70%, rgb(0 0 0 / 60%) 70%);
}*/

.about .section-block {
  padding: 5rem 5rem 10rem;
}

.about .split-content {
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0px 0.2rem 0.8rem rgba(0, 0, 0, 0.07),
    0 1rem 3rem rgba(0, 0, 0, 0.07);
  z-index: 2;
}

.about .split-image img {
  max-height: 55rem;
  z-index: 0;
  border-radius: 0rem;
  padding: 2rem 0;
  width: 100% !important;
  height: 100% !important;
  background-color: #FFF;;
}  

@media screen and (max-width: 1538px) {
  .about .section-block {
    padding: 9rem 5rem;
  }
}

@media only screen and (max-width: 1300px) {
  .about .split-content {
    padding: 7rem;
  }
}

@media screen and (max-width: 1115px) {
  .about .split-wrapper {
    flex-direction: column-reverse;
  }

  .about .split-image {
    width: 100%;
    padding: 2rem;
  }

  .about .split-image img {
    padding: 0;
  }

  .about .split-content {
    width: 100%;
    padding: 8rem;
    box-shadow: none;
  }

  .about .section-block {
    background: #fff;
    padding: 0;
  }
}

@media screen and (max-width: 770px) {
  .about .split-content {
    padding: 5rem;
  }
}

@media screen and (max-width: 600px) {
  .about .split-content {
    padding: 5rem;
  }
}

@media screen and (max-width: 470px) {
  .about .split-content {
    padding: 4rem 2rem;
  }
}

/* Startsida: Produkter
========================================================================== */

.LayoutPage .services .section-block-wrapper {
  margin-top: -25rem;
}

.LayoutPage .services {
  background: linear-gradient(to bottom, transparent 30%, #fff 30%);
}

.services .section-block {
  padding: 12rem 5rem 5rem;
  background-color: #fff;
  background-image: linear-gradient(8deg, #de2b19 25%, transparent 0%);
}

.service-title {
  padding-bottom: 1rem;
  font-size: 2.5rem;
  color: #de2b19;
}

.services p {
  font-size: 1.6rem;
}

.btn-link {
  font-size: 1.6rem !important;
  padding-bottom: 0;
  margin-top: 1rem;
  color: #111 !important;
}
.btn-link:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  content: "\f0da";
  margin-left: 15px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.btn-link:hover::after {
  transform: translateX(1rem);
}

.service-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: visible;
}

.service-card {
  width: 48%;
  margin-bottom: 5rem;
  position: relative;
  display: flex;
  min-height: 50rem;
  border-bottom: 7px solid #de2b19;
  box-shadow: 0px 10px 10px rgb(0 0 0 / 9%);
  transition: all 0.3s ease;
}

.service-card img {
  object-fit: cover;
}

.service-text {
  padding: 2rem;
  background-color: #fff;
  color: #444;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 75%;
  transition: all 0.3s ease;
}

.service .btn-link {
  padding: 1rem 0 0 !important;
  padding-bottom: 0 !important;
}

.service-text .text-label {
  padding-bottom: 1rem;
}

.service-card:hover .service-text {
  background-color: #de2b19;
}
.service-card:hover .service-text * {
  color: #fff;
}

.service-p {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 0;
  font-family: inherit;
}

@media only screen and (max-width: 1400px) {
  .service-text {
    max-width: 85%;
  }
}

@media only screen and (max-width: 1160px) {
  .service-card {
    width: 100%;
    margin: 1rem 0;
    max-height: 45rem;
    min-height: 0;
  }

  .service-text {
    padding: 2rem 5rem;
  }
}

@media only screen and (max-width: 1024px) {
  .services .section-block {
    padding: 8rem 5rem;
  }

  .LayoutPage .services .section-block-wrapper {
    margin-top: -15rem;
  }
}

@media only screen and (max-width: 500px) {
  .services .section-block {
    padding: 5rem 2rem 2rem;
  }

  .service-text {
    padding: 2rem 2rem;
  }
}

/* Parallax
========================================================================== */
.parallax-1 {
  max-width: 100% !important;
  background-attachment: fixed !important;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover !important;
}

.isMobile .parallax-1 {
  background-attachment: scroll !important;
  max-width: 100% !important;
  background-size: cover !important;
}

.parallax-1 .section-block {
  background: rgba(0, 0, 0, 0.5);
}

.parallax-1 {
  background: url("/assets/images/lamps.jpg");
}

.parallax-1 .section-title {
  max-width: 90rem;
}

.parallax * {
  color: #fff;
}

.parallax-1 .section-block {
  padding: 12rem 5rem 20rem;
}

@media only screen and (max-width: 1000px) {
  .parallax-1 .section-block {
    padding: 8rem 5rem 15rem;
  }
}

@media only screen and (max-width: 480px) {
  .parallax-1 .section-block {
    padding: 5rem 5rem 15rem;
  }
  .parallax-1 .section-block p {
    text-align: center;
  }
}

/* ==========================================================================
Undersidor - Generellt
========================================================================== */

/* Hero
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}


.SubPage .top-section {
  min-height: 30%;
}

.no-back .top-section {
  display: none !important;
}

.SubPage .header-block .heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.SubPage .header-block .section-block {
  background-color: transparent;
}

.SubPage nav.mainmenu a {
  color: black
}

.SubPage header.scrolled {
  background-color: #fff;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.08);
}

.SubPage header.scrolled nav.mainmenu a {
  color: #444;
}

.SubPage .page-title-wrap {
  display: none !important;
}
.display-none {
  display: none !important;
}

.ingress {
  font-size: 2.1rem;
  font-weight: 600;
  padding-bottom: 2rem;
}

.LayoutPage .SubPage h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  text-shadow: none;
}

@media only screen and (max-width: 1466px) {
  .LayoutPage .intro .section-block {
    height: 50vh;
  }
}

@media only screen and (max-width: 950px) {
  .LayoutPage .header-img .heading-type {
    max-width: 100%;
    border-radius: 0;
  }

  .LayoutPage .header-img .heading-type h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 750px) {
  .SubPage .top-section {
    min-height: 25%;
    height: 25%;
  }
}

@media only screen and (max-width: 500px) {
  .SubPage .top-section {
    min-height: 20%;
    height: 20%;
  }
}

/* ========================================================================
Undersida: om oss/ tjänster/ elbilsladdare
============================================================================  */

.SubPage .about-intro .section-block {
  padding: 12rem 5rem;
}

.SubPage .about .section-block {
  background: 0;
  background-color: #f2f2f2;
}

.SubPage .about .split-content {
  padding: 10rem;
  background-color: #fff;
  border-radius: 0rem;
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 6%);
}

.SubPage .about .split-image {
  box-shadow: none;
  padding: 5rem 0;
}

.SubPage li {
  line-height: 1.7;
}

.SubPage ul {
  margin-top: 0rem;
}

.SubPage .strong {
  padding-top: 1rem;
}

.section-cta .text-block {
  max-width: 120rem;
  padding: 5rem 4rem;
  border-radius: 1rem;
}

@media only screen and (max-width: 580px) {
  .section-cta .text-block {
      padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 1300px) {
  .SubPage .about .split-content {
    padding: 7rem;
  }
}

@media screen and (max-width: 1024px) {
  .SubPage .about .section-block {
    padding: 8rem 5rem 6rem;
  }

  .SubPage .about .split-image {
    box-shadow: none;
    padding: 0;
  }
}

@media screen and (max-width: 770px) {
  .SubPage .about-intro .section-block {
    padding: 9rem 5rem;
  }

  .SubPage .about .section-block {
    padding: 0rem;
  }

  .SubPage .about .split-content {
    padding: 5rem;
    box-shadow: none;
    background-color: #f2f2f2;
  }
}

@media screen and (max-width: 480px) {
  .SubPage .about-intro .section-block {
    padding: 5rem 3rem;
  }

  .SubPage .about .split-content {
    padding: 4rem 3rem;
  }

  .SubPage .about-intro p {
    text-align: center;
  }
}

.about-intro .normaltext-type {
  max-width: 90rem;
}
/* Sektion FAQ
========================================================================== */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #de2b19;
  transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
  background: #de2a19b4;
}

.accordion-header {
  position: relative;
  width: 100%;
  padding: 2rem 4rem 2rem 2rem;
  text-decoration: none;
  display: flex;
}

.accordion-header::after {
  content: "\f078";
  position: absolute;
  top: 2rem;
  right:2rem;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  color: white;
  transition: .5s ease;
}
.accordion-header p{
  padding: 1rem;
  color: white;
  font-size: 1.6rem;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 2rem ;
  background: white;
  box-shadow: 0 1rem 3rem rgb(226, 226, 226);
}

.accordion-body p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1100px) {
.faq-section .col-1,
.faq-section .col-2{
  width: 100% !important;
  padding: 0 !important;
}
}
@media only screen and (max-width: 580px) {
  .accordion-header {
      padding: 1.5rem 3rem 1.5rem 1.5rem;
  }

  .accordion-header::after {
      right: .8rem;
  }

  .accordion-body {
      padding: 0 1.5rem 1.5rem;
  }
}

/* ==========================================================================
Undersida: Miljö
========================================================================== */

.SubPage .full-text .section-block {
  padding: 10rem 5rem 7rem;
}

.SubPage .full-text h3 {
  padding-bottom: 3rem;
}

.full-text li {
  line-height: 1.8;
  padding-bottom: 1rem;
}

.SubPage .full-text .section-block .normaltext-type {
  max-width: none;
}

.SubPage .full-text .section-block .section-block-wrapper {
  max-width: 150rem;
}

.SubPage .full-text .split-content {
  width: 50%;
  text-align: left;
  padding: 5rem;
}

@media screen and (max-width: 1250px) {
  .SubPage .full-text .section-block {
    padding: 7rem 5rem;
  }

  .SubPage .full-text .split-content {
    padding: 8rem 0rem 8rem 0rem;
  }

  .SubPage .full-text .second {
    padding: 8rem 0rem 8rem 5rem;
  }
}

@media screen and (max-width: 1050px) {
  .full-text .second-b {
    margin-bottom: 5rem;
  }

  .full-text .second-b .btn-wrapper {
    margin-top: 3rem;
  }

  .SubPage .full-text .section-block {
    padding: 0;
  }

  .full-text li.no-padding {
    padding-bottom: 0;
  }

  .split-wrapper.reverse {
    flex-direction: row;
  }

  .SubPage .full-text .split-content {
    width: 100%;
    padding: 8rem 8rem 0rem 8rem;
  }

  .SubPage .full-text .second {
    width: 100%;
    padding: 0rem 8rem 8rem 8rem;
  }

  .split-image {
    width: 100%;
  }
}

@media screen and (max-width: 770px) {
  .SubPage .full-text .split-content {
    padding: 5rem 5rem 0rem 5rem;
  }

  .SubPage .full-text .second {
    padding: 0rem 5rem 5rem 5rem;
  }
}

@media screen and (max-width: 470px) {
  .SubPage .full-text .split-content {
    padding: 3rem 2rem 0rem 2rem;
  }
  
  .SubPage .full-text .second {
    padding: 0rem 2rem 3rem 2rem;
  }
}

/* Bakgrundsbild
========================================================================== */
.section-laddbox{
  background-image: url('/assets/images/laddbox-2000px.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 40rem;
}

.section-elektriker{
  background-image: url('/assets/images/el-2000px.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 40rem;
}
.section-elinstallation{
  background-image: url('/assets/images/elins-2000px.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 40rem;
}

/* ==========================================================================
 Undersida: kontakta oss
 ========================================================================== */

/* kontaktinfo med ikonerna */
.contacts-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #de2b19;
  padding-bottom: 2rem;
}

.contact-options {
  margin: 1rem 0;
  font-style: normal;
  margin-bottom: 4rem;
}

.contact-option {
  display: flex;
  margin: 2rem 0;
  align-items: center;
  color: #444;
  font-weight: 400;
}

.contact-option:hover {
  color: #de2b19;
}

.contact-option::before {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 1.5em;
  margin-right: 2rem;
  vertical-align: middle;
  color: #de2b19;
  width: 2em;
  text-align: center;
}

.contact-option:hover::before {
  text-decoration: none;
}

.contact-option.address::before {
  content: "\f3c5";
}

.contact-option.mobile::before {
  content: "\f3cd";
}

.contact-option.phone::before {
  content: "\f67d";
}

.contact-option.mail::before {
  content: "\f658";
}

@media only screen and (max-width: 600px) {
  .contacts-heading {
    font-size: 2rem;
  }
}

/* Offertforfragan
========================================================================== */
.LayoutPage .contact-form {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.LayoutPage .contact-form .section-block {
  position: relative;
  width: 100%;
  max-width: none;
  text-align: left;
  padding: 0rem 2rem 10rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 80%, #fff 80%);
}

.LayoutPage .contact-form .section-block-wrapper {
  max-width: 140rem;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 9%);
}

.LayoutPage .contact-form .col-0 {
  width: 40%;
  background-color: #fff;
  order: 0;
  padding: 10rem 5rem;
  display: flex;
  z-index: 5;
  position: relative;
  padding-left: 5rem;
}

.LayoutPage .contact-form .col-1 {
  padding: 5rem 3rem;
  width: 60%;
  order: 1;
  background: #de2b19;
  height: 100%;
  display: flex;
  z-index: 1;
}

.LayoutPage .contact-form .col-0 * {
  text-align: left;
}

.LayoutPage .contact-form .fas {
  padding-right: 1rem;
  color: #de2b19;
}

.LayoutPage .contact-form h4 {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 2rem;
}

/* Contact form  */

.LayoutPage .contact-form .section-block .Contact .ContactForm {
  display: flex;
  flex-wrap: wrap;
}

.LayoutPage .contact-form .section-block .Contact .ContactForm div {
  width: 48%;
  margin: 1%;
}

/* Display none eftersom tidigare sida ej hade meddelanderuta */
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  div.ContactFormMessage {
  width: 100%;
}

.LayoutPage .Contact .ContactForm textarea.textmessage {
  height: 15rem;
}
.asterisk p:after {
    content: "*";
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 6px;
    color: white;
}
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  div.ContactFormMessage
  p,
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  .ContactFormEmail
  p,
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  .ContactFormField
  p,
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  .ContactFormName
  p {
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 1rem !important;
  text-transform: none;
  letter-spacing: 0;
}

.LayoutPage .contact-form .section-block .Contact .ContactForm input.text,
.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  textarea.textmessage {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.4rem;
  font-weight: 400;
  color: #000;
  height: 4rem !important;
  border: 2px solid #fff !important;
}

.LayoutPage
  .contact-form
  .section-block
  .Contact
  .ContactForm
  div.ContactFormMessage {
  position: relative;
  padding-top: 0;
}
.ContactForm .ContactFormField:has(.field-1) {
    width: 100%;
}

.LayoutPage .contact-form .section-block .Contact .ContactForm input:focus,
.LayoutPage .contact-form .section-block .Contact .ContactForm textarea:focus {
  border-color: #000 !important;
}

.LayoutPage .contact-form .ContactForm input.ContactSubmit {
  width: 100% !important;
  max-width: none;
  padding: 1.6rem 4rem;
  border-radius: 0.8rem;
  background-color: #fff;
  border: 2px solid #fff !important;
  color: #000;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  font-family: inherit;
  height: auto !important;
  max-width: 100%;
  margin-left: auto;
}

.LayoutPage .contact-form .ContactForm input.ContactSubmit:hover {
  background-color: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}

@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  .LayoutPage .contact-form .ContactForm input:not(.ContactSubmit),
  .LayoutPage .contact-form .ContactForm textarea {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 1024px) {
  .LayoutPage .contact-form .col-block {
    width: 100%;
  }

  .LayoutPage .contact-form .col-0 {
    order: 0;
    height: auto;
    display: block;
  }

  .LayoutPage .contact-form .col-1 {
    height: auto;
    min-height: auto;
    order: 1;
    margin: 0;
  }

  .LayoutPage .contact-form .section-block {
    height: auto;
  }

  .LayoutPage .contact-form .section-block-wrapper {
    flex-direction: column;
  }
}

@media only screen and (max-width: 660px) {
  .LayoutPage .contact-form .col-0 {
    padding: 10rem 3rem 5rem 3rem !important;
  }

  .LayoutPage .contact-form .col-1 {
    padding: 2rem !important;
  }

  .LayoutPage .contact-form .section-block .Contact .ContactForm div {
    width: 100%;
    margin: 0 0 1rem 0;
  }

  .LayoutPage .contact-form .section-block {
    padding: 0;
  }

  .LayoutPage .contact-form .ContactForm input.ContactSubmit {
    width: 100% !important;
  }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
  background-color: #de2b19;
  padding: 0;
  color: #fff;
  position: relative;
}

.footer .container {
  padding: 7rem 5rem 0;
  max-width: 160rem;
}

.footer p,
.footer a,
.footer li {
  font-weight: 400;
  text-align: left;
  font-size: 1.4rem;
  color: #fff;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 0 0;
  position: relative;
}

.footer-logo-wrapper {
  width: 20rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 100%;
}

/* FOOTER MENU */

.footer-nav {
  width: 100%;
  margin-bottom: 5rem;
  padding-left: 2rem;
  text-align: right;
}

.footer-menu-wrapper {
  display: flex;
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0;
}

.footer-menu {
  text-align: left;
  width: 33%;
}

.footer-heading {
  font-family: inherit;
  letter-spacing: normal;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0rem;
  padding-bottom: 1rem;
  color: #fff;
  border: none;
}

/* FOOTER SUBMENU */
.footer-submenu {
  padding-inline-start: 0;
  list-style-type: none;
}

.footer-submenu li {
  text-align: left;
}

/* .footer-menu:last-child {
	width: 7rem;
} */

.footer-menu-link {
  font-size: 1.6rem;
  line-height: 2em !important;
}

.footer-menu-link:hover {
  color: #444;
  text-decoration: underline;
}

/* FOOTER SOCIAL LINKS */
.footer .social-list {
  display: flex;
  list-style: none;
  margin: 0;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem;
  padding: 0;
  border-radius: 5rem;
  border: 0.5px solid #fff;
  background-color: #fff;
  color: #de2b19;
}

.footer .social:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.footer .social::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  font-size: 1.5rem;
  position: relative;
  top: 1px;
}

.social-facebook::before {
  content: "\f39e";
}

.footer-bottom {
  border-top: 0.05rem solid #fff;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  line-height: 1rem;
}

.footer .footer-bottom p {
  color: #fff;
  font-size: 1.2rem;
  padding: 0;
}

.footer-bottom .info-list {
  padding-inline-start: 0;
  list-style-type: none;
  display: flex;
  margin: 0;
}

.footer-bottom .info-list li {
  margin-right: 2rem;
  font-size: 1.2rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1.3rem;
  font-weight: normal;
}

.webbess-stamp img {
  width: 3rem;
  margin-left: 1rem;
  filter: invert();
}

@media only screen and (max-width: 1250px) {
  .footer .container {
    padding: 6rem 2rem 0;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-menu-wrapper {
    flex-wrap: wrap;
  }

  .footer-menu {
    width: 50%;
    margin-bottom: 5rem;
  }
}

@media only screen and (max-width: 850px) {
  .footer .container {
    padding: 4rem 2rem 0rem;
  }

  .footer-menu {
    width: 100%;
    margin-bottom: 3rem;
  }

  .footer-nav {
    padding-left: 0;
  }
}

@media only screen and (max-width: 400px) {
  .footer-bottom {
    padding: 2rem 0;
  }

  .footer .social-list {
    margin-bottom: 3rem;
  }
}
