* {
  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 .topmenu-item {
  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 {
  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;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
}

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%;
}

/* Hide submenu by default */
header .container .navbar .menu .dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 0px;

}

/* Show submenu on hover */
header .container .navbar .menu .dropdown:hover .submenu {
    display: block;
}

/* Style submenu items */
.submenu li {
    display: block;
    color: #000;
    /* Basnivå text */
    text-decoration: none;
    padding: 10px 25px;
    font-size: 18pt;
    font-weight: 600;
}

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

.submenu li a:hover {
    color: #fff;
    /* Hover text */
    background-color: #333;
    /* Hover bakgrund */
    border-radius: 8px;
}

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;
  margin-top: 4px;
}

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

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

main section .map-item .logo-link {
  margin: auto;
  margin-top: 4px;
}

main section .map-item .text a {
  font-weight: 500;
  text-decoration: none;
  font-size: 17px;
}
main section .map-item .text .description-placeholder a {
  font-weight: normal;
  text-decoration: none;
  font-size: 12px;
}

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-item .buildinglist {
    max-width: 200px;
  }

  main section .logo-item .image-placeholder {
    width: 200px;
  }

  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;
}

.buildinglist {
  /* height: 60px; */
  width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.buildinglist img {
  width: 100px !important;
  height: auto !important;
}

.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-sparoleder {
  background-image: url('../img/content_ls/sparoleder1_bg.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #333;
}

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: 15px;
  line-height: 20px;
  font-weight: 300;
}

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

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

main .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;
}
/* Toggle points button */
.toggle-points-btn {
    position: fixed; /* fixed to viewport */
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 4000; /* above map */
    transition: background 0.2s, transform 0.15s;
}
.toggle-points-btn:hover { 
  /* background:#f2f2f2; */
  color: #fff;
  /* Hover text */
  background-color: #333;
  /* Hover bakgrund */
  /* border-radius: 8px; */
}
.toggle-points-btn:active { transform: scale(0.9); }
/* Help overlay styles */
.help-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    backdrop-filter: blur(2px);
}
.help-dialog {
    background: #ffffff;
    max-width: 480px;
    width: 90%;
    padding: 24px 28px 26px;
    border-radius: 14px;
    box-shadow: 0 6px 28px -4px rgba(0,0,0,0.35);
    font-size: 14px;
    line-height: 1.4;
    color: black;
}
.help-dialog button {
    border:none;
    padding:8px 18px;
    cursor:pointer;
    font-size: 32px;
    transition: filter 0.2s, transform 0.1s;
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    color: green;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.help-dialog button:hover { 
    filter: brightness(1.05);
    color: #fff;
    /* Hover text */
    background-color: #333;
    /* Hover bakgrund */
    /* border-radius: 8px; */
}
.help-dialog button:active { 
    transform: translateY(1px); 
}
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-annlistedbuildings .map-item img {
        max-width: 100%;
        /* height: 50px; */
        object-fit: cover;
        /* border-radius: 4px; */
        margin: auto;
        margin-top: 10px;
        display: block;
    }

    main .section-annlistedbuildings .map-item {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }

    main .section-annlistedbuildings .map-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    main .section-annlistedbuildings .map-link {
        margin-right: 1rem;
        flex-shrink: 0;
    }

    main .section-annlistedbuildings .orglist {
        vertical-align: top;
    }

    main .section-annlistedbuildings .image-placeholder {
        width: 100px;
        /* height: 50px; */
        background-color: #99a4af;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #666;
        font-size: 12px;
        text-align: center;
    }
    main .section-annlistedbuildings .description-placeholder {
        /* width: 100px; */
        /* height: 50px; */
        /* background-color: #99a4af; */
        /* border: 1px solid #ddd; */
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* border-radius: 4px; */
        /* color: #666; */
        /* font-size: 12px !important; */
        /* text-align: center; */
    }
    main .section-annlistedbuildings .description-placeholder .text .a {
        font-size: 12px;
    }
    /* Positioning for the map link button */
    main .section-annlistedbuildings .map-text-block {
        position: relative;
    }
    main .section-annlistedbuildings .map-text-block .name-line {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 4px;
    }
    main .section-annlistedbuildings .map-link-button {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 6px;
        background: #fff;
        color: #333;
        border: 1px solid #ccc;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        text-decoration: none;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        margin-left: auto;
    }
    main .section-annlistedbuildings .map-link-button:hover {
        background: #333;
        color: #fff;
        border-color: #333;
        text-decoration: none;
    }
    @media (max-width: 600px) {
        main .section-annlistedbuildings .map-link-button {
            font-size: 11px;
            padding: 5px 8px;
        }
    }

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, #b85517 10%, #4b4b4b 100%);
  background: -webkit-linear-gradient(left, #b85517 10%, #4b4b4b 100%);
  background: linear-gradient(to left, #b85517 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;
}

.popup-title {
    margin: 4px;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.2 !important;
    color: #111 !important;
}
.popup-description {
    margin: 4px;
    margin-top: 20px;
    font-size: 15px !important;
    font-weight: 300;
    line-height: 1.6 !important;
    color: #333 !important;
}
.map-popup-close {
    position:absolute;
    top:10px;
    right:10px;
    width:50px;
    height:50px;
}
.map-popup-button {
    border:none;
    background:#fff;
    border-radius:5px;
    box-shadow:0 2px 8px rgba(0,0,0,0.2);
    font-size:36px;
    cursor:pointer;
    z-index:100;
}
.map-popup-button:hover { 
  /* background:#f2f2f2; */
  color: #fff;
  /* Hover text */
  background-color: #333;
  /* Hover bakgrund */
  border-radius: 8px;
}
.map-link-button {
  height: 30px;
  width: 88px;
  font-size:11px !important;
  color: #000 !important;
  font-weight: normal !important;
  border:none;
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
  font-size:36px;
  cursor:pointer;
  z-index:100;
  align-content: center;
}
.map-link-button:hover { 
  /* background:#f2f2f2; */
  color: #fff;
  /* Hover text */
  background-color: #333;
  /* Hover bakgrund */
  border-radius: 8px;
}

/* Mobile fullscreen popup */
@media (max-width: 767px) {
    .map-popup {
        position: fixed !important;
        top: 3vh !important;
        left: 0 !important;
        width: 94vw !important;
        height: 94vh !important;
        max-width: 94vw !important;
        max-height: 94vh !important;
        border-radius: 5px !important;
        box-shadow: none !important;
        z-index: 9999 !important;
        padding: 24px 12px 12px 12px !important;
        font-size: 16px !important;
        pointer-events: auto !important;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: center;
    }
    .map-popup img {
        /* width: 90vw !important; */
        max-width: 92% !important;
        max-height: 92% !important;
    }
    .map-popup-close {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 32px;
        background: #fff;
        border: none;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 10000;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .popup-title {
        margin: 4px;
        font-size: 20px !important;
        font-weight: 700;
        line-height: 1.2 !important;
        color: #111 !important;
    }
    .popup-description {
        margin: 4px;
        font-size: 15px !important;
        font-weight: 300;
        line-height: 1.6 !important;
        color: #333 !important;
    }
}

/* Center map-popup on screen for mobile */
@media (max-width: 767px) {
  .map-popup {
    /* justify-content: center;
    align-items: center;
    text-align: center; */
    margin-left: 3vw;
    margin-right: 3vw;
  }
  .map-popup > * {
    margin-left: 3vw;
    margin-right: 3vw;
  }
  /* Toggle points button */
  .toggle-points-btn {
      bottom: 20px;
      right: 20px;
      border-radius: 15px;
  }
}

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, #b85517 10%, #4b4b4b 100%);
  background: -webkit-linear-gradient(left, #b85517 10%, #4b4b4b 100%);
  background: linear-gradient(to left, #b85517 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;
}