/* GENERAL */
body {
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}



/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 600;
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 27px;
  
}

h3 {
  font-size: 21px;
}

p {
  font-size: 18px;
}

.lead, h1 {
  margin: 0;
  font-size: 27px;
  line-height: 40px;
}

.lead {
  font-weight: 300;
}

.button {
  margin-top: 60px;
}

.button.no-margin {
  margin-top: 1em;
}

.button a {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #FD476D;
  font-weight: 600;
  border: solid 2px #FD476D;
  padding: 10px 40px;
  margin-right: 19px;
  margin-bottom: 19px;
}

.button a:hover {
  color: #23307E;
  background-color: #FD476D;
}

a.link-external {
  color: white;
  padding-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

a.link-external:hover {
  color: #FD476D;
}

a.link-external:hover::after {
  background-image: url("arrow-up-right-red.svg");
}


a.link-external::after {
  content: "";
  height: 12px;
  width: 12px;
  display: inline-flex;
  background-image: url("arrow-up-right-white.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.event {
  margin-top: 20px;
  margin-bottom: 30px;
}

.event p {
  margin: 0 0 15px;
}

.event a.link-external {
  padding-top: 0;
}


/* CONAINER AND WRAPPER */
.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: auto;
}

.content {
  width: 100%;
  height: 100%;
}

.content-left {
  background-color: #14378C;
  height: auto;
}

.content-wrapper {
  max-width: 650px;
  height: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px 0 80px ;
  margin-bottom: 250px;
}

.content-wrapper.first-content {
  margin-bottom: 50px;
}

.main-part-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.tab-buttons {
  margin-top: 50px;
}

.content-right {
  width: 100%;
  height: 100vh;
  background-image: url('./DSC_5569.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position-y: top;
  position: sticky;
  top: 0;
}

.content-right.second-image {
  background-image: url('./20260219_SSP_BernSecurityDialogue_2.jpg');
}

.img-wrapper {
  height: 80px;
  width: 250px;
  margin-bottom: 75px;
  margin-left: -50px;
}

img {
  height: 100%;
  width: auto;
}

.tab-body {
  display: flex;
  flex-direction: column;
  padding: 80px 0 120px;
}

.tab-body#UpcomingEvents {
  padding: 100px 0 120px;
}

.wrapper-flyer {
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 50px;
}

.flyer-image {
  width: 100%;
  height: auto;
  border: solid 1px #FD476D;
}



/* MEDIA QUERY */
@media screen and (max-width: 1100px) {
  .button a {
      margin-right: 15px;
      margin-bottom: 15px;
    }
  
  .main-part-wrapper {
      justify-content: flex-start;
      height: unset;
      padding: 50px 0;
  }

  .container {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    width: unset;
    height: unset;
  }

  .content-right {
    height: 100%;
    min-height: 50vh;
    position: relative;
  }

  .content-wrapper {
    padding: 40px 30px 50px 30px ;
    margin-bottom: 50px;
  }

  .lead, h1 {
    font-size: 23px;
    line-height: 30px;
  }

  .img-wrapper {
    margin-bottom: 35px;
    margin-left: 0;
  }

  .tab-buttons a {
    margin-top: 15px;
  }

  .tab-body {
    padding: 60px 0 100px;
  }
}