.font-size{
  font-size: 0.75rem;
}

.chat-history-container {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.chat-history-container::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* WebKit */
}

.chat-history-container:hover {
  scrollbar-width: thin; /* Firefox */
}

.chat-history-container:hover::-webkit-scrollbar {
  width: 4px;
}

.chat-history-container:hover::-webkit-scrollbar-thumb {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 20px;
}

.chat-history-container:hover::-webkit-scrollbar-track {
  background: transparent;
}

.see-more-button, .see-less-button {
  padding: 10px 15px;
  margin: 8px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(45deg, #7d4cdb, #9c27b0);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96%;
}

.see-more-button:hover, .see-less-button:hover {
  background: linear-gradient(45deg, #6b3cc7, #8e24aa);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bar {
  width: 13%;
  background: #000;
  height: 100vh;
  overflow: hidden;
  overflow-x: hidden;
  z-index: 8;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
}

.height{
  height: 100% !important;
  position: absolute !important;
  background-color: #000 !important;
  color: white;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo {
  height: auto;
  width: 150px;
}

.card-sidebar {
  padding: 15px;
  color: #fafafa;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px;
  cursor: pointer;
  clear: both;
  overflow: hidden;
  /* white-space: nowrap; */
  text-overflow: ellipsis;
  background: #7d7d7d;
  height: 50px;
  align-content: space-around;
  justify-content: space-around;
  width: 96%;
}

.item-title {
  font-size: larger;
}

.new-chat {
  width: 95%;
  padding: 10px 15px;
  margin: 8px auto;
  height: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  border: none;
  border-radius: 6px;
  background: linear-gradient(45deg, #7d4cdb, #9c27b0);
  transition: all 0.3s ease;
  text-align: center;
}

.new-chat:hover {
  background: linear-gradient(45deg, #6b3cc7, #8e24aa);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-chat {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

#logout_sidebar_button {
  margin-top: auto;
  padding: 10px;
  background: #000;
  width: 100%;
  box-sizing: border-box;
}

.black {
  background-color: #000;
}

.new-chat-black {
  width: calc(100% - 20px);
  padding: 15px;
  margin: 5px 10px;
  height: 48px;
  display: flex;
  align-content: space-around;
  justify-content: flex-start;
  cursor: pointer;
  align-items: center;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.new-chat-black:hover {
  background-color: #333;
}

/* ... existing styles ... */

/* Media query for responsiveness */
@media (max-width: 768px) {
  .bar {
    width: 100%;
    position: fixed;
    left: -100%;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .bar.open {
    left: 0;
  }

  .hamburger-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: rgb(221, 1, 221);
    z-index: 10; 
  }

  .new-chat {
    width: 97.5%;
  }

  #logout_sidebar_button {
    margin-top: auto;
    padding: 10px;
    background: #000;
    width: 100%;
    box-sizing: border-box;
  }

  .new-chat-black {
    width: calc(100% - 20px);
    margin: 5px 10px;
  }
}

@media (max-width:425px) {
  .new-chat {
    width: 95%;
  }
}

.hamburger-menu {
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: rgb(221, 1, 221)
}

@media (min-width:769px) and (max-width:1023px){
  .bar {
    width: 18%;
  }

  .new-chat-black {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 15px;
  }

  #logout_sidebar_button {
    margin-top: auto;
    padding: 10px;
    background: #000;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width:1024px) and (max-width:1299px) {
  .bar {
    width: 18%;
  }
  .new-chat-black {
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 15px;
    height: 48px;
    display: flex;
    align-content: space-around;
    justify-content: flex-start;
    cursor: pointer;
    align-items: center;
    border: none;
  }
  #logout_sidebar_button {
    margin-top: auto;
    padding: 10px;
    background: #000;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width:1300px) and (max-width:1600px){
  #logout_sidebar_button {
    margin-top: auto;
    padding: 10px;
    background: #000;
    width: 100%;
    box-sizing: border-box;
  }
}
.layout {
  display: flex;
}

.container-page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  color: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
  left: 12.6%;
}
.hamburger-menu {
  position: absolute;
  top: 15px;
  right: 45px;
  cursor: pointer;
  font-size: 24px;
  color: rgb(
    221,
    1,
    221
  ); /* Add this line to make the hamburger icon visible */
}

.dropdown {
  background-color: white;
  color: black;
}

.form-control {
  width: 100%;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: rgb(159, 1, 159);
}

.btn:hover {
  background-color: rgb(159, 1, 159);
}

.container-bordered {
  background-color: red;
}

/* .chat {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
    width: 50%;
  } */
@media (max-width: 768px) {
  .container-page {
    left: 0%;
  }
}

@media (max-width: 425px) {
  .reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1220px) {
  .ham-icon {
    display: none;
  }
}

@media (min-width:769px) and (max-width:1024px){
  .container-page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    color: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
    left: 16.6%;
  }
}

@media (min-width:1025px) and (max-width:1300px){
  .container-page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    color: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
    left: 16.6%;
  }
}
li::marker {
  color: rgb(205, 0, 205);
  font-size: 1.75rem;
}


#button-tooltip:hover{
    height: 50px;
    background-color: #F6E9FE !important;
    color: #B026FF;
}

