body {
  overflow-x: hidden;
  font-family: "Montserrat";
  margin: 0;
  background-color: black;
}

.navBarContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 55;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #000000;
  border-bottom: 1px solid white;
}

.topNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000000;
  border-bottom: 1px solid white;
}

.topNavlogo {
  cursor: pointer;
}

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

@media only screen and (max-width: 850px) {
  .topNavLogoContainer {
    display: initial;
    width: 18%;
    margin-left: 0.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .topNavLogoContainer {
    width: 25%;
  }
}

@media only screen and (max-width: 400px) {
  .topNavLogoContainer {
    width: 32%;
  }
}

.ham {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  margin-right: 0.5rem;
  border: none;
  cursor: pointer;
  color: white;
}

.menuX {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

.sideNav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: black;
  width: 300px;
  height: 100vh;
  overflow: hidden;
  color: white;
  transform: translateX(+100%);
  transition: transform 0.2s ease;
  border-left: 1px solid white;
}

.showNav {
  transform: translateX(0);
}

.sideNav ul {
  height: 100%;
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-top: 5rem;
  padding-inline-start: unset;
}

.sideNav ul li a {
  display: block;
  color: white;
  padding-bottom: 10px;
  margin-top: 1rem;
  border-bottom: 2px solid white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: unset;
  padding-right: unset;
}

.overlay {
  position: fixed;
  display: none;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100vh;
}

.showOverlay {
  display: block;
}

@media only screen and (max-width: 850px) {
  .mobileNav {
    display: initial;
    z-index: 9999;
  }
}

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

@media only screen and (min-width: 850px) {
  .desktopNav {
    margin: 15px 30px 15px 0;
  }
}

@media only screen and (max-width: 849px) {
  .desktopNav {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .coworkersWrapper {
    justify-content: space-around;
  } /* IE10 */
  .vCardImg {
    width: 15% !important;
  }
  .linkedIn {
    align-items: center;
  }
}

.firstSection {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  position: relative;
}

.bg1 {
  background-image: url("background1.jpg");
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg2 {
  background-image: url("background2.jpg");
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg3 {
  background-image: url("background3.jpg");
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#cf {
  position: relative;
  height: 100%;
  width: 100%;
}

#cf div {
  animation-name: cfFadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 25s;
  animation-direction: alternate;
  position: absolute;
  -webkit-tap-highlight-color: unset;
}

#cf div:hover {
  opacity: unset;
}

#cf div:nth-of-type(1) {
  animation-delay: 24s;
}

#cf div:nth-of-type(2) {
  animation-delay: 16s;
}

#cf div:nth-of-type(3) {
  animation-delay: 8s;
}

@keyframes cfFadeInOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.logoContainer {
  margin: 15px 0 15px 15px;
  width: 15%;
}

@media only screen and (max-width: 849px) {
  .logoContainer {
    display: none;
  }
}

.logo:hover {
  opacity: 1;
}

