body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Helvetica Neue";
}


.currentuserposition, .head, .policypoint{
    width: 86%;
    margin: 0 auto;
}
.currentuserposition{
    margin-top: 60px;
    color: rgba(32, 46, 72, 0.70);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.head{
    color: #3B3D40;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    margin-top: 41px;
}

.headinfo{
    font-size: 48px;
    color: #102D4A;
    font-style: normal;
    font-weight: 500;
}

.text{
    color: black;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 41px;
}
.pointer{
    cursor: pointer;
}

.flex{
    display: flex;
}

.policypoint{
    flex-direction: column;
    gap: 20px;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 40px;
}

.dropdown {
  position: relative;
  display: inline-block;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 250px;
  
  padding: 10px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  transform-origin: center top;
  animation: slideIn 0.3s ease-in-out;
  border-radius: 5px;
}

.dropdown-content a {
  color: black;
  padding: 12px 8px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
  left: -100px;
  
  
}
.droplink{
  position: relative;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 4px;
}


.droplink::after{
  content: '';
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 0;
  margin: 0 auto;
  width: 94%;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.right{
  justify-content: right;
}
.droplink:hover::after{
  border-color: black;
  opacity: 0.6;
}
  
  @keyframes slideIn {
    from {
      transform: scaleY(0);
    }
    to {
      transform: scaleY(1);
    }
  }

  .footer__logo{
    width: 10vw;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    
}

.footer__logo img{
    width: 100%;
    height: 100%;
}

  