@media (min-width: 425px) and (max-width: 770px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  li::marker {
    color: rgb(205, 0, 205);
    font-size: 1.25rem;
  }
}


.block{
  display: block;
  text-align: justify;
}

.modal-header .btn-close{
  background-color: #B026FF;
  color: white;
  border-radius:20px;
}

.modal-header {
  border-bottom: none; /* Remove the border below the header */
}

.modal-footer {
  border-top: none; /* Remove the border below the header */
}

.outline{
  background-color: white;
  color: grey;
}


.purple-text{
  color: #B026FF;
}
.Container.by-user {
}

.Container.by-assistant {
  background: rgba(255, 255, 255, 0.02);
}

.Container.by-assistant + .Container.by-assistant,
.Container.by-user + .Container.by-user {
  border-top: 0.2rem dotted rgba(0, 0, 0, 0.1);
}

.Container {
  position: relative;
  padding: 1.618rem;
}

@media (max-width: 40em) {
  .Container {
    padding: 1rem;
  }
}

.Container .inner {
  margin: auto;
}

.Container .content {
  font-family: "Montserrat";
  margin-top: 0rem;
  max-width: 100%;
}

.Container .content * {
  color: white;
}

.Container .content p,
.Container .content ol,
.Container .content ul,
.Container .content li,
.Container .content h1,
.Container .content h2,
.Container .content h3,
.Container .content h4,
.Container .content h5,
.Container .content h6,
.Container .content img,
.Container .content blockquote,
.Container .content pre {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.Container .content img {
  display: block;
  max-width: 50rem;
}

@media (max-width: 50rem) {
  .Container .content img {
    max-width: 100%;
  }
}

.Container .content ol {
  counter-reset: list-item;
}

.Container .content ol li {
  counter-increment: list-item;
}

.Container .content em,
.Container .content i {
  font-style: italic;
}

.Container .content code,
.Container .content code * {
  font-family: "Montserrat";
  vertical-align: bottom;
}

.Container .content table {
  margin-top: 1.618rem;
  border-spacing: 0px;
  border-collapse: collapse;
  border: thin solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.Container .content td + td,
.Container .content th + th {
  border-left: thin solid rgba(255, 255, 255, 0.1);
}

.Container .content tr {
  border-top: thin solid rgba(255, 255, 255, 0.1);
}

.Container .content table td,
.Container .content table th {
  padding: 0.618rem 1rem;
}

.Container .content th {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
}

.Container .metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Montserrat";
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
  max-width: 50rem;
  margin-bottom: 0rem;
  margin-right: -0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.Container .metadata span + span {
  margin-left: 1em;
}

.Container .metadata .fa {
  font-size: 85%;
}

.Container .metadata .fa + span {
  margin-left: 0.2em;
}

.Container .metadata .mantine-Button-root {
  color: #ccc;
  font-size: 0.8rem;
  font-weight: 400;
}

.Container .metadata .mantine-Button-root .mantine-Button-label {
  display: flex;
  align-items: center;
}

.Container .fa {
  margin-right: 0.5em;
  font-size: 85%;
}

.Container .buttons {
  text-align: right;
}

.Container strong {
  font-weight: bold;
}

.margin-left {
  margin-left: 0% !important;
}

.vertical-bar2 {
  position: absolute; /* Position the bar appropriately */
  width: 2px; /* Adjust width */
  height: 90%; /* Adjust height if needed */
  background: #E3D9D9;
  border-radius: 2px; /* Optional rounded corners */
  /* margin-top: 10%; */
}

.edit {
  margin-left: 3%;
}
.nobg-color::selection {
  background: transparent; /* Makes the background transparent when selected */
}


/* @media (max-width:786px) {
  .edit{
    margin-left: 39%;
  }
}

@media (min-width:769px) and (max-width:1024px) {
  .edit{
    margin-left: 36%;
  }
}

@media (min-width:1220px) and (max-width:1440px) {
  .edit{
    margin-left: 25%;
  }
}

@media (max-width:425px) {
  .edit{
    margin-left: 1%;
  }
} */
.messages {
  max-height: 100%;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 200px);
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 155, 155, 0.5) transparent;
}

