* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "montserrat", sans-serif;
} */

body {
  line-height: 24px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 100;
}

header {
  /* background-color: #818c86; */
  opacity: 0.95;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s;
  width: 100%;
  z-index: 99;
}

header dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0px;
}

header .container {
  /* position: relative;
  max-width: 960px; */
  position: fixed;
  max-width: 100%;
  padding: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container .brand h2 {
  color: #FFF;
  /* Logotyp text */
  font-size: 28px;
  font-weight: 900;
}

header .container .brand h2 span {
  color: #FF5858;
  font-weight: 400;
}

header .container .mobile-nav {
  display: none;
}

header .container .mobile-nav .open-menu {
  color: #FFF;
  /* Öppna meny text */
  text-decoration: none;
}


/* Hamburger menu styles */
.open-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.open-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Close menu (X) styles */
.close-menu {
  display: none;
  font-size: 36px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  /* align-items: center; */
  /* justify-content: center; */
  width: 24px;
  height: 30px;
  /* padding: 0px 5px 0px 5px; */
  font-weight: 500;
  margin: 0px;
  margin-top: -12px;
  margin-left: 3px;
}
.close-menu-symbol {
  font-size: 34px;
  font-weight: 600;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: -2px;
}
.close-menu-text {
  font-size: 16px;
  margin-right: 0px;
  margin-left: -8px;
  margin-top: -2px;
}

.closeshow {
  display: block;
}

.burgerhide {
  display: none !important;
}

@media screen and (max-width: 767px) {
  header .container .mobile-nav {
    display: block;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 15px;
    min-height: 60px;
    min-width: 60px;
    /* padding-left: 15px; */
    align-content: center;
    /* color: black; */
  }
}

header .container .navbar .menu {
  display: flex;
  list-style-type: none;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 10px;
  /* border: 1.5px solid rgb(204,106,0) ; */
  /* text-transform: uppercase; */

}

header .container .navbar .menu .menu-item {
  position: relative;
}

header .container .navbar .menu .menu-item a {
  display: block;
  color: #000;
  /* Basnivå text */
  text-decoration: none;
  padding: 10px 25px;
  font-size: 18pt;
  font-weight: 600;
}

header .container .navbar .menu .menu-item a:hover {
  color: #fff;
  /* Hover text */
  background-color: #333;
  /* Hover bakgrund */
  border-radius: 8px;
}

header .container .navbar .menu .menu-item.has-sub-menu>a {
  position: relative;
  padding-right: 35px;
}

header .container .navbar .menu .menu-item.has-sub-menu>a:after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #000;
  /* Plustecknet */
  font-size: 18pt;
  font-weight: 600;
}

header .container .navbar .menu .menu-item.has-sub-menu>a:hover:after {
  color: #000;
}

header .container .navbar .menu .menu-item.has-sub-menu .sub-menu {
  position: absolute;
  z-index: 999;
  opacity: 0;
  transform: translateY(-200px);
  pointer-events: none;
  transition: 0.4s ease-out;
  min-width: 100%;
  width: max-content;
  background-color: #666;
  /* Bakgrundsfärg på submeny */
  list-style-type: none;
}

header .container .navbar .menu .menu-item.has-sub-menu .sub-menu .menu-item {
  width: 100%;
}

header .container .navbar .menu .menu-item.has-sub-menu:hover>.sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

header .container .navbar .menu .menu-item.has-sub-menu:hover>.sub-menu .sub-menu {
  top: 0;
  right: 100%;
}

