@import url(./sweed.css);
@import url(./color.css);
@import url(./hambuger-menu.css);
@import url(/style/footer.css);
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    /* border: 2px solid red;
    
 */
 box-sizing: border-box;
}
.policy-hero-section{
height:100vh;
width: 100%;
margin-top: 80px;
border-top: 2px solid var(--gray200);
position: relative;
}
.sidebar{
    width: 300px;border-right: 2px solid var(--gray200);
    height: 100%;
    padding: 3rem 0 ;
    padding-top: 120px;
    background-color: var(--gray50);
}
.sidebar-item.active:hover{
    background: var(--background) !important;
}
.sidebar-item.active{
    background: var(--background) !important;
    border: 2px solid var(--gray200);
    color: var(--primary);
    border-right: none;
}
.sidebar-item{
    padding: 0 2rem;
    height: 50px;
    margin-right: -2px;
    background-color: transparent;
    margin-top: .5rem;
    color: var(--gray700)
}
.sidebar-item:hover{
    cursor: pointer;
    background-color: var(--gray200);
}
.sidebar-right{
    padding: 5rem 0;
    background-color: transparent;
    border-left: var(--gray200) 2px solid;
}
.policy-content{
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    overflow-y: scroll;
}
.sidebar-right-item-wrapper{
    margin-top: 20px;
}
.sidebar-head{
    padding: 1rem 2rem;
    letter-spacing: .5px;
    font-size: 1.1rem;
    color: var(--gray700);
    text-transform: uppercase;

}
.content-item.active{
display: flex;
flex-direction: column;
}
.content-item{
    padding: 2rem 5%;
    padding-top: 1rem;
    min-height: 80vh;
    display: none;
}

.sidebar-item-right:hover,.sidebar-item-right.active{
    color: var(--primary);
}
.sidebar-item-right{
    color: var(--gray700);
    padding: .5rem 2rem;
    height: 40px;
    font: 14px 500;
}
.content-heading{
    padding-top: 2rem;
}
/* Scroll 3 */
.sc3::-webkit-scrollbar {
    width: 5px;
    height: 10px;
  }
  .sc3::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 5px;
  }
  .sc3::-webkit-scrollbar-thumb {
    background-color: var(--blue500);
    border-radius: 3px;
  }
  p{
      font-size: 1rem 400;
      margin:  1rem 0 ;
      line-height: 1.4rem;
  }
  .menu__toggle {
    opacity: 0;
    display: none;
  }
  
  .menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  .menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  .menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  .menu__box1.show{
    visibility: visible;
    left: 0;
  }
  
  .menu__box2.show{
    visibility: visible;
    right: 0 !important;
  }
  
  .menu__btn {
    display: none;
    position: fixed;
    width: 26px;
    height: 26px;
    margin-left: 1rem;
    margin-top: 25px;
    cursor: pointer;
    z-index: 1;
  }
  .menu__btn2{
    right: 20px;
  }
  
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    background-color: #616161;
  
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
  
    color: #333;
  
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
  
    text-decoration: none;
  
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }
  .menu_toggle_con {
      position: fixed;
      display: none;
      width: 100%;
      height: 40px;
      background-color: var(--background);
  }

@media screen and (max-width: 992px) {
   
 .sidebar-right{
     display: none;
 }

}

@media screen and (max-width: 696px) {
   
 .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: var(--gray200);
    margin: 0;
 
    transition-duration: .25s;
  }

    .menu__toggle ,
    .menu__btn {
      display: block;
  }
   
}
@media screen and (max-width: 500px) {

}
