* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: white;
  overflow-x: hidden;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #b42126;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

.container {
  display: none;
  position: relative;
  width: 80%;
  margin: auto;
  overflow-x: hidden;
}

.navbar {
  width: 80%;
  height: 70px;
  border: 1px solid rgb(69, 69, 69);
  border-radius: 10px;
  position: fixed;
  top: 10px;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  z-index: 99999999999999;
  background-color: white;
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
}
.navbarmobile {
  display: none;
}

.navbar .logo {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.navbar .logo img {
  height: 100%;
}

.navbar .navlinks {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .navlinks a {
  color: rgb(35, 35, 35);
  text-decoration: none;
  font-weight: 500;
}

.navbar .navbuttons {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .navbuttons a {
  color: rgb(35, 35, 35);
  text-decoration: none;
  font-weight: 500;
}
.navbar .navbuttons a:nth-child(1) {
  border: 1px solid #b42126;
  color: #b42126;
  padding: 10px 15px;
  border-radius: 10px;
}
.navbar .navbuttons a:nth-child(2) {
  background-color: #b42126;
  border: 1px solid #b42126;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
}

.content {
  width: 100%;
  margin-top: 90px;
  padding: 5px;
}

footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.7rem;
  padding: 15px;
}
footer .footer-top a {
  color: rgb(35, 35, 35);
  text-decoration: none;
}
footer .footer-mid {
  background-color: black;
  width: 80%;
  height: 1px;
  border-radius: 2px;
}
footer .footer-bottom {
  text-align: center;
  font-size: 1rem;
}

.content .hero {
  border-radius: 15px;
  position: relative;
  height: 400px;
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
}
.content .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.content .hero div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content .hero div * {
  color: white;
  margin: 5px;
}
.content .hero div h5 {
  border-bottom: 1px solid #b42126;
}

.content .sgletter {
  border: 1px solid rgb(69, 69, 69);
  border-radius: 15px;
  padding: 15px;
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
}
.content .sgletter img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #b42126;
}
.content .sgletter p {
  color: rgb(35, 35, 35);
  font-weight: 500;
}
.content .sgletter p a {
  color: #b42126;
}

.collapsible {
  background-color: white;
  color: rgb(35, 35, 35);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border: 1px solid rgb(69, 69, 69);
  margin-top: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.collapsible img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #b42126;
}
.active,
.collapsible:hover {
  background-color: #b4212638;
  color: rgb(0, 0, 0);
}
.collapsiblecontent {
  margin-top: 15px;
  border-radius: 10px;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #b4212638;
}
.collapsiblecontent img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 10px;
}
.collapsible:after {
  position: absolute;
  content: "+"; /* Unicode character for "plus" sign (+) */
  font-size: 1rem;
  color: black;
  float: right;
  right: 18px;
}
.active:after {
  content: "-"; /* Unicode character for "minus" sign (-) */
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-block: 15px;
}
.team-row .member {
  width: 45%;
  margin: auto;
  border: 1px solid rgb(35, 35, 35);
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.team-row .member img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid #b42126;
  object-fit: cover;
}
.team-row .member div {
  display: flex;
  flex-direction: column;
}
.team-row .member div .name {
  font-weight: 700;
}
.team-row .member div .role {
  font-style: italic;
}
.team-row .member div p {
  font-size: 0.8rem;
  font-style: italic;
  word-wrap: break-word;
}

.navbarmobile {
  width: 80%;
  height: 70px;
  border: 1px solid rgb(69, 69, 69);
  border-radius: 10px;
  position: fixed;
  top: 10px;
  padding: 5px 15px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 99999999999999;
  background-color: white;
  -webkit-box-shadow: 8px 8px 10px -3px #000000;
  box-shadow: 8px 8px 10px -3px #000000;
}
.navbarmobile img {
  height: 100%;
  cursor: pointer;
}

.mobile-hamburger {
  width: 2rem;
  height: 2rem;
  display: none;
  z-index: 99999999;
}
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile-hamburger .line1 {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 3px;
  background-color: rgb(35, 35, 35);
  transition: all 0.5s ease-in-out;
}
.mobile-hamburger .line2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 3px;
  background-color: rgb(35, 35, 35);
  transition: all 0.5s ease-in-out;
}
.mobile-hamburger .line3 {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 3px;
  background-color: rgb(35, 35, 35);
  transition: all 0.5s ease-in-out;
}
.mobilewrapper {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 999999;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
}

.mobilewrapper .navlinks {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.mobilewrapper .navlinks a {
  color: rgb(35, 35, 35);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
}

.mobilewrapper .navbuttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobilewrapper .navbuttons a {
  color: rgb(35, 35, 35);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
}
.mobilewrapper .navbuttons a:nth-child(1) {
  border: 1px solid #b42126;
  color: #b42126;
  padding: 10px 15px;
  border-radius: 10px;
}
.mobilewrapper .navbuttons a:nth-child(2) {
  background-color: #b42126;
  border: 1px solid #b42126;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
}

@media only screen and (max-width: 970px) {
  .navbarmobile {
    display: flex;
  }
  .navbar {
    display: none;
  }
  .mobile-hamburger {
    display: block;
  }
  .team-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-block: 15px;
  }
  .team-row .member {
    width: 100%;
    margin: auto;
    border: 1px solid rgb(35, 35, 35);
    -webkit-box-shadow: 8px 8px 10px -3px #000000;
    box-shadow: 8px 8px 10px -3px #000000;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
  .team-row .member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #b42126;
    object-fit: cover;
  }
  .team-row .member div {
    display: flex;
    flex-direction: column;
  }
  .team-row .member div .name {
    font-weight: 700;
    text-align: center;
  }
  .team-row .member div .role {
    font-style: italic;
    text-align: center;
  }
  .team-row .member div p {
    font-size: 0.8rem;
    font-style: italic;
    word-wrap: break-word;
  }
}