header .container .navbar .close-menu {
  display: none;
  color: #FFF;
  /* Stäng meny text */
  text-decoration: none;
  text-align: center;
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  header .container .navbar .close-menu {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  header .container .navbar {
    opacity: 0;
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    min-height: 100vh;
    z-index: 999;
    /* background-color: #222; */
    pointer-events: none;
  }

  header .container .navbar.is-active {
    opacity: 1;
    pointer-events: all;
  }

  header .container .navbar .menu {
    flex-direction: column;
  }

  header .container .navbar .menu .not-first {
    padding-top: 30px;
  }

  header .container .navbar .menu .has-sub-menu>.sub-menu {
    display: none;
    position: relative;
  }

  header .container .navbar .menu .has-sub-menu>.sub-menu .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  header .container .navbar .menu .has-sub-menu:hover>.sub-menu {
    display: block;
  }
}

main section {
  padding-top: 15vh;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

main section h1 {
  color: #666;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  /* margin-bottom: 30px; */
}

main section h2 {
  color: #666;
  font-size: 30px;
  font-weight: 400;
  /* font-style: italic; */
  text-align: center;
  margin-bottom: 30px;
}

main section p {
  color: #111;
}

main section .image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

main section .image-wrap .image {
  display: block;
  width: 100%;
  max-width: 480px;
}

main section .content-wrap {
  display: block;
  max-width: 768px;
  margin: 0 auto;
}

main section .content-wrap p {
  color: #676767;
  font-size: 18px;
  font-weight: 400;
}

/* Styling for the dynamic list of entrepreneurs & activities */
main section .logo-list {
  list-style: none;
  /* padding: 0; */
  margin: 0;
}

main section .logo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

main section .logo-item .logo-link {
  margin: auto;
}

main section .logo-item .text a {
  font-weight: 500;
  text-decoration: none;
  font-size: 17px;
}

main section .logo {
  width: 50px;
  height: auto;
}

main section .text {
  flex: 1;
  font-weight: 300;
}

/* Responsive layout for mobile */
@media (max-width: 600px) {
  main section .logo-item {
    flex-direction: column;
    align-items: flex-start;
  }

  main section .logo-item .orglist {
    width: 65px;
  }

  main section .logo {
    margin-bottom: 0.5rem;
  }

  main section .text {
    font-size: 15px;
  }
}



/* Styling the hamburger icon */
.hamburger {
  display: flex;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  /* background-color: black; */
}

.hamburger div {
  width: 100%;
  height: 3px;
  background-color: black;
}

body {
  line-height: 24px;
  font-size: 18px;
  color: #ffffff;
  /* font-family: Arial, sans-serif; */
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 100;
  background-color: #454545 !important;
}

.ann-logo {
  width: 80px;
  margin-left: 23px;
}

.orglist-area {
  padding-top: 100px;
}

.orglist {
  /* height: 60px; */
  width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.orglist-title {
  text-align: left;
  /* font-weight: bold; */
  font-size: 25px;
}

.orglist-logo {
  display: inline-block;
  margin: 10px;
}

.orglist img {
  width: 100px !important;
  height: auto !important;
}

.orglist-img-td {
  height: 120px;
}

.orglist-img-td-2 {
  display: none;
  height: 120px;
}

.table-ann {
  border-collapse: separate;
  border: solid white 5px !important;
  border-radius: 7px;
  background: #a2b0bd;
  padding: 10px;
}

.table-ann td {
  border-collapse: separate;
  border: solid black 0px !important;
  min-width: 100px;
}

.table-ann thead th {
  border: solid 0px !important;
}

main .section-annentrepeneur {
  background-image: url('../img/slask/snasenfromlake.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #333;
}

main .section-annactivities {
  background-image: url('../img/slask/IMG_7877_small.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  color: #333;
}

main .section-annactivities h1 {
  text-align: left;
}

main .section-annactivities h2 {
  text-align: left;
  color: #111;
}

main .section-annentrepeneur p {
  color: #111;
}

main .section-annentrepeneur h1 {
  text-align: left;
  /* font-family: Audiowide, "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; */
}

main .section-annentrepeneur h2 {
  color: #111;
  text-align: left;
}

main .section-annabout {
  background-image: url('../img/slask/IMG_7662_small.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #333;
}

main .section-annabout h1 {
  text-align: left;
}

main .section-annabout h2 {
  color: #111;
  text-align: left;
}

main .section-annby1 {
  /* padding-top: 100px; */
  /* background-image: url('assets/img/bg_ab/skoterdag.jpg'); */
  background-image: url('../img/slask/IMG_3963_small.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  /* background-attachment: fixed; */
  /* background: -moz-linear-gradient(right, #666d5f 10%, #c9d4d9 100%);
  background: -webkit-linear-gradient(right, #666d5f 10%, #c9d4d9 100%);
  background: linear-gradient(to right, #666d5f 10%, #c9d4d9 100%); */
}

main .section-annby1 p {
  color: #111;
}

main .section-annby1 h1 {
  text-align: left;
  /* font-family: Audiowide, "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; */
  /* font-family: Helvetica, sans-serif */
  /* font-family: "M PLUS Rounded 1c", sans-serif; */
  font-weight: 400;
  font-style: normal;
}

main .section-annby1 h2 {
  color: #111;
  text-align: left;
}

main .section-annby1 img {
  max-width: 150px;
  position: absolute;
}

main .section-annby1 .main-annby1 {
  margin-top: 50vh;
  /* position: relative; */
  /* padding-bottom: 20px; */
}

main .section-annby1 .kort-about {
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
}

main .section-annby1 .annsign {
  height: 350px;
  position: absolute;
  left: 100px;
  bottom: 0px;
  opacity: 0.8;
  margin-bottom: 8vh;
}

main .section-annby1 .annsign-text {
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: white;
  text-shadow: 0.5px 0.5px 0.5px 0.5px rgb(32, 32, 32);
  font-weight: lighter;
  font-size: 8pt;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  main .section-annby1 .annsign {
    height: 200px;
    left: 20px;
    /* margin-bottom: 15vh; */
  }
}

main .footer-annby1 {
  background-color: #a2b0bd;
  min-height: 5vh;
  border-top: solid 5px #FFF;
  border-bottom: solid 5px #FFF;
  padding-top: 20px;
  padding-bottom: 20px;
}

main .footer-annby1 p {
  font-weight: 400;
  font-size: 7pt;
  line-height: 17px;
}

@media screen and (max-width: 992px) {
  main .footer-annby1 p {
    font-size: 10px;
    line-height: 14px;
  }
}

@media screen and (max-width: 767px) {
  main .footer-annby1 p {
    font-size: 10px;
    line-height: 13px;
  }
}

.footer-annby1 {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15vh;
  /* Set your desired fixed height */
  z-index: 100;
  /* background: #fff; */
  /* Or your preferred background */
}

@media screen and (max-width: 552px) {
  main .footer-annby1 {
    /* padding-top: 7px;
    padding-bottom: 7px;
    height: 18vh; */
    min-height: 0;
    height: auto;
    /* padding: 20px 0; Optional: for spacing */
    box-sizing: border-box;
    overflow: visible;
  }

  main .footer-annby1 p {
    font-size: 10px;
    line-height: 13px;

  }
}

main .section-map {
  padding-top: 0px;
  ;
  min-height: 90vh;
  padding-bottom: 0px;
}

main section .annmap {
  overflow-x: auto;
}

main .section-annmap1 {
  background-image: url('../img/content_ab/ann_karta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  color: #333;
}

main .section-annmap1 .hovertext {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

main .section-anngallery1 {
  background-image: url('../img/bg_ab/skoterdag.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  /* background-attachment: fixed; */
  /* background: -moz-linear-gradient(right, #666d5f 10%, #c9d4d9 100%);
    background: -webkit-linear-gradient(right, #666d5f 10%, #c9d4d9 100%);
    background: linear-gradient(to right, #666d5f 10%, #c9d4d9 100%); */
}

main section .protector-image {
  display: block;
  max-width: 480px;
  margin: 0 auto;
}

.map-description {
  position: fixed;
  margin-top: 10%;
  margin-left: 50%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 10px;
  top: 0;
  left: 0;
  height: 250px;
  width: 700px;
  color: black;
  display: flex;
  justify-content: left;
  align-items: left;
}

.map-image {
  /* display: block; */
  width: 34%;
  margin: 0 auto;
  /* display: inline-block; */
  /* float: left; */
}

.map-image img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  object-position: 50% 50%;
}

.map-text {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  /* display: inline-block; */
  /* float: left; */
  height: 250px;
  width: 70%;
  margin-left: 5px;
}

main section h1 {
  font-family: "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 88px;
  font-weight: 400;
  color: #444;
}

main .section-military {
  background: -moz-linear-gradient(left, #666d5f 10%, #818b76 100%);
  background: -webkit-linear-gradient(left, #666d5f 10%, #818b76 100%);
  background: linear-gradient(to left, #666d5f 10%, #818b76 100%);
}

main .section-military p {
  color: #111;
}

main .section-military h1 {
  text-align: left;
}

main .section-military h2 {
  color: #111;
  text-align: left;
}

main .section-civilian {
  background: -moz-linear-gradient(left, #eeeeee 10%, #c9d4d9 100%);
  background: -webkit-linear-gradient(left, #eeeeee 10%, #c9d4d9 100%);
  background: linear-gradient(to left, #eeeeee 10%, #c9d4d9 100%);
}

main .section-civilian p {
  color: #111;
}

main .section-civilian h1 {
  text-align: right;
}

main .section-civilian h2 {
  color: #111;
  text-align: right;
}

main .section-container {
  background: -moz-linear-gradient(right, #777 10%, #ddd 100%);
  background: -webkit-linear-gradient(right, #777 10%, #ddd 100%);
  background: linear-gradient(to right, #777 10%, #ddd 100%);
}

main .section-container p {
  color: #111;
}

main .section-container h1 {
  text-align: left;
  font-family: Audiowide, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main .section-container h2 {
  color: #111;
  text-align: left;
}

main .section-iveco {
  background: -moz-linear-gradient(left, #777 10%, #000 100%);
  background: -webkit-linear-gradient(left, #777 10%, #000 100%);
  background: linear-gradient(to left, #777 10%, #000 100%);
}

main .section-iveco p {
  color: #ddd;
}

main .section-iveco h1 {
  text-align: right;
}

main .section-iveco h2 {
  color: #ddd;
  text-align: right;
}

main .section-iveco .iveco-logo {
  float: right;
  width: 30vh;
}

main .section-iveco .iveco-logo img {
  width: 100%;
  margin-top: -20px;
  margin-bottom: -25px;
}

main .section-iveco .iveco-subtitle {
  float: inline-end;
}

.section-partners {
  background-color: white;
}

main .section-partners h1 {
  text-align: left;
}

main .section-partners h2 {
  color: #111;
  text-align: left;
}

main .section-partners .partner-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

main .section-partners .partner-logo {
  margin-bottom: 20px;
}

main .section-gallery .gallery-image {
  margin-bottom: 20px;
  /* max-width: 200px; */
}

main .section-gallery .gallery-image img {
  /* max-width: 280px; */
  max-height: 26vh;
  margin: auto;
  display: block;
  border: rgb(255, 253, 231) solid 6px;
}

main .section-gallery .gallery-image-row {
  margin-bottom: 20px;
  /* transform: scale(1.05);
    transition: all 0.3s ease-in-out; */
}

main .section-gallery {
  background: -moz-linear-gradient(left, #000 10%, #4b4b4b 100%);
  background: -webkit-linear-gradient(left, #000 10%, #4b4b4b 100%);
  background: linear-gradient(to left, #000 10%, #4b4b4b 100%);
}

main .section-gallery p {
  color: #ddd;
  text-align: center;
  font-size: 13px;
}

main .section-gallery h1 {
  color: #aaa;
  text-align: right;
}

main .section-gallery h2 {
  color: #aaa;
  text-align: right;
}


main .section-about {
  background: -moz-linear-gradient(left, #eee 10%, #818c86 100%);
  background: -webkit-linear-gradient(left, #eee 10%, #818c86 100%);
  background: linear-gradient(to left, #eee 10%, #818c86 100%);
}

main .section-about p {
  color: #111;
}

main .section-about h1 {
  text-align: right;
}

main .section-about h2 {
  color: #444;
  text-align: right;
}

main .section-about p .mobile-align {
  text-align: left;
}

main .section-about h2 .protector-sweden {
  font-family: Audiowide, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
}

main .section-about p .protector-sweden {
  font-family: Audiowide, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
}


main .section-about .about-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

main .section-about .about-logo {
  margin-bottom: 20px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #c9d4d9; */
  /* background: -webkit-linear-gradient(left, #000529 1%,#023e59 24%,#024b6b 67%,#007aaf 100%); */
  /* background: linear-gradient(to right, #000529 1%,#023e59 24%,#024b6b 67%,#007aaf 100%); */
  /* opacity: 0.85; */
  z-index: -1;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer {
  /* background: url(../img/footer-bg.jpg) no-repeat center / cover; */
  position: relative;
  z-index: 1;
  padding-bottom: 0px;
}

footer section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-area {
  /* padding-top: 50px;
    padding-bottom: 50px; */
  z-index: 1;
  position: relative;
  background-color: #454545 !important;
  /* background-attachment: fixed; */
  background-size: contain;
  overflow: hidden;
  font-size: 12px;
  text-align: left !important;
  color: #ffffff !important;
}

.protector-logo-footer {
  height: 90px !important;
}

@media screen and (max-width: 526px) {
  main section .protector-image {
    display: block;
    width: 100%;
    height: auto;
  }

  main section h1 {
    font-size: 48px;
  }

  main .section-partners .partner-image {
    max-width: 45%;
  }

  main .section-about .about-image {
    max-width: 45%;
  }

  main .section-about .mobile-align {
    text-align: center;
  }
}

@media (max-width:1200px) {
  main .section-gallery .gallery-image img {
    max-height: 20vh;
  }
}

@media (max-width:1200px) {
  amain .section-gallery .gallery-image img {
    max-height: 20vh;
  }
}

@media (max-width:991px) {
  main .section-gallery .gallery-image img {
    max-height: 26vh;
  }
}

@media (min-height: 1050px) and (min-width:1200px) {
  main .section-gallery .gallery-image img {
    max-height: 24vh;
  }
}

/* @media (min-width: 768px) {
    .navbar {
      opacity: 1 !important;
      transition: opacity 0.4s;
    }
  } */
/*# sourceMappingURL=main.css.map */
/* .main-annby1 {
  display: block;
  width: 100%;
} */

.annsign-text {
  display: contents;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}