a {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 10px;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

a:visited {
  color: white;
}

@media only screen and (max-width: 1000px) {
  a {
    font-size: 16px;
  }
}

.secondSection {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  padding-bottom: 20%;
}

@media only screen and (min-width: 250px) {
  .secondSection {
    padding-bottom: 0%;
  }
}

@media only screen and (min-width: 700px) {
  .secondSection {
    padding-bottom: 20%;
  }
}

.competence {
  width: 85%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media only screen and (min-width: 250px) {
  .competence {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

@media only screen and (min-width: 700px) {
  .competence {
    width: 100%;
    display: unset;
  }
}

.competenceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  list-style-type: none;
  font-size: 30px;
  padding: 1% 0 1% 0;
}

.competenceList li {
  color: white;
}

@media only screen and (min-width: 250px) {
  .competenceList {
    flex-direction: column;
    font-size: 18px;
    padding-top: 0;
    margin: 0;
  }
}

@media only screen and (min-width: 340px) {
  .competenceList {
    flex-direction: column;
    font-size: 22px;
  }
}

@media only screen and (min-width: 700px) {
  .competenceList {
    flex-direction: row;
    font-size: 14px;
  }
}

@media only screen and (min-width: 900px) {
  .competenceList {
    font-size: 15px;
  }
}

@media only screen and (min-width: 1000px) {
  .competenceList {
    font-size: 17px;
    padding: 1% 0 1% 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
  }
}

@media only screen and (min-width: 1100px) {
  .competenceList {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .competenceList {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1300px) {
  .competenceList {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1430px) {
  .competenceList {
    font-size: 25px;
  }
}

@media only screen and (min-width: 1530px) {
  .competenceList {
    font-size: 27px;
  }
}

@media only screen and (min-width: 1700px) {
  .competenceList {
    font-size: 28px;
  }
}

img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}
img:hover {
  opacity: 0.8;
}

li {
  padding-right: 28px;
}

@media only screen and (min-width: 300px) {
  li {
    padding: 0;
  }
}

@media only screen and (min-width: 700px) {
  li {
    padding-right: 8px;
  }
}

@media only screen and (min-width: 900px) {
  li {
    padding-right: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  li {
    padding-right: 13px;
  }
}

@media only screen and (min-width: 1100px) {
  li {
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1300px) {
  li {
    padding-right: 14px;
  }
}

@media only screen and (min-width: 1800px) {
  li {
    padding-right: 28px;
  }
}

.thirdSection {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  padding-top: 15%;
  padding-bottom: 20%;
}

@media only screen and (min-width: 250px) {
  .thirdSection {
    padding-bottom: 0%;
    padding-top: 0%;
    height: auto;
  }
}

@media only screen and (min-width: 700px) {
  .thirdSection {
    padding-bottom: 20%;
    padding-top: 15%;
  }
}

.coworkersWrapper {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

@media only screen and (max-width: 1000px) {
  .coworkersWrapper {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
}

.coworkers {
  width: 18%;
  height: auto;
}

@media only screen and (min-width: 250px) {
  .coworkers {
    padding-bottom: 50%;
    width: 80%;
  }
}

@media only screen and (min-width: 701px) {
  .coworkers {
    padding-bottom: 65%;
    width: 48%;
  }
}

@media only screen and (min-width: 901px) {
  .coworkers {
    padding-bottom: 65%;
    width: 42%;
  }
}

@media only screen and (min-width: 1000px) {
  .coworkers {
    padding: 0;
    width: 18%;
  }
}

.coworkersTxt {
  width: 100%;
  max-height: 200px;
  min-height: 120px;
  line-height: 1.5;
}

.vCard {
  display: flex;
}

.vCardImg {
  width: 5%;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(199deg)
    brightness(104%) contrast(101%);
}

.vCardTxt {
  padding: 0;
  text-transform: none;
  font-size: 15px;
}

.linkedIn {
  display: flex;
}

.linkedInTxt {
  font-size: 15px;
}

.linkedInImg {
  width: 5%;
  padding-right: 1%;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(199deg)
    brightness(104%) contrast(101%);
}

.coworkersLinkedIn {
  text-transform: none;
  text-decoration: none;
  color: black;
  padding: 0;
  height: auto;
}

p {
  font-size: 20px;
}

::selection {
  background: rgba(0, 0, 0, 0.4);
}

img {
  width: 100%;
}

.fourthSection {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  padding-bottom: 28%;
}

@media only screen and (min-width: 250px) {
  .fourthSection {
    height: 100vh;
  }
}

@media only screen and (min-width: 700px) {
  .fourthSection {
    height: 100vh;
  }
}

.agencyInfo {
  display: flex;
  width: 85%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media only screen and (max-width: 700px) {
  .agencyInfo {
    width: 100%;
  }
}

.agencyTxt {
  font-size: 35px;
  text-align: center;
  color: white;
}

@media only screen and (max-width: 700px) {
  .agencyTxt {
    font-size: 16px;
    padding: 10px;
  }
}
.fifthSection {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 28%;
}

.careerInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 4% 0;
}

@media only screen and (max-width: 700px) {
  .careerInfo {
    width: 100%;
  }
}

.careerTxt {
  font-size: 30px;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 700px) {
  .careerTxt {
    font-size: 16px;
    padding: 10px;
  }
}

.careerMailClass {
  text-decoration: none;
  color: black;
  font-size: 30px;
  cursor: pointer;
  text-transform: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  display: inline;
}

@media only screen and (min-width: 200px) {
  .careerMailClass {
    padding: 0px;
    line-height: 0px;
  }
}

@media only screen and (max-width: 700px) {
  .careerMailClass {
    font-size: 16px;
  }
}

.sixthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 700px !important;
  width: 100% !important;
}

@media only screen and (min-width: 250px) {
  .mapouter {
    height: 400px !important;
  }
}

@media only screen and (min-width: 700px) {
  .mapouter {
    height: 700px !important;
  }
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 700px !important;
  width: 100% !important;
}

@media only screen and (min-width: 250px) {
  .gmap_canvas {
    height: 400px !important;
  }
}

@media only screen and (min-width: 700px) {
  .gmap_canvas {
    height: 700px !important;
  }
}

.contactInfo {
  width: 100%;
  min-height: 90px;
  height: 100px;
  max-height: 150px;
  display: flex;
  justify-content: space-between;
}

.footer {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 250px) {
  .footer {
    width: 100%;
  }
}

@media only screen and (min-width: 700px) {
  .footer {
    width: 80%;
  }
}

.logoFooter {
  width: 100%;
  object-fit: cover;
  margin-top: 14px;
}

.logoFooter:hover {
  opacity: 1;
}

.gbgOrg {
  line-height: 2.2;
  font-size: 14px;
  color: white;
}

@media only screen and (min-width: 250px) {
  .gbgOrg {
    font-size: 11px;
    padding: 0 0 0 3px;
    line-height: 1.5;
  }
}

@media only screen and (min-width: 330px) {
  .gbgOrg {
    font-size: 11px;
    padding: 0 0 0 3px;
    line-height: 2;
  }
}

@media only screen and (min-width: 700px) {
  .gbgOrg {
    padding-left: 0px;
    font-size: 14px;
    line-height: 2.2;
  }
}

.mailLinkFooter {
  color: black;
  padding: 0;
  font-size: 14px;
  text-transform: none;
}

@media only screen and (min-width: 250px) {
  .mailLinkFooter {
    font-size: 11px;
  }
}

@media only screen and (min-width: 700px) {
  .mailLinkFooter {
    font-size: 14px;
  }
}

.phoneNumberFooter {
  padding: 0;
  font-size: 14px;
}

@media only screen and (min-width: 250px) {
  .phoneNumberFooter {
    font-size: 11px;
  }
}

@media only screen and (min-width: 700px) {
  .phoneNumberFooter {
    font-size: 14px;
  }
}

.copyright {
  display: flex;
  align-self: flex-start;
}

.flexFooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

@media only screen and (min-width: 250px) {
  .flexFooter {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 700px) {
  .flexFooter {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 800px) {
  .flexFooter {
    padding-top: 0px;
  }
}

.linkedInImgFooter {
  width: 100%;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(199deg)
    brightness(104%) contrast(101%);
}

.smallTxtFooter {
  font-size: 13px;
  line-height: 1.8;
  color: white;
}

@media only screen and (min-width: 250px) {
  .smallTxtFooter {
    font-size: 10px;
  }
}

@media only screen and (min-width: 700px) {
  .smallTxtFooter {
    font-size: 13px;
  }
}

.coworkersModal {
  width: 100%;
  height: auto;
  display: flex;
}

@media only screen and (min-width: 250px) {
  .coworkersModal {
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (min-width: 650px) {
  .coworkersModal {
    align-items: unset;
  }
}

@media only screen and (min-width: 1000px) {
  .coworkersModal {
    flex-direction: row;
    justify-content: unset;
  }
}

.modalImg {
  width: 50%;
  object-fit: cover;
}

@media only screen and (min-width: 250px) {
  .modalImg {
    width: 100%;
  }
}

@media only screen and (min-width: 1000px) {
  .modalImg {
    width: 50%;
  }
}

.modalImg:hover {
  opacity: 1;
}

.modalImgUlrika {
  width: 45%;
  object-fit: cover;
}

@media only screen and (min-width: 250px) {
  .modalImgUlrika {
    width: 100%;
  }
}

@media only screen and (min-width: 1000px) {
  .modalImgUlrika {
    width: 45%;
  }
}

.modalImgUlrika:hover {
  opacity: 1;
}

.modalTxtExperience {
  width: 100%;
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
}

@media only screen and (min-width: 250px) {
  .modalTxtExperience {
    width: 100%;
    margin: 0;
    padding-left: 0px;
    padding-top: 3%;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .modalTxtExperience {
    width: 100%;
    padding-left: 20px;
    font-size: 16px;
    padding-top: 0px;
  }
}

.modalTxtEducation {
  width: 100%;
  margin: 0;
  padding-left: 20px;
  padding-top: 40px;
  font-size: 16px;
}

@media only screen and (min-width: 250px) {
  .modalTxtEducation {
    width: 100%;
    margin: 0;
    padding-left: 0px;
    padding-top: 40px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .modalTxtEducation {
    padding-left: 20px;
    font-size: 16px;
  }
}

.contactInfoCoworkers {
  width: 100%;
  margin: 0;
  padding-left: 20px;
  padding-top: 40px;
  font-size: 16px;
}

@media only screen and (min-width: 250px) {
  .contactInfoCoworkers {
    width: 100%;
    margin: 0;
    padding-left: 0px;
    padding-top: 40px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .contactInfoCoworkers {
    padding-left: 20px;
    font-size: 16px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 1000px) {
  .modal {
    padding-top: 50px;
  }
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 0px 20px 20px 20px;
  border: 1px solid #888;
  width: 80%;
}

@media only screen and (min-width: 250px) {
  .modal-content {
    overflow: auto;
    height: 85%;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 850px) {
  .modal-content {
    width: 65%;
    overflow: auto;
    height: 85%;
  }
}

@media only screen and (min-width: 1000px) {
  .modal-content {
    overflow: unset;
    height: auto;
    width: 80%;
  }
}

.closeChristian {
  color: black;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.closeChristian:hover,
.closeChristian:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.closeBo {
  color: black;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.closeBo:hover,
.closeBo:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.closeAmir {
  color: black;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.closeAmir:hover,
.closeAmir:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.closeUlrika {
  color: black;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.closeUlrika:hover,
.closeUlrika:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.closeMikael {
  color: black;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.closeMikael:hover,
.closeMikael:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.downloadLinks {
  display: flex;
  flex-direction: row;
}

@media only screen and (min-width: 250px) {
  .downloadLinks {
    display: unset;
    flex-direction: unset;
    padding-right: 3px;
  }
}

@media only screen and (min-width: 700px) {
  .downloadLinks {
    display: flex;
    flex-direction: row;
    padding-right: 0px;
  }
}

.links {
  text-transform: none;
  padding: 0 0 0 30px;
  margin: 0;
  height: 0;
}

@media only screen and (min-width: 250px) {
  .links {
    padding: 0 0 28px 0;
  }
}

@media only screen and (min-width: 700px) {
  .links {
    padding: 0 0 0px 30px;
  }
}

.mailLink {
  color: black;
  padding: 0;
  font-size: 16px;
  text-transform: none;
}

.smallMailLink:hover {
  color: gray;
}

@media only screen and (min-width: 250px) {
  .smallMailLink {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .smallMailLink {
    font-size: 16px;
  }
}
.phoneNumber {
  padding: 0;
  font-size: 16px;
}

.smallPhoneNumber {
  color: black;
}

.smallPhoneNumber:hover {
  color: gray;
}

@media only screen and (min-width: 250px) {
  .smallPhoneNumber {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .smallPhoneNumber {
    font-size: 16px;
  }
}

.readMore {
  color: white;
  cursor: pointer;
  font-size: 15px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

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

.smallTxt {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

@media only screen and (min-width: 250px) {
  .smallTxt {
    font-size: 11px;
  }

  .address {
    padding-left: 10px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 700px) {
  .smallTxt {
    font-size: 14px;
  }
  .address {
    padding-left: 0px;
  }
}

.colorClass {
  color: white;
}

.colorClass:hover {
  color: gray;
}

#myBtnChristian {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#myBtnAmir {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#myBtnUlrika {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#myBtnBo {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#myBtnMikael {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#myBtnChristianImg {
  cursor: pointer;
}

#myBtnAmirImg {
  cursor: pointer;
}

#myBtnMikaelImg {
  cursor: pointer;
}

#myBtnUlrikaImg {
  cursor: pointer;
  scale: 1.1;
  height: 100%;
  object-fit: cover;
}

#myBtnBoImg {
  cursor: pointer;
}

.emailWordBreak {
  word-break: break-all;
}