.messages::-webkit-scrollbar {
  width: 6px;
}

.messages::-webkit-scrollbar-track {
  background: transparent;
}

.messages::-webkit-scrollbar-thumb {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 20px;
  border: transparent;
}

.messages::-webkit-scrollbar-thumb:hover {
  background-color: rgba(155, 155, 155, 0.8);
}

.empty-message {
  flex-grow: 1;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* font-family: "Work Sans", sans-serif; */
  font-family: "Montserrat";
  line-height: 1.7;
  gap: 1rem;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;font-family:"Montserrat"}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}html,body{padding:0;margin:0;font-family:"Montserrat"}body{overflow:auto}#root{position:fixed;top:0;left:0;right:0;bottom:0;font-size:110%;overflow:auto}.fa+span{margin-left:.25rem}.purple{background:linear-gradient(180deg, rgb(173, 5, 201) 0%, rgb(59, 22, 87) 59%, rgb(0, 0, 0) 100%)}.MuiFab-secondary{background-color:purple}.montserrat{font-family:"Montserrat"}.max-width-prose{max-width:100% !important}
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: #000;
    color: white;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .sidebar.open {
    right: 0;
  }
  
  .drawer-icon {
    cursor: pointer;
    font-size: 24px;
    margin: 10px;
  }
  
  .content {
    flex: 1 1;
    padding: 20px;
  }
  
