body {
  background-color: white;
}



.header {
  position: sticky;
  top: 0;
  height: 70px;
  background: #51087E;
  margin:auto;
   z-index: 4;
}

.header_left{
float: left;
margin:20px;
display: inline-block;
color:white;
}

.header_left a{
color: white;
  text-decoration: none;
}

.header_right{
float: right;
margin:20px;
display: inline-block;
color:white;
}

.collapsible {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.header_element {
float: right;
margin:20px;
display: inline-block;
color:white;
}

.content {
  width:100%;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.first {
  background-image: url("../images/atty_desk.jpg");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  width: 100%;
  height: 800px;
  margin: auto;
  text-align: center;
}

.first h3{
  padding-top:400px;
  margin:0;
  color: white;
  font-size:80px;
}

.first p{
  color: white;
  font-size:20px;
}

.features {
  width: 100%;
  background-color: #51087E;
  color: white;
  margin: 0;
  padding: 0;  
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.flex-container > div {
  background-color: #f1f1f1;
  color: black;
  width: 300px;
  margin: 10px;
  text-align: center;
}

.flex-container-library {
display: flex;
width: 50%;
margin: auto;
text-align: center;
}

.flex-child-library-left {
    flex: 1;
    border: 2px solid black;
    border-radius: 15px 50px;
    margin-right: 20px;
}

.flex-child-library-right:first-child {
} 

.pricing{
  padding: 20px 0 20px 0;

  background-color: #51087E;
  color: white;
}

.flex-container-pricing {
display: flex;
width: 50%;
margin: auto;
}

.flex-child-pricing-left {
flex: 1;
/*border: 2px solid white;
border-radius: 25px 25px 25px 25px;*/
margin-right: 20px;
}

.flex-child-pricing-right {
flex: 1;
/*border: 2px solid white;
border-radius: 25px 25px 25px 25px;*/
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel{
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p{
  text-align: justify;
}

.carousel-indicators li.active::after {
  display: none !important;
}

.recent_documents {
  margin: 0;
  padding: 20px 0 20px 0;
  text-align:center;
  background-color: #51087E;
  color: white;
}

.recent_documents table{
margin: 0 auto 0 auto; /* top, right, bottom, left */
width: 60%;
}

.recent_documents table td {
  text-align: left;
}

footer{
  background-color: #51087E;
 color: #f1f1f1; 
 padding: 40px 20px; 
 font-family: 
 sans-serif;
}

.footer_container{
max-width: 1200px; 
margin: auto; 
display: flex; 
flex-wrap: wrap; 
justify-content: space-between;
}

.footer_col{
flex: 1 1 200px; 
margin-bottom: 20px;
}

.footer_list{
list-style: none; 
padding: 0;
}

.footer_list li a{
color: #f1f1f1; 
text-decoration: none;
}