body{
    background: #f2f2f2;
}

header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

footer{
	position: fixed;
	bottom:0;
}

.subtitle{
    color: #6c757d;
    font-family: sans-serif;
    letter-spacing: 2px;
    text-align: center;
}
.title{
    color: #007333;
}

.scrollable {
    max-height: 404px;  /*Set max height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
  }
  .scrollablefaq {
    max-height: 304px;  /*Set max height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
  }
.c_sidebar{

    min-height: calc(100vh);
    background: -webkit-gradient(linear, left top, left bottom, from(#e6e5f2), to(#83e6af));
    background: linear-gradient(to bottom, #e6e5f2, #83e6af);
    font-family: "Rubik", sans-serif;
    padding: 0;
    width: 260px;
    z-index: 11;
    transition: width 0.25s ease, background 0.25s ease;
    -webkit-transition: width 0.25s ease, background 0.25s ease;
    -moz-transition: width 0.25s ease, background 0.25s ease;
    -ms-transition: width 0.25s ease, background 0.25s ease;
}

.table_title{
    color: #36486b;
    margin: 16px;
    display: flex;
    margin-bottom: .75rem;
    text-transform: capitalize;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    align-items: center;
    justify-content: center;
}



.pdf{
    border: 2px solid #e6e6e6;
    background-color: #fdfdfd;
}

.main_body{
    background: #f2f2f2;
    padding: 0.75rem 0.25rem;
    width: 100%;
}


@media only screen and (max-width: 770px) {
    .mobile-hidden {
        display: none;
    }
    .col-10{
        width: 100% !important;
        height: 100vh;
    }
    .col-4{
        width: 100% !important;
        align-items: center;
    }

    header{
        margin-top: 15%;
    }
}





.title_style {
	--color1: #36486b;
	--color2: #bccad6;
	font-family: serif;
    letter-spacing: 1px;
	text-align: center;
	font-size: 46px;
	background: repeating-linear-gradient(
		45deg,
		var(--color1),
		var(--color1) 50px,
		var(--color2) 50px,
		var(--color2) 60px
	);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	animation: 40s linear 0s infinite move;
}

@keyframes move {
	from {
		background-position: 0px;
	}

	to {
		background-position: 1000px;
	}
}


.toon {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-6);
  font-size: var(--font-size-5);
  color:#d1d1d1;
  background: #36486b;
;
  border: 0;
  padding: var(--size-4) var(--size-8);
  transform: translateY(calc(var(--y, 0) * 1%)) scale(var(--scale));
  transition: transform 0.1s;
  position: relative;
}

.toon:hover {
  --y: -10;
  --scale: 1.1;
  --border-scale: 1;
}

.toon:active {
  --y: 5%;
  --scale: 0.9;
  --border-scale: 0.9, 0.8;
}


  
  .btn1 {
    background: #36486b;
   
    font-family:sans-serif;
    position: relative;
    transition: 1s;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
  }

  .btnfont2{
    height: 40px;
    min-width: 150px;
    border: none;
    border-radius: 20px;
    color: #f2f2f2;
    font-size: 18px;

  }

  .btnfont1{
    height: 32px;
    min-width: 100px;
    border: none;
    border-radius: 20px;
    color: #f2f2f2;
    font-size: 14px;
    font-family: sans-serif;
  }


  
  #btn1 #circle {
    width: 5px;
    height: 5px;
    color: #36486b;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
    transition: 500ms;
  }
  
  .noselect {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  }
  
  #btn1:hover {
    background: transparent;
    color: #36486b;
  }
  
  #btn1:hover #circle {
    color: #36486b;
    height: 40px;
    width: 150px;
    left: 0;
    border-radius: 30px;
    border-bottom: 2px solid #36486b;
    border-top: 2px solid #36486b;
  }

  
 



  .center{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    
  }