/* nav {
  display: flex;
  align-items: center;
}

nav img {
  margin-right: 15px;
}

.nav-logo {
  width: 100px;
  height: 75px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  margin-left: 20px;
}

nav button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin-left: 15px;
}

.jumbotron {
  background-image: url("../../assets/Archive/jumbo.jpg");
  background-size: cover;
  height: 670px;
  color: #fff;
  display: flex;
  min-height: 670px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.jumbotron h1 {
  margin-top: 25%;
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 20px;
}

.jumbotron p {
  margin-top: 2%;
  color: #dfdcdc;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.jumbotron button {
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  width: 13%;
  display: flex !important;
  justify-content: space-around;
  align-items: center;
}

.chat {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
  width: 50%;
}
.text-area {
  background-color: transparent !important;
  position: relative;
  opacity: 0.5;
  color: #770acb;
}
textarea::placeholder{
  font-size: large;
  color: #770acb;

}
.light-button {
  border: 2px solid #770acb;
  color: #770acb;
}
.light-button:hover {
  border: 2px solid white;
  color: white;
}

.transparent-button {
  background: transparent;
  border: 2px solid black;
  cursor: pointer;
}

.bg-purple {
  background-color: #000 !important;
}

.position {
  position: absolute !important;
  width: 100% !important;
}

.outlined-purple {
  border: 2px solid purple;
  background-color: transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: purple;
}

.get-started{
  margin-top: -5%;
}

.footer-text{
  color: #fff;
  font-size: small;
}

@media (min-width: 425px) and (max-width: 767px) {
  .jumbotron h1 {
    font-size: 50px;
    font-weight: 500;
    padding: 5px;
    margin-top: 40% !important;
  }

  .jumbotron p {
    padding: 2%;
  }

  .jumbotron {
    background-image: url("../../assets/Archive/jumbo.jpg");
    background-size: cover;
    color: #fff;
    display: flex;
    min-height: 670px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 965px !important;
  }

  .nav-logo {
    width: 100px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .jumbotron h1 {
    font-size: 50px;
    font-weight: 500;
    padding: 5px;
    margin-top: 35%;
  }

  .jumbotron {
    background-image: url("../../assets/Archive/jumbo.jpg");
    background-size: cover;
    color: #fff;
    display: flex;
    min-height: 670px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 850px;
  }

  .jumbotron button {
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    width: 25%;
  }

  
}

.footer {
  margin-top: 10%;
}
.info {
  margin-top: 20%;
}
.info3 {
  margin-top: 20%;
}

.horizontal-bar {
  height: 4px;
  border: 0;
  background: linear-gradient(
    90deg,
    rgb(219, 16, 255) 0%,
    rgb(255, 11, 190) 22%,
    rgb(255, 14, 22) 31%,
    rgb(255, 15, 23) 68%,
    rgb(255, 13, 191) 77%,
    rgb(219, 18, 255) 100%
  );
}

.hr1 {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.info2 {
  margin-top: 30%;
}

@media (max-width: 768px) {
  .info2 {
    margin-top: 42%;
  }
  .chat {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
    width: 100%;
  }
}

@media (max-width: 425px) {
  .info2 {
    margin-top: 35%;
  } 

  .jumbotron button {
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    width: 45%;
  }
}


@media (min-width:1220px) and (max-width: 1440px) {
  .info2 {
    margin-top: 44%;
  }

  .jumbotron h1{
    margin-top: 34%;
  }
}

@media (min-width:1024px) and (max-width: 1219px) {
  .info2 {
    margin-top: 42%;
  }
} */

nav {
  display: flex;
  align-items: center;
}

nav img {
  margin-right: 15px;
}

.nav-logo {
  width: 100px;
  height: 75px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  margin-left: 20px;
}

nav button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin-left: 15px;
}

