/* +++++++++++ Google Fonts Imports +++++++++++ */

/* Josefin Sans */
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic);


/* Exo 2 */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

  
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', monospace;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    position: relative;
    max-width: 100%;
    min-height: 100vh;
    /* max-height: 100vh; */
    background-color: #ffffff !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden !important;
    background-attachment: fixed;
}
::-webkit-scrollbar {
    width: 0%;
}
a { 
    text-decoration: none;
}
button {
    cursor: pointer;
    border: none;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.txt-al-cent {
    text-align: center;
}
.med-trans {
    transition: all 1.00s ease;
}
.displ-flx {
    display: flex;
}
.flx-d-col {
    flex-direction: column;
}
.flx-wrp {
    flex-wrap: wrap;
}
.align-itm-cent {
    align-items: center;
}
.just-cnt-spev {
    justify-content: space-evenly;
}
.just-cnt-spbw {
    justify-content: space-between;
}
.just-cnt-cent {
    justify-content: center;
}
ul, ul li {
    list-style-type: none;
}



.faqcontainer {
  margin: 0;
  padding: 20px;
  /* width: 48rem; */
  max-width: 1200px;
}
.faq h2 {
  font-size: 1.75rem;
  color: #000000;
  text-align: center;
  /* padding: 1.3rem; */
  margin: 20px 0;
}
.accordion a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  padding: 15px 5px;
  margin: 5px 0;
  color: #8937d1;
  font-size: 1.15rem;
  font-weight: 400;
  border-bottom: 1px solid #1a1a1a1d;
}
.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  color: #8937d1;
}
.accordion a:hover::after {
  border: 1px solid #8937d1;
}
.accordion a.active {
  color: #8937d1;
  border-bottom: 1px solid #8937d1;
}
@media only screen and (min-width: 768px) {
.accordion a::after {
    display: flex;
    align-items: center;
  justify-content: center;
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1rem;
  color: #4b0048;
  padding: 5px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #7288a2;
  text-align: center;
}
.accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #8937d1;
  border: 1px solid #8937d1;
}
}
.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #000000;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}
.accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}
.accordion .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}