
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}



body
{
  min-height: 100vh;
 
  font-family: 'Poppins', sans-serif;
}

.site-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

th{color:white;}

.dropdown {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  background: #773CBE;
}

.dropdown>li {
  display:inline-block;
 padding-left: 20px;
 padding-right: 20px;
    position: relative;
  background-color: #773CBE;
  z-index:2;
}

.dropdown>li>ul {
  visibility: hidden;
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-width: 150px;
  background-color: rgba(172, 172, 172, 0.721);
  z-index: -1;
  transition: all 1s ease-out;
  opacity: 0;
  top: 0px;
  transform:scale(0.5) rotate(359deg);

}

.dropdown>li:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 35px;
  transform:scale(1) rotate(0deg);
  background-color: rgb(172, 172, 172);
}


.dropdown a {
  display:inline-block;
  padding:10px;
  text-decoration: none;
  font-weight:bold;
  font-family:sans-serif;
  color: white;
}

.dropdown>li>ul a {
  white-space:nowrap;
  width:100%;
  box-sizing: border-box;
}

.dropdown a:hover {
  background-color: #666;
  color: white;
}


.faqs{
  margin-bottom: 1.5rem;
}
.question {
  font-weight: bold;
  color: #773CBE;
  font-family: poppins;
  text-align: center;
  font-size: 36px;
 
}
.answer {
  margin-top: 0.5rem;
  color: #000;
  font-family: poppins;
  font-size: 24px;
  text-align :left;
  padding-left: 10px;
  padding-right: 10px; 
}

.item1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.247), rgba(0, 0, 0, 0.258)), url("Images/unicornhero.jpg");
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.item2 {
 
  border-bottom: 2px solid #773CBE;
  border-top: 2px solid #773CBE;
  border-left: 2px solid #773CBE;
  border-right: 2px solid #773CBE;
  padding: 10px;
 
}

.item2 p{
 
  text-align :left;
  margin: 10px;
}  

.item3 {
 
  border-bottom: 2px solid #773CBE;
  border-top: 2px solid #773CBE;
  border-left: 2px solid #773CBE;
  border-right: 2px solid #773CBE;

}  

.item3 ul {
  font-size: 18px;
  margin: 0;
  list-style-position: inside;
  text-align :left;
  margin-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
} 

.item4 {
   border-bottom: 2px solid #773CBE;
  border-top: 2px solid #773CBE;
  border-left: 2px solid #773CBE;
  border-right: 2px solid #773CBE;
  padding: 10px;

}  

   
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: #666666a1;
  }
  
  .hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
  }
  
  .hero-text button:hover {
    background-color: #555;
    color: white;
  }

p {
  font-size: 18px;
  padding-top: 5px;
}

h3
{
  font-size: 24px;
}

h1
{
  font-size: 36px;
padding: 10px;
}

.fadein {transform: translateY(0);
  animation: fade-in 0.25s ease-in;
opacity: 1;
}
  




.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }



.grid-container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas:
    'header header header'
    'header header header'
    'menu menu menu' 
    'main main main'
    'right right right'
    'footer';
  grid-gap: 10px;
  padding: 10px;
}

.grid-container > div:not(:last-child) {
  background-color: rgb(222, 219, 219);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}


.footer{
  background-color: #773CBE;
  padding: 10px;
  text-align: center;
  color: white;
  position: fixed;
  bottom: 0;
right: 0;
left: 0;
} 

  .tablestyle1 {
    border: 2px solid #773CBE;
    border-collapse: collapse;
  }
  .tablestyle1 td,
  .tablestyle1 th {
    border-bottom: 2px solid #773CBE;
    padding: 14px 16px;
    font-size: 18px;
  }
  .tablestyle1 tr:nth-child(odd) {
    background-color: gray;
  }
  .tablestyle1 thead tr:nth-child(odd) {
    background-color: #773CBE;
  }
  .tablestyle1 tbody tr:hover {
    background-color: black;
    color: gray;
  }
  .tablestyle1 caption {
    caption-side: bottom;
    font-style: italic;
    padding-top: 10px;
    font-size: 0.9rem;
  }
  .col1 {
    background-color: white;
  } 


  @keyframes fade-in{
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
  }




  @media screen and (min-width:768px)
  {
    .grid-container {
      grid-template:
        'header header'
        'header header' 
        'menu main' 
        'menu main'
        'menu right'
        'footer footer';
    }
}

  @media screen and (min-width:992px){      
    .grid-container {
      grid-template:
        'header header header header header header'
        'menu menu main main main right right'
        'menu menu footer footer footer footer footer';
    }
  }
  
  @media screen and (min-width:1200px){
 
  }
  @media print {
    body {
      background-color: white;
      color: black;
      font-size: 16px;
    }
    body * {
      background-color: white;
      color: black;
    }
  }

img, picture, video, iframe {
  max-width: 100%;
  height: auto;
}

