.hero-section {
  background-image: url(/static/media/jumbo.b82b238327ae71a48a23.jpg);
  background-size: cover;
  /* height: 100vh; */
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.jumbotron {
  color: #fff;
  display: flex;
  min-height: 670px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .jumbotron h1 {
  font-size: 80px;
  font-weight: 500;
} */
*/ .jumbotron p {
  color: #dfdcdc;
  font-size: 18px;
  font-weight: 400;
}

.jumbotron button {
  color: #fff;
  border: none;
  border-radius: 5px;
  /* width: 13%; */
  display: flex !important;
  justify-content: space-around;
  align-items: center;
}
*/

/* .chat {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
} */
.text-area {
  background-color: transparent !important;
  position: relative;
  opacity: 0.5;
  color: #770acb;
}
textarea::placeholder {
  font-size: large;
  color: #770acb;
}
.light-button {
  border: 2px solid #770acb;
  color: #770acb;
}
.light-button:hover {
  border: 2px solid white;
  color: white;
}

.transparent-button {
  background: transparent;
  border: 2px solid black;
  cursor: pointer;
}

.bg-purple {
  background-color: #000 !important;
}

.position {
  position: absolute !important;
  width: 100% !important;
}

.outlined-purple {
  border: 2px solid purple;
  background-color: transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: purple;
}

.get-started {
  margin-top: -5%;
}

/* .footer-text{
  color: #fff;
  font-size: medium;
  font-family: "Montserrat";
} */

.footer {
  margin-top: 10%;
}
.info {
  margin-top: 20%;
}
.info3 {
  margin-top: 20%;
}

.horizontal-bar {
  height: 4px;
  border: 0;
  background: linear-gradient(
    90deg,
    rgb(219, 16, 255) 0%,
    rgb(255, 11, 190) 22%,
    rgb(255, 14, 22) 31%,
    rgb(255, 15, 23) 68%,
    rgb(255, 13, 191) 77%,
    rgb(219, 18, 255) 100%
  );
}

.hr1 {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.info2 {
  margin-top: 30%;
}

.services {
  margin-top: 0%;
}

.aboutUs {
  margin-top: 5%;
}

@media (max-width: 425px) {
  .services {
    margin-top: 135%;
  }
  .aboutUs {
    margin-top: 20%;
  }
}

@media (min-width: 426px) and (max-width: 550px) {
  .services {
    margin-top: 140%;
  }
  .aboutUs {
    margin-top: 15%;
  }
}
@media (min-width: 551px) and (max-width: 600px) {
  .services {
    margin-top: 115%;
  }
  .aboutUs {
    margin-top: 15%;
  }
}
@media (min-width: 601px) and (max-width: 700px) {
  .services {
    margin-top: 110%;
  }
  .aboutUs {
    margin-top: 15%;
  }
}
@media (min-width: 701px) and (max-width: 767px) {
  .services {
    margin-top: 100%;
  }
  .aboutUs {
    margin-top: 15%;
  }
}

@media (min-width: 1220px) {
  .chat {
    width: 60% !important;
  }
}
.chat {
  width: 75%;
}

.bg {
  background-image: url(/static/media/card.05095f506e9d2fb673ba.jpg);
  background-size: cover;
  background-position: center;
  background-color: rgba(37, 4, 44, 0.5);
  background-blend-mode: multiply;
  height: 35vh; /* Adjust the height as needed */
  width: 100%;
}

.rounded {
  width: 25%;
  height: 15%;
  margin-left: 20%;
  border: 10px;
}

.heading {
  font-size: 50px;
}

.content {
  margin-left: 10%;
}

@media (max-width: 768px) {
  .bg {
    height: 50vh; /* Adjust the height for full-screen on smaller devices */
  }
  .rounded {
    width: 45%;
    height: 10%;
  }

  .heading {
    font-size: 35px;
  }
}

@media (max-width: 425px) {
  .bg {
    height: 60vh;
    width: 106%;
  }
  .content {
    margin-left: 5%;
  }
  .heading {
    font-size: 35px;
  }

  .rounded {
    margin-bottom: 10%;
    width: 45%;
    height: 25%;
    margin-left: -2%;
  }
}

/* Custom styling for the accordion items */
.custom-accordion-item .accordion-button {
  background-color: #eaeaea !important; /* Set your desired background color */
}

p {
  color: #888;
}
/* Adjust width when all accordions are closed */
.mdb-accordion.collapsed .accordion-button {
  width: 100%; /* Set your desired width */
  background-color: #eaeaea !important; /* Set your desired background color */
}

/* Styling the button when not collapsed */
.accordion-button:not(.collapsed) {
  background-color: #eaeaea !important;
}

.accordion-content {
  display: flex; /* Wrap content in a flex container */
}

.vertical-bar {
  order: 1; /* Display bar behind content when collapsed */
}

.accordion-content p {
  order: 2; /* Display content over bar when collapsed */
}

.heading1 {
  font-size: 40px;
  background: linear-gradient(
    90deg,
    rgb(127, 5, 146) 0%,
    rgba(44, 22, 47, 1) 26%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center {
  display: flex;
  justify-content: center;
}

/* Customize these styles based on your descriptions */
.vertical-bar {
  position: absolute; /* Position the bar appropriately */
  width: 5px; /* Adjust width */
  height: 3%; /* Adjust height if needed */
  background: linear-gradient(
    90deg,
    rgb(228, 82, 251) 0%,
    rgb(92, 14, 102) 26%
  );
  border-radius: 2px; /* Optional rounded corners */
  /* margin-top: 0.2%; */
}

.left-margin {
  margin-left: 1%;
}

@media (max-width: 425px) {
  .left-margin {
    margin-left: 4%;
  }
}

/* .title {
  font-size: 27px;
  font-weight: 600;
  font-family: "Montserrat";
} */

.margin {
  justify-content: center;
}

.justify{
  text-align: justify;
}
/* .heading1 {
  font-size: 40px;
  background: linear-gradient(
    90deg,
    rgb(127, 5, 146) 0%,
    rgba(44, 22, 47, 1) 26%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.center {
  display: flex;
  justify-content: center;
}
.card1 {
  transition: border 0.3s; /* Add a transition for a smooth effect */
  height: 100%;
}

.card1:hover {
  border: 3px solid #770acb; /* Set your desired highlight color on hover */
}

.card2 {
  transition: border 0.3s; /* Add a transition for a smooth effect */
  height: 100%;

}

.card2:hover {
  border: 2px solid #770acb; /* Set your desired highlight color on hover */
}

/* Add this to your CSS file (ourServices.css) */

.card1,
.card2 {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Set your desired shadow properties */
  transition: box-shadow 0.3s; /* Add a transition for a smooth effect */
}

.card1:hover,
.card2:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Set your desired shadow properties on hover */
}

/* .gap {
  gap: 0rem;
} */
/* 
.card2-text{
  font-size: larger;
  font-family: "Montserrat";
}

.card1-text{
  font-size: larger;
  font-family: "Montserrat";
} */

.top-margin{
  margin-top:0%
}

/* @media (max-width: 425px) {
  .gap {
    gap: 1.5rem;
  }

  .card2-text{
    font-size: large;
  }
  
  .card1-text{
    font-size: medium;
  }
  
}

@media (max-width: 768px) {
  .title {
    font-size: 20px;
    font-weight: 600;
  }
  .card2-text{
    font-size: large;
  }
  
  .card1-text{
    font-size: large;
  }

  .top-margin{
    margin-top:5%
  }
}

@media (min-width:1220px) and (max-width: 1440px) {
  .card2-text{
    font-size: medium;
  }

  .title {
    font-size: 22px;
    font-weight: 600;
  }

  .card1-text{
    font-size: medium;
  }
}

@media (min-width:770px) and (max-width: 1220px) {
  .card2-text{
    font-size:smaller;
  }

  .title {
    font-size: 18px;
    font-weight: 600;
  }

  .card1-text{
    font-size: smaller;
  }
} */
/* .container-fluid1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  position: relative; 
  background-color: #FBF4FF;
}

.border1 {
  top: -18%;
  left: 17%;

  position: absolute;
  width: 30%;
  border: 3px solid purple !important;
  height: 60%;
  border-radius: 150px 0 0 0px;
  box-sizing: border-box;
  margin-right: 5%;
  background-color: transparent;
}

.overlay-image {
  width: 95%; 
  height: 95%;
  margin-left: 5%;
  object-fit: cover;
  border-radius: 150px 0 0 0px;
}

.rounded-border {
  position: relative;
  border-radius: 150px 0 0 0px;
  overflow: hidden;
  width: 30%; 
  height: 70%;
  top: -32%;
  left: 20%;
}
.border2 {
  top: 30%;
  left: 50%;

  position: absolute;
  width: 30%;
  border: 3px solid purple !important;
  height: 60%;
  border-radius: 0 0 150px 0;
  box-sizing: border-box;
  margin-right: 5%;
  background-color: transparent; 
}

.overlay-image2 {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.rounded-border2 {
  position: relative;
  border-radius: 150px 0 0 0px;
  overflow: hidden;
  width: 30%;
  height: 70%;
  top: -32%;
  left: -5%;
}

.about {
  margin-top: -35%;
  margin-left: 50%;
}

.about2 {
  justify-content: center;
}

.overlay-image2 {
  width: 95%; 
  height: 95%;
  margin-top: 5%;
  object-fit: cover;
  border-radius: 0 0 150px 0;
}

.heading1 {
  font-size: 45px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .heading1 {
    font-size: 25px;
  }

  .para {
    font-size: 16px !important;
  }

  .border1 {
    top: -18%;
    left: 15%;
    width: 35%;
  }

  .border2 {
    top: 40%;
    left: 52%;
    height: 56%;
    width: 38%;
  }

  .about {
    margin-top: -100%;
    margin-left: 54%;
  }
}

@media (max-width: 425px) {
  .heading1 {
    font-size: 25px;
  }

  .para {
    font-size: 15px !important;
  }

  .border1 {
    top: -3%;
    left: 4%;
    width: 46%;
    height: 43%;
  }

  .border2 {
    top: 36%;
    left: 58%;
    height: 50%;
    width: 39%;
  }

  .about {
    margin-top: -135%;
    margin-left: 53%;
  }

  .about2 {
    width: 64%;
    padding: 7%;
    margin-top: -19%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .heading1 {
    font-size: 25px;
  }

  .para {
    font-size: 15px !important;
  }

  .border1 {
    top: -10%;
    left: 14%;
    width: 36%;
    height: 53%;
  }

  .border2 {
    top: 36%;
    left: 55%;
    height: 50%;
    width: 40%;
  }

  .about {
    margin-top: -87%;
    margin-left: 58%;
  }

  .about2 {
    width: 100%;
    padding: 0%;
    margin-top: -19%;
  }
}


@media (min-width:1220px) and (max-width: 1439px) {
  .about {
    margin-top: -55%;
    margin-left: 54%;
  }

  .border2{
    left:52%;
  }
}

@media (min-width:1024px) and (max-width: 1219px) {
  .heading1 {
    font-size: 35px;
  }
  .about {
    margin-top: -84%;
    margin-left: 54%;
  }
}

@media (min-width:1440px) and (max-width:1800px){
  .about{
    margin-top: -55%;
  }
} */

.parent-direction {
  flex-direction: none;
}
.child-direction {
  flex-direction: column;
}

@media (max-width: 425px) {
  .child-direction {
    flex-direction: column-reverse;
  }
  .parent-direction {
    flex-direction: column-reverse;
  }
}

.background {
  background-color: #FBF4FF;
}

.dot1 {
  position: relative;
  top: 90%;
  left: 7;
}
.dot2 {
  position: relative;
  left: 86%;
  top: 8%;
}

.padding {
  padding: 2%;
}

.container-padding{
  padding: 5%;
}

.star {
  margin-left: 78%;
}

.heading-margin {
  margin-left: 0%;
}

.margin-left {
  margin-left: 5%;
}

.owl-carousel .owl-item .dot1 {
  width: 10%;
}

.owl-carousel .owl-item .dot2 {
  width: 10%;
}

.width {
  width: 150px;
}

.owl-carousel .owl-stage-outer{
  margin-top: -8% !important;
}

@media (max-width: 425px) {
  .owl-carousel .owl-stage-outer{
    margin-top: -40% !important;
  }
  
  .container-padding{
    padding: 1%;
  }
  .dot1 {
    position: relative;
    top: 90%;
    left: -6%;
  }
  .dot2 {
    position: relative;
    left: 83%;
    top: 11% !important;
  }
  .heading-margin {
    margin-left: 24%;
    width: 65%;
  }
  .margin-left {
    margin-left: 22%;
  }

  .owl-carousel .owl-item .dot1 {
    width: 20%;
  }

  .owl-carousel .owl-item .dot2 {
    width: 20%;
  }

  .star {
    margin-left: 73%;
    margin-top: 15%;
  }
  .padding {
    padding: 5%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .container-padding{
    padding: 1%;
  }
  .dot1 {
    position: relative;
    top: 91%;
    left: -7%;
  }
  .dot2 {
    position: relative;
    left: 70%;
    top: 6%;
  }

  .owl-carousel .owl-item .dot1 {
    width: 30%;
  }

  .owl-carousel .owl-item .dot2 {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .container-padding{
    padding: 8%;
  }
  .dot1 {
    position: relative;
    top: 94%;
    left: -10%;
  }
  .dot2 {
    position: relative;
    left: 81%;
    top: 7%;
  }
  .heading-margin{
    margin-left: 20%;
  }
  .margin-left {
    margin-left: 20%;
  }

  .owl-carousel .owl-item .dot1 {
    width: 22%;
  }

  .owl-carousel .owl-item .dot2 {
    width: 22%;
  }

  .width {
    width: 100px;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .owl-carousel .owl-item .dot1 {
    width: 15%;
  }

  .owl-carousel .owl-item .dot2 {
    width: 15%;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU1RTM0MEU5QzBCMDExRTM4MURCQTkwQzkyRUYxMzEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU1RTM0MEVBQzBCMDExRTM4MURCQTkwQzkyRUYxMzEzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTVFMzQwRTdDMEIwMTFFMzgxREJBOTBDOTJFRjEzMTMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTVFMzQwRThDMEIwMTFFMzgxREJBOTBDOTJFRjEzMTMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6n647gAAAP5klEQVR42uxcCVRU1xl+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) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.container {
  display: flex;
  height: 0;
}

.image-container {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
}

.sign-in-screen {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 50%;
}

.welcome-back {
  text-align: center;
  margin-bottom: 10px;
}

.welcome-back h1 {
  font-size: 40px;
  font-weight: 600;
}

.welcome-back p {
  margin-top: 5%;
  color: #999;
  font-size: large;
}

.welcome-back hr {
  margin-top: 7%;
  color: #999;
}

.sign-in-form {
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 20px;
}
.sign-in-form2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
}

.sign-in-form2 label {
  margin-bottom: 5px;
  color: #343333;
  font-size: medium;
}
.sign-in-form label {
  margin-bottom: 5px;
  color: #343333;
  font-size: medium;
}

.sign-in-form2 input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 15px;
}
.sign-in-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 15px;
}

.sign-in-button {
  background: linear-gradient(
    180deg,
    rgba(173, 5, 201, 1) 0%,
    rgba(59, 22, 87, 1) 59%,
    rgba(0, 0, 0, 1) 100%
  );
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  font-size: large;
}

.forgot-password {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-password a {
  color: #999;
  text-decoration: none;
  font-size: medium;
}

.sign-up {
  text-align: center;
  /* margin-top: 10px; */
}

.sign-up a {
  color: #673ab7;
  text-decoration: none;
  font-size: medium;
}

.sign-up p {
  text-decoration: none;
  font-size: medium;
}

.sign-up hr {
  margin-bottom: 10%;
}

.sign-up-other-option {
  margin-top: 3%;
}

.sign-up-other-option p {
  font-weight: 100;
  font-size: medium;
}

.sign-up-other-option a {
  font-size: smaller;
}

.text-black {
  color: #333333;
}

.background-black {
  background-color: #5e0a64;
}

.text-purple {
  color: #b026ff;
}

.textarea{
  height: 5rem;
}

@media (max-width: 768px) {
  /* Apply these styles when the screen width is 768 pixels or less */
  .container {
    flex-direction: column; /* Stack items vertically on small screens */
  }

  .image-container,
  .sign-in-screen {
    width: 100%; /* Take the full width on small screens */
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

