@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Flat&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans");
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    --bg-color: #000;
    --text-color: #fff;
    --text2-color: #f9f9f9;
    /*--main-color: #003166;
    --main-color-hover: #658cb7;*/
    --main-color: #2E203C;
    --main-color-hover: #442962;
    --bg2-color: #141414;
    --main-font: Rubik, sans-serif;
    --alt-font: Inter, sans-serif;
    --font-primary: Poppins, Roboto,"Helvetica Neue",sans-serif;
    --font-secondary: Roboto;
    --font-hero: "Bebas Neue",Poppins, Roboto,"Helvetica Neue",sans-serif;  
    font-family: 'Poppins', sans-serif;   
    font-family: 'Nova Flat', cursive;
    font-family: 'Roboto', sans-serif;
    font-family: 'Lobster', cursive;
    font-family: 'Montserrat', sans-serif;
    --border:.2rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
*{
    font-family: var(--main-font), sans-serif; 
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    /*color: var(--text-color);*/
}

*::selection{
    background-color: var(--main-color);
    color:var(--white);
}

::-webkit-scrollbar{
    height: .5rem;
    /* width: 4px; */
    width: 8px;
}

::-webkit-scrollbar:hover{
    width: 8px;
}

::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
} 

body {
    /*font-family: 'Inter', Arial, sans-serif;*/
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    background-color: var(--text-color);
    font-size: 10px;
}

section{
    margin:0 auto;
}

/*a {
    text-decoration: none;
    color: var(--text-color);
}

a:link {
    text-decoration: none;
    color: var(--text-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
} */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    /*line-height: 1.1;*/
    color: var(--text-color);
    font-size: 20px;
}

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-icon {
    width: 50px;
    height: 50px;
    background-image: url('../img/br-icon.png');
    background-size: cover;
    /* animation: spin 1s linear infinite;
    animation: pulse 1s infinite; */
    animation: boom 1s infinite;
}

#loader {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* background-color: rgba(0, 0, 0, 0.8); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinning {
    width: 50px;
    height: 50px;
    background-image: url('../img/br-icon.png');
    background-size: cover;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

@keyframes boom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}


#typewriter-text {
    white-space: pre-wrap;
    overflow: hidden;
    /* border-right: 1px solid #fff; */
    font-size: 50px;
    color: var(--main-color-hover);
    font-family: 'Anton', sans-serif; ;
    max-width: 640px;
    /* margin: auto; */
    /* height: 100%; */
    /* align-content: center; */
    /* display: block; */
    /* left: 80px; */
    /* position: relative; */
    top: 80px;
    /* text-align: center; */
    height: 65px;
}


.hidden {
  display: none;
}



/****************************************************************
# Buttons
****************************************************************/

.login-btn {
    /*background-color: var(--main-color); */
    display: block;
    width: auto;
    /* margin-top: 1rem; */
    border-radius: .5rem;
    padding: 1rem 1rem;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
    /* border: 1px solid var(--main-color); */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}


.login-btn a {    
    color: var(--main-color);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

.login-btn:hover {
    /*background-color: var(--main-color); */
    display: block;
    width: auto;
    /* margin-top: 1rem; */
    border-radius: .5rem;
    padding: 1rem 1rem;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
    /* border: 1px solid var(--main-color); */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.logout-btn {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    text-transform: capitalize;
    color: var(--text-color);
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--main-color);
}

.logout-btn:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}

.flex-btn .sign-up-btn {
    /*background-color: var(--main-color); */
    display: block;
    width: auto;
    /* margin-top: 1rem; */
    border-radius: .5rem;
    padding: 1rem 1rem;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
    /* border: 1px solid var(--main-color); */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.flex-btn .sign-up-btn:hover {
    /*background-color: var(--main-color); */
    display: block;
    width: auto;
    /* margin-top: 1rem; */
    border-radius: .5rem;
    padding: 1rem 1rem;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
    /* border: 1px solid var(--main-color); */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.separator {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #686868;
    color: rgba(0, 0, 0, .35);
    margin: 15px 0 10px 0;
}

.separator::after, .separator::before {
    content: '';
    flex: 1;
    border: 1px solid #d8d8d8;
}





#demoForm option {
    color: var(--main-color);
}

#demoSuccessMessage p {
    color: var(--main-color);
    font-size: 16px;
}

#demoSuccessMessage p strong {
    color: var(--main-color);
    font-size: 16px;
}


/* Full-page overlay */
.loading-gif-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #21212173; /* Slightly transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it appears above other elements */
}

/* Loading container */
.loading-container {
    position: relative; /* For absolute positioning of cancel button */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center the loading GIF */
    align-items: center;
    background-color: #ffffff;
    height: 35rem;
    width: 30rem;
    border-radius: 5px;
    padding: 1rem;
}


/* Cancel button */
.cancel-button {
    position: absolute; /* Stick to the bottom of the container */
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    padding: 0.5rem 1rem;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /*font-size: 1rem;*/
    font-size: 15px;
}

.cancel-button:hover {
    background-color: var(--main-color-hover);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}





/****************************************************************
 Header Section
****************************************************************/

.header{
    position: sticky;
    top:0; left:0; right:0;
    background-color: var(--text-color);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    border-bottom: 0.5px solid #9f9696;
}
 
.header .flex{
    display: block;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /*padding: 1rem 2rem;
    max-width: 1200px; */
}
 
.header .flex .logo{
    font-size: 2.5rem;
    color:var(--black);
}
 
.header .flex .logo span{
    color:var(--main-color);
}
 
.header .flex .navbar a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all .50s ease;
    width: 12rem;
}

.header .flex .navbar a::before {
    content: attr(data-icon);
    position: absolute;
    top: -100%;
    left: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    color: var(--text-color);
    font-family: FontAwesome;
}

.header .flex .navbar a:hover::before {
    top: -100%;
    transform: translateY(100%); /* Move the pseudo-element into view */
}

.header .flex .navbar .fas {
    color: var(--main-color);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition for transform and color */
    top: -100%;
}

.header .flex .navbar a:hover .fas {
    top: 100%;
    transform: translateY(100%); /* Move the main icon down */
    color: transparent; /* Make the main icon invisible */
}



/* Add data-icon attributes to your links */
.header .flex .navbar a[data-icon="&#xf015;"] i::before { content: "\f015"; }
.header .flex .navbar a[data-icon="&#xf09e;"] i::before { content: "\f09e"; }
.header .flex .navbar a[data-icon="&#xf001;"] i::before { content: "\f001"; }
.header .flex .navbar a[data-icon="&#xf025;"] i::before { content: "\f025"; }
.header .flex .navbar a[data-icon="&#xf0c9;"] i::before { content: "\f0c9"; }
.header .flex .navbar a[data-icon="&#xf781;"] i::before { content: "\f781"; }

.header .flex .icons > *{
    margin-left: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color:var(--text-color);
    display: flex;
}
 
.header .flex .icons > *:hover{
    color:var(--main-color);
}
 
.header .flex .icons a span{
    font-size: 1.2rem;
    vertical-align:super;
}
 
.header .flex .profile.active {
    display: inline-block;
    background-color: var(--main-color);
    border: 1px solid white;
}

.header .flex .profile.active a:hover {
    background-color: var(--main-color-hover);;
    color: var(--text-color);
    width:100%;
}

.header .flex .profile {
    position: absolute;
    top: 75%;
    right: 2rem;
    background-color: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    /* padding: 2rem; */
    width: 25.3rem;
    padding-bottom: 0.5rem;
    display: none;
    animation: fadeIn .2s linear;
    z-index: 2;
}

.header .flex .profile p {
    text-align: center;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profile-top {
    color: var(--text-color);
    padding: 1.5rem 2.5rem; 
    border-bottom: 1px solid #5a56a3;
    font-size: 16px;
}

.drp-btn {
    width: 100%;
    display: flex;
    padding: 10px 0px;
    /* font-family: 'Inter', sans-serif; */
    padding: 1.6rem 3rem;
    align-items: center;
    font-size: 15px;
    color: white;
    text-decoration: none;
    font-family: var(--main-font);
}

.drp-btn i {
    margin-right: 8px;
}


.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    padding: 5px 20px;
    color: white;
    height: 45px;
    border-bottom: 1px solid #68319A;
}

 
#menu-btn{
    display: none;
}

.logo{
    display: flex;
    align-items: center;
    background-image: url(../img/purplewasp_logo.png);
    width: 20%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}
 
.logo i{
    color: var(--main-color);
    font-size: 28px;
    margin-right: 3px;
}
 
.logo span{
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}
 
.navbar{
    display: flex;    
}

.navbar a{
    color: var(--text2-color);    
    font-size: 0.8rem;
    font-weight: 500;
    transition: all .50s ease;
}
 
.navbar a:hover{
    color: var(--main-color);
}
 
.navbar a.active{
    color: var(--main-color);
}

.icons {
    display: flex;
    align-items: center;
}

.icons .notification-icon {
    position: relative;
    /*margin-right: 20px; /* Space between bell icon and other buttons */
}

.icons .notification-icon i {
    font-size: 18px;
    cursor: pointer;
}

.icons .notification-icon .fas {
    color: var(--main-color);
}
 
.main{
    display: flex;
    align-items: center;
}
 
.main a{
    margin-right: 25px;
    margin-left: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all .50s ease;
}
 
.main a:hover{
    color: var(--main-color);    
}
 
.user{
    display: flex;
    align-items: center;
}
 
.user i{
    color: var(--main-color);
    font-size: 28px;
    margin-right: 7px;
}
 
#menu-icon{
    font-size: 35px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
}
 
.login-logout a {
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
  
.fa-bell {
    font-size: 16px;
}

/*.notification-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 9px;
} */

.notification-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 200px;
    background: #141414;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 100;
    border-radius: 5px;
}

.notification-dropdown.show {
    display: block;
}

.notification-item {
    margin-bottom: 10px;
}

.notification-item a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: bold;
}

.notification-item a:hover {
    text-decoration: underline;
}

.header .flex .navbar .sign-up {
    display: none;
}

#user-btn {
    display: flex;
    align-items: center;
}

#user-btn img {
    height: 35px;
    border-radius: 50%;
    align-items: center;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    z-index: 99;
}

.profile-initials {
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    /* z-index: 1; */
}

#user-btn .fa-chevron-down {
    border: 3px solid var(--main-color);
    border-radius: 50%;
    color: white;
    /*padding: 4px;*/
    left: -9px;
    position: relative;
    background-color: var(--main-color);
}

#user-btn .fa-chevron-down:before {
    content: "\f078";
    align-items: center;
    border: 0.5px solid var(--main-color);
    border-radius: 75%;
    display: flex;
    /* background-color: var(--main-color); */
    padding: 4px;
    /*left: -18%;*/
    position: relative;
    font-size: 13px;
}

.icons .cm360-btn {
    background-color: var(--main-color); /* Button background */
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
}

.icons .cm360-btn:hover {
    background-color: transparent; /* Lighter blue on hover */
    color: var(--main-color);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
    width: max-content;
    border: 1px solid var(--main-color);
}


.header .topbar .mobilemenu {
    display: contents;
    width: 10rem;
    color: var(--main-color);
    font-size: 1.5rem;
}


.header .topbar .mobilemenu .fa-bars{
    display: contents;
    width: 10rem;
    color: var(--main-color);
    font-size: 1.5rem;
    display: none;
}









/****************
# Horizontal Menu
****************/

.horizontal-menu {
  display: flex;
  justify-content: center;
  background-color: var(--text-color);
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 50px;
  font-family: var(--main-font);
}

.horizontal-menu .menu-item {
  position: relative;
  margin: 0 15px;
  list-style: none;
  height: 40px;
}

.horizontal-menu .menu-item a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 14px;
  padding: 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 215px;*/
}

/*.horizontal-menu .menu-item a:hover {
    border-bottom: 3px solid var(--main-color);
}*/

.menu-item-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-icon {
  transform: translateY(5px);
}




.horizontal-menu .menu-item .fa-chevron-down:before {
    content: "\f078";
    align-items: center;
    /* border: 0.5px solid var(--main-color); */
    border-radius: 75%;
    display: flex;
    /* background-color: var(--main-color); */
    padding: 4px;
    /* left: -18%; */
    position: relative;
    font-size: 13px;
}

.horizontal-menu .menu-item .submenu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    /*padding: 10px;*/
    list-style: none;
    margin-top: 0px;
    /*width: 15rem;*/
    color: var(--main-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 277px;
}

.horizontal-menu .menu-item:hover .submenu {
    display: flex;
    /*transform: translateX(-25%) translateY(0%);*/
    transition: all 0.3s;
    
    border-radius: 0.5rem;
    box-shadow: 0 1.875rem 5rem 0 rgba(0, 0, 0, 0.35);
    max-width: 64rem;
    width: max-content;
}

.horizontal-menu .submenu a {
    color: var(--main-color);
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    font-size: 17px;
}

.horizontal-menu .submenu a:hover {
  /*background-color: var(--main-color);
  border-bottom: 3px solid var(--main-color); */
  color: var(--main-color);
}


.submenu .submenu-left {
    padding: 2rem;
    width: 100%;
}

.submenu .submenu-left .submenu-left-group {
    /*min-width: 13.125rem;
    max-width: 19.6875rem;*/
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding: 0;
    margin-left: 0.25rem;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents {
    display: block;
    width: 100%;    
    margin: 1rem 0rem;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents:hover {
    border-radius: 0.375rem;
    background: #f5f6f8;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents a {
    display: flex;
    text-decoration: none;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents p {
    color: #767676;
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin-bottom: 0rem;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents .menu-icon {
    align-self: center;
    /* width: 4rem; */
    padding: 0rem 1rem;
}

.submenu .submenu-left .submenu-left-group .submenu-left-group-contents .menu-icon i {
    font-size: 25px;
}

.submenu .submenu-right {
    background-color: #f5f6f8;
    border-radius: 0.5rem;
}

.submenu-right-contents {
    padding: 3rem;
}

.submenu-right-contents-top img {
    border-radius: 5px;
}

.submenu-right-contents-bottom {
    margin-top: 2rem;
}

.submenu-right-contents-bottom h6 {
    color: var(--main-color);
    font-size: 16px;
}

.submenu-right-contents-bottom button {
    font-weight: 700;
    font-size: 12px;
}

.horizontal-menu .outer-sub {
    width: 100%;
    margin: auto;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

















/* Down arrow style */
.horizontal-menu .menu-item a i.fas.fa-chevron-down {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Rotate down arrow when parent menu item is hovered */
.horizontal-menu .menu-item:hover i.fas.fa-chevron-down {
    transform: rotate(180deg); /* Rotate the arrow */
}


/* Horizontal menu container */
.horizontal-menu-b {
    display: flex;
    justify-content: center;
    background-color: var(--text2-color);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 50px;
    font-family: var(--main-font), sans-serif;
}

/* Menu items within the horizontal menu */
.horizontal-menu-b .menu-item {
    position: relative;
    margin: 0 10px;
    list-style: none;
    width: 7rem;
    text-align: center;
}

/* Menu item links */
.horizontal-menu-b .menu-item a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Highlight the menu item on hover */
.horizontal-menu-b .menu-item:hover a {
    background-color: var(--main-color);
    color: #ffffff;
}

.horizontal-menu-b .menu-item:hover .submenu {
    display: block;
    z-index: 1;
}

.horizontal-menu-b .submenu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    padding: 10px;
    list-style: none;
    margin-top: 0px;
    width: 15rem;
    /* border: 1px solid; */
    color: var(--main-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);;
}

.horizontal-menu-b .submenu a {
    color: var(--main-color);
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.horizontal-menu-b .submenu a:hover {
    background-color: var(--main-color);
    color: var(--text-color)
}

.menu-b {
    /*width: 1280px;*/
    display: flex;
}

#menu-btn {
    color: var(--main-color);
    font-size: 20px;
    margin: auto;
    left: 20px;
    position: absolute;
    /* height: 100%; */
    cursor: pointer;
    display: flex;
}






.sidebar-menu {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: var(--main-color);
    padding-top: 50px;
    transition: 0.3s ease-in-out;
    z-index: 1000;
}
.sidebar-menu.active {
    left: 0;
}
.close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.close-btn:hover {
    transform: rotate(90deg);
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
.menu-overlay.active {
    display: block;
}

.side-menu-item {
    padding: 2rem;
    font-size: 16px;
    color: var(--text2-color);
    text-decoration: none;
    font-family: var(--main-font);
}

.side-menu-item a {
    padding: 2rem;
    font-size: 16px;
    color: var(--text2-color);
    text-decoration: none;
    font-family: var(--main-font);
}

.side-menu-item .submenu {
    display: none;
}

.side-menu-item:hover .submenu {
    display: block;
    position: absolute;
    width: 100%;
    left: 100%;
    /* width: 180px; */
    background: var(--main-color);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(0px) translateY(-50px);
    z-index: 999;
}

.side-menu-item .submenu a {
    padding: 2rem;
    font-size: 16px;
    color: var(--text2-color);
    text-decoration: none;
    font-family: var(--main-font);
    display: flex;
}

.side-menu-item .submenu a:hover {
    background-color: var(--main-color-hover);
    border-bottom: 3px solid var(--main-color);
    color: var(--text-color);
}






.home-menu {
    display: contents;
    gap: 20px;
}

/*.home-menu .menu-item a {
    font-weight: 300;
} */

.home-menu .menu-item {
    position: relative;
    overflow: hidden; /* Ensures smooth transitions without overflow */
}

.home-menu .menu-item a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* The main icon */
.home-menu .menu-item-icon {
    position: relative;
    font-size: 20px;
    color: var(--main-color);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Pseudo-element for the hover icon */
.home-menu .menu-item a::before {
    content: attr(data-icon);
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    color: var(--main-color); /* Hover icon color */
    top: -100%; /* Hidden above the menu item */
    left: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect */
.home-menu .menu-item:hover a::before {
    transform: translateY(0); /* Slide into place */
    top: 0;
}

.home-menu .menu-item:hover .menu-item-icon {
    transform: translateY(100%); /* Slide down */
    color: transparent; /* Optional: fade out the original icon */
}












/******************************************************************
    Menu Section
******************************************************************/

/* Adjust the width of the menu */
.top-menu {
	/*width: 100%;*/
	display: none;
}

.side-menu {
    width: 60px;
    transition: width 0.3s;
    overflow: hidden;
    white-space: nowrap;
	background-color: #141414;
}

.side-menu:hover {
    width: 200px;
}

.content {
	background-color: #000;
	min-height: 60vh;
}

.side-menu a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--text-color);
    font-weight: 300;
    transition: all 0.5s ease;
    border-bottom: 1px solid gray;
    height: 6rem;
    padding: 8px 16px;
}

.side-menu .fas {
	color: var(--main-color);
	transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
	position: relative;
	margin-right: 10px;
	font-size: 18px;
	/*top: -100%;*/
}

.side-menu a::before {
	content: attr(data-icon);
	position: absolute;
	top: -1px;
	/* left: 10px; */
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	color: var(--text-color);
	font-family: FontAwesome;
	margin-right: 10px;
}

.side-menu a:hover::before {
	top: 9px;
	transform: translateY(100%);
}

.side-menu a:hover .fas {
	top: 0;
	transform: translateY(100%);
	color: transparent;
}

.side-menu a .menu-text {
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.side-menu:hover a .menu-text {
    opacity: 1;
}

.side-menu a:hover {
    background-color: #444;
}









/********************************************************************
    # Messages
*********************************************************************/

#message-count,
#notification-count {
    position: absolute;
    font-size: 12px;
    height: 20px;
    width: 20px;
    position: absolute;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    margin: auto;
    align-content: center;
    text-align: center;
    /*display: < ?= $unreadMessagesCount > 0 ? 'block' : 'none' ?>; /* Hide if no unread messages */
}

.messages-count {
    /*position: absolute;*/
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
    /*display: < ?= $unreadMessagesCount > 0 ? 'block' : 'none' ?>; /* Hide if no unread messages */
}

.menu-messages-count {
    position: absolute;
    font-size: 12px;
    height: 20px;
    width: 20px;
    /* position: absolute; */
    /* right: -10px; */
    background-color: red;
    color: white;
    /* border-radius: 50%; */
    /* margin: auto; */
    align-content: center;
    text-align: center;
    /* padding: 1rem; */
    border-radius: 100%;
    line-height: 0;
}

.message-page {
    display: flex;
    min-height: 90vh;
}

#message-list {
    /*overflow-y: auto; */
    /* width: 100%; */
    /* max-width: 25rem; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 27rem;
    overflow-y: auto;
    height: 80vh;
    position: sticky;
    top: 10rem;
}

#message-list .list-group {
    border-radius: 0px;
}

#message-list-outer {
        /* overflow-y: auto; */
    /* height: 80vh; */
    /* width: 100%; */
    /* max-width: 25rem; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 25rem;
    /* position: sticky; */

}

.message-list-inner {
    /*position: sticky;
    top: -60rem;
    align-self: flex-start;
    overflow-y: auto;
    flex-grow: 1; */
    height: auto;
    border-right: 1px solid #ccc;
    padding-right: 1rem;
}

.message-top-buttons {
    background-color: #f9f9f9;
    height: 4rem;
    /* align-content: center; */
    text-align: end;
    border-right: 1px solid #e5e1e1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.message-main {
    width: 66.66666667%;
}

.message-main-top {
    background-color: #f9f9f9;
    height: 4rem;
    align-content: center;
    text-align: end;
    padding: 1rem;
}

#message-content {
    padding-left: 3rem;
    flex: 1;
    height: 80%;
}

#message-list .list-group-item {
    cursor: pointer;
}

#message-list .bg-warning {
    background-color: #658cb7; /* Highlight unread messages */
}

#message-list .bg-unread {
    background-color: #658cb7; /* Highlight unread messages */
}

#message-list .message-checkbox {
    margin-right: 10px;
}

/* Optional: Add a hover effect for messages in the list */
#message-list .list-group-item:hover {
    background-color: #f1f1f1;
}

/* Font Awesome trash icon styling *
.fas.fa-trash-alt {
    font-size: 16px;
    color: var(--main-color) /* Red color for the delete icon *
} */

.message-inbox{
    display: flex;
}

.row .col-md-4 {
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-top: var(--bs-gutter-y);
}

.no-message {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
}

.no-messages {
    justify-content: center;
    align-items: center;
    display: block;
    color: var(--main-color);
}

.no-messages .fa-envelope {    
    color: var(--main-color);
}
















/****************************************************************************************************
# Hero Section
****************************************************************************************************/

.hero {
    position: relative;
    width: 100%;
    /*height: 100vh; */
    height: 60vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%; /* 3 slides */
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    flex: 1;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: url('https://via.placeholder.com/1920x1080/007bff/ffffff?text=Slide+1');
}

.slide:nth-child(2) {
    background-image: url('https://via.placeholder.com/1920x1080/6c757d/ffffff?text=Slide+2');
}

.slide:nth-child(3) {
    background-image: url('https://via.placeholder.com/1920x1080/f8f9fa/000000?text=Slide+3');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    margin: 0 0.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #343a40;
}

.nav-btns {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-btn {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-btn.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}


















/*--------------------------------------------------------------
   # AI Intro
--------------------------------------------------------------*/
.purpai-wrapper {
  position: relative;
  /*overflow: hidden;*/
}

/* Initial wasp position (centered and floating) */
.ai-section {
  position: absolute;
    top: -120px;
    left: 85%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.6s ease;
}

/* Image styling */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(92, 45, 145, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(92, 45, 145, 0.6));
  }
}

.ai-intro-section img {
  width: 420px;
  height: auto;
  animation: float 3s ease-in-out infinite, pulse-glow 2.5s ease-in-out infinite;
  transition: filter 0.3s ease;
  cursor: pointer;
}

.ai-intro-section:hover img {
  filter: drop-shadow(0 0 10px rgba(92, 45, 145, 0.4));
}

/* Content hidden initially */
.ai-section-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding-top: 100px;
  display: none;
}

.purpai-contents {
  display: flex;
  align-items: center;
}

.purpai-content-left {
  width: 65%;
  padding-left: 150px;
}

.purpai-content-left h2 {
  color: var(--main-color);
  font-size: 30px;
}

.purpai-content-left p {
  font-size: 17px;
}

.purpai-content-right {
  width: 40%;
  height: 500px;
  position: relative;
}

/* --- HOVER BEHAVIOR --- */
.purpai-wrapper:hover .ai-section {
  /* Move to align with purpai-content-right */
  top: 100px; /* Adjust as needed */
  left: calc(100% - 25% - 200px); /* 40% right side, minus half image width */
  transform: none;
}

.purpai-wrapper:hover .ai-section-content {
  opacity: 1;
  pointer-events: auto;
  display: block;
}




.ai-section2 {
    position: relative;
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

/* The wasp image will be positioned over the edge, responsive and fixed */
.ai-intro-section2 {
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

/* Image sizing is responsive */
.ai-intro-section2 img {    
    width: 250px;
    height: auto;
    right: 0;
    position: absolute;
} 


/* Default style */
.ai-intro-section2 img {
  transition: transform 0.4s ease, filter 0.3s ease;
  will-change: transform;
}

/* On hover */
.ai-intro-section2:hover img {
  /*transform: scale(1.05) rotate(-2deg);*/
  filter: drop-shadow(0 0 10px rgba(92, 45, 145, 0.4));
}



@media screen and (max-width: 768px){
    .purpai-content-left {
        width: 65%;
        padding-left: 50px;
    }

    .ai-section {
        position: absolute;
        top: 100px;
        left: 30%;
        transform: translateX(0%);
        z-index: 10;
        transition: all 0.6s ease;
        overflow: hidden;
        width: 100%;
        margin: auto;
    }

    .ai-section-content {
        opacity: 1;
        pointer-events: none;
        transition: opacity 0.5s ease;
        padding-top: 100px;
        display: block;
        z-index: 13;
        position: relative;
    }

    .purpai-wrapper {
        position: relative;
        overflow: hidden;
    }

    .purpai-wrapper:hover .ai-section {
        top: 100px;
        left: calc(100% - 25% - 200px);
        transform: none;
        /* width: 100%; */
    } 
}











/*--------------------------------------------------------------
   # Logo Section
--------------------------------------------------------------*/

.logoSlider {
    background: #0000;
    /*height: 75pt;*/
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    cursor: default;
    user-select: none;
    /*touch-action: none;
    /*margin-top: 10rem;
    margin-top: -13rem; */
    display: block;
    padding: 6rem 0rem 0rem 0rem;
}
 
.logoSlider:before {
    left: 0;
    top: 0;
}
 
.logoSlider:after,
.logoSlider:before {
    /*background: linear-gradient(
    to right,
    #000 0%,
    hsla(0, 0%, 100%, 0) 100%);*/
    content: "";
    height: 75pt;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.logoSlider:after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.logoSlider:after,
.logoSlider:before {
    /*background: linear-gradient(
    to right,
    #000 0%,
    hsla(0, 0%, 100%, 0) 100%);*/
    content: "";
    height: 75pt;
    position: absolute;
    width: 200px;
    z-index: 2;
}
 
.logoSlider .slide-track {
    animation: scroll-l 30s linear infinite;
    display: flex;
    width: 4500px;
}

.logoSlider .slide-track-2 {
    animation: scroll-r 30s linear infinite;
    display: flex;
    width: 4500px;
}
 
.logoSlider .slidee {
    height: 75pt;
    width: 250px;
    display: flex;
    align-items: center;
    text-align: center;
}

.logoSlider .slidee img {
    width: 180px;
    padding: 1pc;
    vertical-align: middle;
    margin: 0 auto;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.logoSlider .container .row .section-title h4 {
    font-family: var(--main-font);
    font-weight: 500;
    line-height: 1.1;
    color: var(--main-color);
    font-size: 20px;
}
 
@keyframes scroll-l {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll-r {
    100% {
        transform: translateX(0);
    }
    0% {
        transform: translateX(calc(-250px * 7));
    }
}

















/*******************************************************************************
    # Grid Section
*******************************************************************************/

.feature-grid-sec {
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.feature-grid-sec .section-title {
    margin-bottom: 76px;
}

/*.section-title.title-shape {
    margin-top: 76px;
}*/

.section-title {
    margin-bottom: 20px;
    text-align: center;
}


.section-title.title-shape h2, .section-title.title-shape .h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.section-title h2, .section-title .h2 {
    font-size: 30px;
    line-height: 49px;
    color: #231F20;
    font-family: var(--main-font);
    color: var(--main-color);
}

/*.section-title.title-shape h2:before, 
.section-title.title-shape .h2:before, 
.section-title.title-shape h2:after, 
.section-title.title-shape .h2:after {
    content: "";
    background-image: url(assets/img/shape1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 478px;
    width: 100%;
    height: 28px;
    margin: 0 30px 0 -50px;
} */

.section-title.title-shape h2::before, 
.section-title.title-shape .h2::before, 
.section-title.title-shape h2::after, 
.section-title.title-shape .h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color); /* or your desired line color */
    margin: 0 20px;
}

.section-title.title-shape h2:after, .section-title.title-shape .h2:after {
    margin: 0 -50px 0 30px;
    transform: rotate(180deg);
}

.feature-grid-sec .section-title p {
    margin-top: 29px;
}

.section-title.title-shape p {
    max-width: 770px;
    /*margin: 30px auto 0;*/
    text-align: center;
    color: var(--main-color);
    margin: auto;
}

.section-title p {
    font-size: 18px;
    line-height: 26px;
    /*margin-top: 29px;*/
}

.feature-grid-sec .grid-card-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.feature-grid-sec .grid-card-head.grid-5 li {
    padding: 0 15px;
    max-width: 33.333%;
    flex: 0 0 33.333%;
    margin-bottom: 10rem;
}

.feature-grid-sec .grid-card-head li .grid-card {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 6px;
    border: none;
    padding: 2rem;
    margin-bottom: 0rem;
}

.feature-grid-sec .grid-card-head li .grid-card:hover {
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
    transition: 300ms ease-in, background 300ms ease-in, box-shadow 300ms ease-in;
}

.invisible-anchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    appearance: none;
    z-index: 9;
}

.feature-grid-sec .grid-card-head li .grid-card-body {
    margin-bottom: 0px;
}

.feature-grid-sec .grid-card-head li .grid-card .grid-img {
    max-width: 60px;
    height: 60px;
    width: 100%;
    margin: 0 auto 11px;
    transition: all 0.3s;
}

.feature-grid-sec .grid-card-head li .grid-card .grid-img img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    height: 100%;
}

.feature-grid-sec .grid-card-head li .grid-card:hover .grid-img img {
    width: 110%;
    height: 110%;
    margin: auto;
    transition: 300ms ease-in, 300ms ease-out;
}

.feature-grid-sec .grid-card-head li .grid-card h3, .feature-grid-sec .grid-card-head li .grid-card .h3 {
    font-size: 20px;
    color: var(--main-color);
    line-height: 26px;
}

.feature-grid-sec .grid-card-head li .grid-card p {
    margin-top: 13px;
    color: var(--main-color);
    font-size: 16px;
}

.grid-card i {
    font-size: 5rem;
    color: var(--main-color);
}

.btn-tertiary {
    color: var(--main-color);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    padding-right: 17px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
    max-width: fit-content;
    display: inline-block;
    text-decoration: unset;
    z-index: 9;
}

.btn-tertiary i {
    position: absolute;
    font-size: 12px;
    width: 12px;
    height: 12px;
    line-height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #299A79;
}

.icon-double-arrow:before {
    content: "";
}













/*******************************************************************************
    # Call To Action Section
*******************************************************************************/

#royalty {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 35vh;
    /* background-color: #f0f0f0; */
    background-size: cover;
    background-color: var(--bg-color);
}
  
#royalty1 {
    width: 100%;
    height: 100%;
    margin-top: 10rem;
    background-size: cover;
    background-position: center;
}
  
#royalty2 {
    position: absolute;
    top: 0;
    right: 100px;
    /*width: 200px; /* Adjust the width as needed *
    width: 50%; */
    height: 100%;
    /*background-color: #ddd;
    opacity: 0.8; */
    align-items: center;
    justify-content: center;
    display: flex;
}
  
#royalty2 p {
    /*font-family: fantasy;*/
    font-family: var(main-font);
    /*font-size: 7rem;*/
    /*text-transform: uppercase;*/
    /*width: 70%;*/
}

.royalty-overlay {
        display: none;
    }


.button-wrapper {
    /*position: absolute;*/
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /*z-index: 999;*/
    width: 70%;
}
    
.button-wrapper h2 {
    font-size: 6rem;
}


     
/*.button {
    border: none;
    border-radius: 1em;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    display: inline-block;
    font-size: 2rem;
    padding: 1em 2em;
    width: auto;
}
  
.cta-button {
    background-color: #000;
    color: #fff !important;
}
     
.cta-button:hover {
    background-color: #777;
} 

.cta-button {
    width: 300px;
    height: 100px;
    border: none;
    color: white;
    background-color: var(--main-color);
    border-radius: 5px;
    box-shadow: inset 0 0 0 0 #f9e506;
    transition: ease-out 0.3s;
    font-size: 2rem;
    outline: none;
}

.cta-button:hover {
    box-shadow: inset 300px 0 0 0 #f9e506;
    cursor: pointer;
    color: var(--main-color);
} */

.cta {
    justify-items: center;
}

.demo-trigger {
    background-color: transparent;
    color: var(--text-color)
}

.cta-button {
    width: 200px;
    height: 60px;
    border: none;
    color: white;
    border-radius: 5px;
    transition: ease-out 0.3s;
    font-size: 2rem;
    outline: none;
    border: 3px solid var(--text-color);
    position: relative;
    display: block;
    align-content: center;
    text-transform: uppercase;
    font-weight: 400;
    justify-self: center;
    text-decoration: none;
    /*background-color: transparent;*/
}

.cta-button:hover {
    color: var(--main-color);
    cursor: pointer;
}

.cta-button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--text-color);
    border: 3px solid var(--main-color);
}

.cta-button:hover:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}


.cta1 {
    font-family: var(--main-font);
    width: 62rem;
}


.cta1 h2 {
    font-size: 30px;
}


.cta1 p {
    font-size: 17px;
    color: var(--text-color);
}



























/*--------------------------------------------------------------
    # Footer
--------------------------------------------------------------*
#footer {
  /*background: #f2f5f8;*
  padding: 0 0 30px 0;
  font-size: 14px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  border-bottom: 2px solid hsl(0deg 0% 100% / 50.98%);
  border-top: 2px solid hsl(0deg 0% 100% / 50.98%);
}*/

.footer-area-bottom {
    border-top: 1px solid;
    margin-top: 4rem;
}

.footer .copyright {
    text-align: center;
    padding-top: 0px;
    float: left;
    padding-bottom: 0px;
    color: var(--text-color)
}

.footer .credits {
    text-align: center;
    font-size: 13px;
    color: #555;
    float: right;
    padding-top: 30px;
}

.footer .credits a {
    color: #9f9f9f;
    padding-right: 30px;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    /*padding: 50px 0;*/
    padding: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    /*border-bottom: 1px solid hsl(0deg 0% 100% / 50.98%);*/
}

ul {
    list-style: none;
}

footer {
    font-size: 1spx;
    position: relative;
    bottom: 0px;
    width: 100%;
    border-top: 1px solid hsl(0deg 0% 100% / 50.98%);
    background-color: var(--main-color);
    padding-top: 2rem;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    /*left: 0;*/
    bottom: -10px;
    height: 2px;
    box-sizing: border-box;
    background-color: var(--text-color);
    width: 50px;
}

.footer-col ul {
    padding: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all .50s ease;
}

.footer-col ul li a:hover {
    color: var(--text-color);
    padding-left: 10px;
    font-weight: 600;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.5s ease;
    align-content: center;
}

.footer-col .social-links a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
}






/************************************************************************************
# Footer Bottom
************************************************************************************/

.footer-bottom .footer-bottom-up {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 22px;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a:not(:last-of-type) {
    margin-right: 34px;
}

.footer-social a i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: .3s;
}



.footer-bottom .footer-bottom-up {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 22px;
    margin-top: 5rem;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a:not(:last-of-type) {
    margin-right: 34px;
}

footer .footer-social a {
    font-size: 0;
}
.footer-social a {
    width: 20px;
    height: 20px;
}

.footer-social a i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.footer-bottom .footer-bottom-up .social-links a i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.5s ease;
    align-content: center;
    font-size: 2rem;
}




.footer-bottom .footer-bottom-down {
    border-top: 1px solid #6641f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 5rem;
}


.footer-logo img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.footer-site-info {
    max-width: 750px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.footer-site-info p {
    font-size: 10px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0rem;
    font-size: 13px;
}

.footer-site-info p a {
    font-size: 13px;
    line-height: 20px;
    text-decoration: unset;
    text-transform: capitalize;
    padding: 0 6px;
    position: relative;
    color: #fff;
    display: inline-block;
    margin: 0;
}

.footer-site-info p a:not(:last-of-type):before {
    content: "";
    position: absolute;
    right: -1px;
    top: 2px;
    width: 1px;
    height: calc(100% - 3px);
    background-color: #fff;
}


.footer-security-card {
    width: 260px;
    height: 100px;
    overflow: hidden;
}

.footer-security-card iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}






 
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #141414;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 9999;
    /* margin: auto; */
    /*height: 50%;*/
    width: 50%;
    border-radius: 10px;
}
 
.popup form {
    text-align: center;
}

.popup textarea {
    width: 100%;
    height: 67vh;
    border-radius: 3px;
    font-size: 16px;
    background-color: transparent;
}

.popup textarea p {
    color: white;
}

.popup-header {
    display: flex;
    justify-content: flex-end;
}
 
.popup-header button {
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/*.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    padding: 6rem;
} */

.main-container-user {
    display: grid;
    /* grid-template-columns: 15% 1fr; */
    min-height: 60vh;
}













/****************************************************************
    Ask PurpAI
****************************************************************/

.ask-purpai {
    border: 1px solid var(--main-color);
    padding: 7px 18px;
    border-radius: 28px;
}

.ask-purpai button {
    display: flex; 
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    color: var(--main-color);
    padding: 0px;
    border: none;
}

.ask-purpai img {
    margin-right: 10px;
}

.ask-purpai p {
    margin-bottom: 0rem;
    font-size: 13px;
    text-decoration: none;
}





/****************************************************************
    Chat Container
****************************************************************/

.chat-container {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 10;
}

.chat-toggle {
    cursor: pointer;
    font-size: 2rem;
    color: #25D366;
}











/****************************************************************
    Scroll to Top
****************************************************************/
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: -30px;
    right: 20px;
    cursor: pointer;
    font-size: 1rem;
    color: #000;
    margin-bottom: 60px;
    z-index: 10;
}

.scroll-to-top .fa-angle-up {
    background-color: var(--text-color);
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}





















/****************************************************************
    #Modal
****************************************************************/

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    align-content: center;
  }
  
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
  }
  
  .close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  
  .modal-content h2 {
    margin-top: 0;
    color: var(--main-color);
  }

  .modal-content label {
    color: var(--main-color);
    font-size: 15px;
  }
  
  .modal-content form {
    display: flex;
    flex-direction: column;
  }
  
  .modal-content input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
  }
  
  .modal-content button[type="submit"] {
    background-color: var(--main-color);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
  }

  .quiz-input {
    /* height: 30px; */
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    color: #000;
    height: 40px;
    font-size: 15px;
    border: transparent;
    display: block;
    border-bottom: 1px solid var(--main-color);
    background-color: transparent;
}

.cm360-btn {
    background-color: var(--main-color);
    /*font-weight: bold;*/
    color: #fff;
    /*padding: 7px;*/
    border-radius: 5px;
    border: 1px solid var(--main-color);
    font-size:14px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.cm360-btn:hover {
    background-color: transparent;
    color: var(--main-color);
    /*padding: 7px;*/
    border: 1px solid var(--main-color);
    font-size:14px;
}

.p-btn {
    padding: 10px;
}





















/************************************************************************************
# Index Page
************************************************************************************/


.fade-slideshow {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fade-slideshow img.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.fade-slideshow img.slide.active {
  opacity: 1;
  z-index: 1;
      display: block;
    /* height: 1984px; */
    position: relative;
}


.hero-sec {
        min-height: 34.38rem;
    }

    .hero-sec {
        padding: 30px 0;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .container {
        max-width: 1300px;
    }    

    .hero-sec.image-sec .row {
        align-items: center;
    }
    .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1* var(--bs-gutter-y));
        margin-right: calc(-.5* var(--bs-gutter-x));
        margin-left: calc(-.5* var(--bs-gutter-x));
    }

    @media (min-width: 992px) {
    .hero-sec .disc-col .hero-disc {
        margin-top: 0px !important;
        }
    }
    @media (max-width: 1400px) {
        .hero-sec .hero-disc {
            margin-top: 40px;
        }
    }

    @media (min-width: 1281px) {
        .hero-sec .hero-disc {
            padding-left: 0px;
        }
    }
    .hero-sec .hero-disc {
        max-width: 590px;
        margin-top: 60px;
        position: relative;
        z-index: 1;
        padding-left: 43px;
    }

    .hero-sec .hero-disc p {
        margin-top: 18px;
        font-size: 20px;
        line-height: 1.5;
        color: #231F20;
        max-width: 460px;
    }

    .hero-sec .hero-disc::before {
        content: "";
        position: absolute;
        left: -60px;
        top: 20px;
        width: 29px;
        max-height: 572px;
        height: 100%;
        background-image: url(../img/hero-shape.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .hero-sec .hero-disc h1, .hero-sec .hero-disc .h1 {
        font-size: 76px;
        line-height: 1;
        font-weight: 900;
        color: var(--main-color);
        font-family: 'Anton';
    }

    .hero-sec .hero-disc .hero-cta {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
    }

    .hero-sec .hero-disc .hero-cta {
        margin-top: 24px;
    }

    @media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
        }
    }

    @media (min-width: 992px) {
    .hero-sec.image-sec .hero-media {
        width: 100% !important;
        height: 100% !important;
        max-height: 715px !important;
        }
    }

    @media (max-width: 992px) {
        .hero-sec .row {
            position: relative;
        }

        .disc-col {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .media-col {
            position: relative;
            z-index: 1;
        }

        .hero-media img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .hero-sec .hero-disc {
            max-width: 590px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
            padding-left: 0px;
        }

        .hero-sec .hero-disc h1, .hero-sec .hero-disc .h1 {
            font-size: 43px;
            line-height: 1;
            font-weight: bolder;
            color: var(--main-color);
            font-family: Inter;
            text-align: left;
        }

        .hero-sec .hero-disc p {
            margin-top: 18px;
            font-size: 20px;
            line-height: 1.5;
            color: #231F20;
            max-width: 460px;
            text-align: left;
        }
    }

    @media screen and (max-width: 767px){
        .hero-sec .hero-disc h1, .hero-sec .hero-disc .h1 {
            font-size: 43px;
            line-height: 1;
            font-weight: bolder;
            color: var(--main-color);
            font-family: Inter;
            text-align: center;
        }

        #typewriter-text {
            font-size: 38px;
            color: var(--main-color-hover);
            font-family: Anton, sans-serif;
            max-width: 640px;
            top: 80px;
            height: 65px;
            white-space: pre-wrap;
            overflow: hidden;
        }
    }

    .hero-sec .hero-media {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        width: calc(100% + 79px);
        max-width: 814px;
        height: 715px;
    }

    .hero-sec .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-cta-button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 18px;
      color: white;
      background-color: var(--main-color);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      /* Apply animation */
      animation: pulse 2s infinite;
    }

    .hero-cta a {
      color: var(--text-color);
      text-decoration: none;
    }

    /* Pulse animation using keyframes */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      }
    }

    .hero-cta-button2 {
        width: auto;
        height: 60px;
        border: none;
        color: var(--main-color);
        border-radius: 5px;
        transition: ease-out 0.3s;
        font-size: 2rem;
        outline: none;
        border: 3px solid var(--main-color);
        position: relative;
        display: block;
        align-content: center;
        text-transform: uppercase;
        font-weight: 900;
        padding: 0rem 2rem;
        background-color: var(--main-color);
    }

    .hero-cta-button2:hover {
        color: var(--main-color);
        cursor: pointer;
        z-index: 10;
    }

    .hero-cta-button2:before {
        transition: 0.5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: "";
        background-color: var(--text-color);
        /*border: 3px solid red;*/
    }

    .hero-cta-button2:hover:before {
        transition: 0.5s all ease;
        left: 0;
        right: 0;
        opacity: 1;
        z-index: -1;
    }


    .cta-bounce {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        background-color: #4caf50;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        animation: bounce 1.5s infinite;
    }

    @keyframes bounce {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-10px);
        }
    }

    .cta-glow {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        background-color: #6200ea;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        text-shadow: 0 0 5px white;
        animation: glow 2s infinite;
    }

    @keyframes glow {
        0%, 100% {
        box-shadow: 0 0 10px #ffffff, 0 0 20px #6200ea, 0 0 30px #6200ea;
        }
        50% {
        box-shadow: 0 0 20px #ffffff, 0 0 30px #6200ea, 0 0 40px #6200ea;
        }
    }

    .cta-color-change {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        background-color: #03a9f4;
        animation: colorChange 3s infinite;
    }

    @keyframes colorChange {
        0% {
        background-color: #03a9f4;
        }
        33% {
        background-color: #e91e63;
        }
        66% {
        background-color: #ffc107;
        }
        100% {
        background-color: #03a9f4;
        }
    }

    .cta-wiggle {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        background-color: #ff9800;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        animation: wiggle 1s infinite;
    }

    @keyframes wiggle {
        0%, 100% {
        transform: rotate(0);
        }
        25% {
        transform: rotate(3deg);
        }
        50% {
        transform: rotate(-3deg);
        }
        75% {
        transform: rotate(2deg);
        }
    }

    .cta-spin {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        background-color: #009688;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-weight: bold;
        animation: spin 2s linear infinite;
    }

    @keyframes spin {
        0% {
        transform: rotate(0deg);
        }
        100% {
        transform: rotate(360deg);
        }
    }

    .cta-border-expand {
        display: inline-block;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        background-color: #f44336;
        border: 2px solid transparent;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        animation: borderExpand 2s infinite;
    }

    @keyframes borderExpand {
        0% {
        border-color: transparent;
        box-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
        }
        50% {
        border-color: #f44336;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
        }
        100% {
        border-color: transparent;
        box-shadow: 0 0 0 rgba(255, 0, 0, 0.5);
        }
    }



    .menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu li {
        padding: 10px 20px;
        cursor: pointer;
        margin: 10px 0;
        position: relative;
        display:flex;
    }

    .circle {
        width: 15px;
        height: 15px;
        background-color: #007bff;
        border-radius: 50%;
        position: absolute;
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translateY(-50%); */
    }

    .line {
        width: 25px;
        height: 25px;
        border: 2px solid red;
        border-radius: 50%;
        position: absolute;
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translateY(-50%); */
        /* transition: transform 0.3sease; */
        display: flex;
    }

    @keyframes beat {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.3);
        }
    } 

    .menu li:hover .line {
        animation: beat 0.5s infinite;
    }

    .multi-col-sec .section-title {
        margin-bottom: 76px;
    }

    /*.select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: var(--main-color);
        border: 1px solid #aaa;
        border-radius: 4px;
        box-sizing: border-box;
        display: inline-block;
        margin-left: 5px;
        margin-top: 5px;
        padding: 0;
        padding-left: 20px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    } */

    .select2-container {
        box-sizing: border-box;
        display: inline-block;
        margin: 0;
        position: relative;
        vertical-align: middle;
        width: 100%;
    }

    .select2-container span {
        display: flex;
        width: 100%;
    }

    .select2-container--default.select2-container--focus .select2-selection--multiple {
        border: none;
        outline: 0;
        /* height: 5rem; */
        border-bottom: 1px solid var(--main-color);
    }

    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: var(--main-color);
        color: white;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        /*background-color: var(--main-color);
        border: 1px solid var(--main-color);*/

        background-color: transparent;
        border: none;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        /* padding: 0 16px; */
        font-size: 16px;
        /*padding: 7px 14px;*/
    } 

    .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
        cursor: default;
        padding-left: 2px;
        padding-right: 5px;
        color: var(--main-color-hover);
    }

    .select2-container--default .select2-results__option[aria-selected=true] {
        background-color:var(--main-color-hover);
    }

    .select2-container--default .select2-search--inline .select2-search__field {
        background: transparent;
        border: none;
        outline: 0;
        box-shadow: none;
        -webkit-appearance: textfield;
        font-size: 16px;
        width: 100%;
    }


    .select2-container--open .select2-dropdown--below,
    .select2-container--open .select2-dropdown--above {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        /*background-color: #141414; */
        color: var(--main-color);
    }

    .select2-container--open .select2-dropdown {
        left: 0;
        color: green;
    }

    .select2-dropdown {
        background-color: var(--main-color);
        border: 1px solid #aaa;
        border-radius: 4px;
        box-sizing: border-box;
        display: block;
        position: absolute;
        left: -100000px;
        width: 100%;
        z-index: 1051;
        color: green;
    }

    .select2-container--default .select2-selection--multiple {
        /*background-color: var(--bg2-color); */
        /* border: 1px solid #aaa; */
        border-radius: 4px;
        cursor: text;
        border: none;
        border-bottom: 1px solid var(--main-color);
    }

    .select2-results__option[aria-selected] {
        cursor: pointer;
        font-size: 15px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        background-color: transparent;
        border: none;
        /* border-right: 1px solid #aaa; */
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #999;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
        padding: 0 4px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        background-color: transparent;
        border: none;
        /* border-right: 1px solid #aaa; */
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #999;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
        padding: 0 4px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
        color: var(--main-color-hover);
    }

    .select2-container--default .select2-results>.select2-results__options {
        max-height: 200px;
        overflow-y: auto;
        width: 100%;
    }

    .invalid-answer {
        border: 2px solid red !important;
    }

    .valid-answer {
        border: 2px solid green !important;
    }









    














/************************************************************************************
# Overview Page
************************************************************************************/
.overview {
    margin: 6rem 0rem;
}

.overview-ext {
    min-height: 70rem;
    background-color: #efefef;
    align-content: center;
    height: 100%;
}

.overview-container {
    min-height: 37.5rem;
    display: flex;
    flex-flow: row nowrap;
    height: 55rem;
    margin-bottom: 15rem;
}

.overview-container-left,
.overview-container-right {
    width: 50%;
    align-content: center;
}


.overview-container-left h2,
.overview-container-right h2 {
    color: var(--main-color);
    font-size: 2.75rem;
}

.overview-container-left p,
.overview-container-right p {
    margin-bottom: 1.25rem;
    font-size: 18px;
    /*line-height: 2rem;*/
}

.overview-container-left li,
.overview-container-right li {
    margin-bottom: 1.25rem;
    font-size: 18px;
    margin-left: 2rem;
}

.overview-container-in {
    margin: 0rem 10rem;
}

#overview-img {
    width: 100%;
    height: 100%;
    /* margin-top: 10rem; */
    background-size: cover;
    background-position: center;
}

.overview-hero-sec {
    position: relative;
    width: 100%;
    height: 77vh;
    overflow: hidden;
}

.overview-hero-sec iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /*width: 177.77vh; /* 16:9 aspect ratio for full cover */
    width: 100%;
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 600px;
}

/* Style to make the list items inline with the paragraph */
.inline-list {
    list-style-type: circle; /* Makes the list use a disc bullet */
    padding-left: 0; /* Removes default padding */
    margin: 0; /* Removes margin */
}

.inline-list li {
    display: list-item; /* Makes the list items inline */
    margin-right: 10px; /* Adds space between list items */
}

/*.inline-list li::before {
    content: "•"; /* Adds a disc bullet before the list item *
    margin-right: 5px; /* Space between bullet and text *
    vertical-align: middle; /* Aligns the bullet with the text *
} */

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .overview-hero-sec {
        position: relative;
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

    .overview-hero-sec iframe {
        width: 300vw; /* widen to keep coverage on narrow screens */
        display: none;
    }

    .overview-container {
        min-height: 37.5rem;
        display: flex;
        flex-flow: row nowrap;
        height: 100%;
    }

    .overview-container-left,
    .overview-container-right {
        width: 100%;
        align-content: center;
        /*border-bottom: 1px solid #b7b7b7;*/
    }

    .overview-container-left h2, .overview-container-right h2 {
        color: var(--main-color);
        font-size: 2.75rem;
        text-align: center;
    }

    .overview-container-left p, .overview-container-right p {
        margin-bottom: 10rem;
        font-size: 18px;
        /* line-height: 2rem; */
        text-align: justify;
    }

    .overview-container-right {
        display: none;
    }

    .overview-container-in {
        margin: 0rem 1rem;
    }

    #request-demo .cta1 {
        font-family: var(--main-font);
        width: 100%;
    }
}



































/************************************************************************************
# Pricing Page
************************************************************************************/

.pricing-hero {
    display: flex;
    flex-wrap: wrap-reverse;
    text-align: center;
    justify-content: center;
    gap: 20px;
}

.pricing-hero-sec {
    margin: 40px;
}

.pricing-hero-dt {
    display: block;
    width: 100%;
}

.pricing-hero-row {

}

.pricing-hero-row h1 {
    color: var(--main-color);
    font-size: 4rem;
    font-family: var(--main-font);
}


.pricing-controls label {
    margin-right: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.currency-selector select {
    padding: 0.25rem 0.5rem;
    font-size: 0.95rem;
}


.pill-toggle {
    display: inline-flex;
    background: #eee;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.pill-option {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

.pill-option.active {
    background-color: #6b46c1; /* Purple shade */
    color: #fff;
}

.billing-calendar {
    display: flex;
    align-items: center;
}

.billing-calendar p {
    margin-top: 0;
    margin-bottom: 0rem;
    margin-left: 1rem;
    font-size: 14px;
    color: var(--main-color-hover);
}


.pricing-grid {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-column-gap: 16px;
    column-gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--main-color-hover);
}

.pricing-card:hover .most-popular{
    display: block;
}

.pricing-grid-card {
    border-radius: 16px;
    margin-top: 16px;
    /*padding: 20px;*/
    border: 2px solid #f1eeea;
}

.pricing-grid-card h3,
.pricing-grid-card p,
.pricing-grid-card li {
    color: var(--main-color)
}

.pricing-card-container {
    /* margin-top: 16px; */
    min-width: 0;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
    border-radius: 4px;
    /* border: 1px solid #d5d5d5; */
    padding: 35px;
    box-shadow: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    font-size: 14px;
}

.tier-title-container {
    height: 50px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.tier-title {
    max-width: 100%;
    margin: 8px 0;
    font-size: 1.238rem;
    color: #333333;
    letter-spacing: -0.36px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    max-width: calc(100% - 80px);
}

.tier {
    float: left;
    font-weight: bold;
    margin-right: 4px;
    color: var(--main-color);
    font-size: 3rem;
}

.price-tag-container {
    height: 110px;
}

.price-tag {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    font-size: 16px;
    font-family: Sofia Pro;
    font-weight: 400;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;

    height: 7rem;
    align-items: center;
}

.currency-sign {
    font-size: 48px;
    /*font-weight: 100;*/
}

.amount {
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -1px;
    margin-right: 8px;
}

.price-tag .price-description {
    line-height: 18px;
    color: #323338;
    margin-bottom: 4px;
    align-self: center;
}

.tier-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.product-price-total {
    /*font-size: 0.875rem;*/
    font-weight: bold;
}

.features-container {
    display: flex;
}

.icon {
    margin-right: 1rem;
}

.feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.get-started {
    background-color: var(--main-color);
    padding: 1rem;
    display: flex;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    color: var(--text2-color);
    border-radius: 5px;
    margin-top: 2rem;
}

.most-popular {
    background-color: var(--main-color-hover);
    display: block;
    width: 100%;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    padding: 6px 2rem;
    color: var(--text2-color);
    font-family: var(--main-font);
    font-size: 12px;
    display: none;
}



.feature-compare {
    padding: 6rem;
}

.feature-comparison-table {
    overflow-x: auto;
    margin-top: 1rem;
    font-size: 14px;
}

.feature-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.feature-comparison-table th,
.feature-comparison-table td {
    /*border: 1px solid #e0e0e0;*/
    border: 1px solid none;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.feature-comparison-table th {
    /*background-color: #f5f5f5;*/
    background-color: none;
    font-weight: 600;
    /*text-align: center;*/
}

.feature-comparison-table tr:nth-child(even) {
    background-color: #fafafa;
}

.feature-comparison-table td:nth-child(2),
.feature-comparison-table td:nth-child(3),
.feature-comparison-table td:nth-child(4),
.feature-comparison-table td:nth-child(5),
.feature-comparison-table th:nth-child(2),
.feature-comparison-table th:nth-child(3),
.feature-comparison-table th:nth-child(4),
.feature-comparison-table th:nth-child(5) {
  text-align: center;
}

.feature-comparison-toggle button {
    background-color: #6b46c1;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .feature-comparison-table {
        font-size: 0.875rem;
    }
}

.feature-comparison-table {
    transition: all 0.3s ease;
    opacity: 1;
}

.feature-comparison-table.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.centered-feature {
    text-align: center;
}



.FAQ {
    color: var(--main-color);
    font-size: 16px;
    margin: 5rem;
}

.faq-section {
  margin-top: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-heading {
  text-align: center;
  font-size: 2.75rem;
  font-weight: bold;
  margin: 5rem;
  color: var(--main-color);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.faq-question {
  all: unset;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: 0.5rem 0;
}

.faq-question::after {
  content: '+';
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /*padding-top: 0.5rem;*/
  padding: 2rem;
}

#request-demo {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 30vh;
    background-color: #f0f0f0;
    background-size: cover;
    /* background-color: var(--bg-color); */
    align-content: center;
    color: var(--main-color);
}

#request-demo-inner {
    position: relative;
    top: 0;
    /* right: 100px; */
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
}

#request-demo h2,
#request-demo p {
    color: var(--main-color);
}

.request-demo-cta-button {
    width: 200px;
    height: 60px;
    border: none;
    color: var(--main-color);
    border-radius: 5px;
    transition: ease-out 0.3s;
    font-size: 2rem;
    outline: none;
    border: 3px solid var(--main-color);
    position: relative;
    display: block;
    align-content: center;
    text-transform: uppercase;
    font-weight: 400;
    justify-self: center;
    text-decoration: none;
    /* background-color: transparent; */
}

.request-demo-cta-button:hover {
    color: var(--text-color);
    cursor: pointer;
}

.request-demo-cta-button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--main-color);
    border: 3px solid var(--main-color);
}

.request-demo-cta-button:hover:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

























.contact-us-main-container {
    max-width: 1100px;
    margin: auto;
    /* overflow-y: auto; */
    height: auto;
    transition: max-height 0.3s ease;
    margin-top: 2rem;
    font-size: 14px;
    min-height: 50rem;
    margin-bottom: 5rem;
    display: flex;
}













































/************************************************************************************************************

**************       ******      ******        *******      **********        ******  ******************
***************      ******      ******       *********     ***********       ******  ******************
******     ******    ******      ******      ***********    ************      ******  ******
******     ******    ******      ******     *************   ****** *******    ******  ******
****************     ******************    ***************  ******   ******   ******  ******************
***************      ******************    ***************  ******    ******  ******  ******************
******               ******      ******     *************   ******     ****** ******  ******
******               ******      ******      ***********    ******      ************  ******
******               ******      ******       *********     ******       ***********  ******************
******               ******      ******        *******      ******        **********  ******************

************************************************************************************************************/

@media screen and (max-width: 767px){

    /****************************************************************
     Header Section
    ****************************************************************/
    .hide-on-mobile {
        display: none;
    }

    .header .topbar .mobilemenu {
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }

    .header .topbar .mobilemenu .fa-bars{
        display: contents;
        width: 10rem;
        color: var(--main-color);
        font-size: 1.5rem;
    }
    
    .header .flex .navbar{
        position: absolute;
        top:99%; left:0; right:0;
        border-top: var(--border);
        border-bottom: var(--border);
        background-color: var(--white);
        transition: .2s linear;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    .header .flex .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        display: block;
        height: 100rem;
        background-color: black;
        width: 35rem;
        padding: 2rem;
    }
  
    .header .flex .navbar a{
        display: block;
        text-align: left;
        font-size: 15px;
        font-weight: 900;
        border-bottom: 1px solid var(--text2-color);
        width: 100%;
        padding: 2rem;
    }


    .header .flex .icons > *{
        margin-left: 0rem;
        /*font-size: 1.5rem;
        cursor: pointer;
        color:var(--text-color);
        display: flex; */
    }


    .login-btn {
        /* background-color: var(--main-color); */
        display: block;
        width: auto;
        /* margin-top: 1rem; */
        border-radius: .5rem;
        padding: 1rem 0rem;
        font-size: 14px;
        text-transform: capitalize;
        color: var(--main-color);
        cursor: pointer;
        text-align: center;
        /* border: 1px solid var(--main-color); */
        text-decoration: none;
        font-weight: 500;
        text-transform: uppercase;
    }

    
    #menu-btn{
        display: inline-block;
        /* margin-right: 1rem; */
        margin-top: 0.8rem;
        font-size: 20px;
        color: var(--main-color);
    }

    .flex-btn{
        flex-flow: column;
        gap:0;
        display: contents;
    }
    
    .flex-btn .btn{
        background-color: var(--main-color);
        width: auto;
        /*margin-right: 1rem;*/
        font-size: 12px;
        border: none;
    }
    
    .flex-btn .sign-up-btn {
        display: none;
    }


    .responsive-btn {
        white-space: nowrap;
        overflow: hidden;
        text-indent: -9999px;
        position: relative;
    }

    .responsive-btn i {
        text-indent: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .responsive-btn .robot-icon {
        display: none;
    }

    
    .header .flex .navbar .sign-up {
        bottom: 0;
        position: fixed;
        border: 1px solid var(--main-color);
        padding: 3rem;
        left: -2.1rem;
        display: block;
    }

    .logo{
        display: flex;
        align-items: center;
        background-image: url(../img/purplewasp.png);
        /*background-image: url(../img/thrixity_logo_b.png);*/
        width: 10%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }






    /****************
    # Horizontal Menu
    ****************/
    .horizontal-menu {
        display: none;
    }

    /* Base styles for the horizontal menu */
    .horizontal-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Hidden off-screen */
        width: 250px; /* Width of the menu */
        height: 100%;
        background-color: #333; /* Background color */
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease; /* Smooth sliding animation */
        z-index: 1000; /* Above all other elements */
    }

    /* Show the menu by changing the left position */
    .horizontal-menu.active {
        left: 0;
    }

    /* Menu item styles */
    .horizontal-menu .menu-item {
        width: 100%;
        padding: 1rem 0.5rem;
        text-align: left;
        border-bottom: 1px solid #444;
        cursor: pointer;
    }

    .horizontal-menu .menu-item a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        padding: 10px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 215px;
    }

    /* Menu button styles */
    #menu-btn {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #333;
        z-index: 1001; /* Above menu */
    }

    /* Overlay for when the menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999; /* Below menu but above everything else */
    }

    .menu-overlay.active {
        display: block;
    }

    
    
    
    
    
    
    
    
    /****************************************************************
     Menu Section
    ****************************************************************/
    /* Adjust the width of the menu */
    .side-menu {
    	/*width: 100%;*/
    	display: none;
    }
    
    .active {
    	background-color: var(--main-color);
    	color: #fff;
    }
    
    /* Adjust the width of the menu */
    .top-menu {
    	/*width: 100%;*/
    	display: grid;
    	text-align: center;
    }
    
    .top-menu-contents {
    	display: block;
    	width: 100%;
    	margin-top: 1rem;
    	border-radius: 0.5rem;
    	padding: 1rem 3rem;
    	font-size: 1.7rem;
    	text-transform: capitalize;
    	color: var(--white);
    	cursor: pointer;
    	text-align: center;
    	border-bottom: 0.5px dashed #6c6c6c;
    }
    
    .top-menu .fas {
    	color: var(--text2-color);
    	margin-right: 1.5rem;
    }














    /****************************************************************
        # Grid
    ****************************************************************/

    .feature-grid-sec .grid-card-head.grid-5 li {
        /* padding: 0 15px; */
        /* max-width: 33.333%; */
        /* flex: 0 0 33.333%; */
        /* margin-bottom: 10rem; */
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 10rem;
        border-bottom: 1px solid black;
    }

    .feature-grid-sec .grid-card-head li .grid-card {        
        margin-bottom: 5rem;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    /****************************************************************
        # CTA
    ****************************************************************/

    #royalty1 {
        width: 100%;
        height: 100%;
        margin-top: 10rem;
        background-size: cover;
        background-position: unset;
    }

    #royalty2 {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        width: 100%;
    }
    
    #royalty2 p {
        /* font-family: fantasy; */
        font-family: var(--main-font);
        font-size: 1.5rem;
        /*text-transform: uppercase;
        /* width: 70%; */
        color: var(--text-color);
    }

    .royalty-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 5;
    }

    #royalty2 .cta1 {
        font-family: var(--main-font);
        width: 100%;
        z-index: 9;
        text-align: center;
    }

    #royalty2 .cta1 p {
        color: var(--text-color);
    }






    /*--------------------------------------------------------------
        # Footer
    --------------------------------------------------------------*/
    
    .row {
        padding: 50px 0; 
        display: contents;
        /* flex-wrap: wrap; */
        border-bottom: 1px solid hsl(0deg 0% 100% / 50.98%);
        text-align: center;
    }

    .footer-col{
        width: 100%;
        margin-bottom: 30px;
        display: none;
    }

    .footer-col:nth-child(1) {
        display: block;
    }

    .footer .copyright {
        text-align: center;
        padding-top: 30px;
        float: none;
        padding-bottom: 90px;
        color: var(--text-color);
    }
    
    .footer .credits {
        text-align: center;
        font-size: 13px;
        color: #555;
        float: none;
        padding-top: 30px;
    }

    .footer-site-info {
        max-width: 750px;
        padding: 0 15px;
        display: block;
        align-items: center;
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        float: none;
        padding-bottom: 90px;
        color: var(--text-color);
    }

    .footer-bottom .footer-bottom-up {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 22px;
        justify-content: center;
        margin-top: 0rem;
    }

    .footer-bottom .footer-bottom-down {
        border-top: 1px solid #6641f3;
        display: block;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
    }


    .section-title.title-shape h2, .section-title.title-shape .h2 {
        display: block;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        /* width: 100%; */
    }
    
    .section-title.title-shape h2::before, 
    .section-title.title-shape .h2::before, 
    .section-title.title-shape h2::after, 
    .section-title.title-shape .h2::after {
        content: "";
        display: block;
        width: auto;
        height: 1px;
        background-color: var(--main-color); /* or your desired line color */
        margin: 0 20px;
        /*display: none;*/
    } 

    .feature-grid-sec ol ul {
        padding-left: 0rem;
    }

    .feature-grid-sec .grid-card-head {
        padding-left: 0rem;
    }

    .pricing-grid {
        display: contents;
    }

    .feature-compare {
        display: none;
    }











    /*************************************************************************************
        #Contact Us Page
    *************************************************************************************/

    .contact-us-main-container {
        max-width: 1100px;
        margin: auto;
        /* overflow-y: auto; */
        height: auto;
        transition: max-height 0.3s ease;
        margin-top: 2rem;
        font-size: 14px;
        min-height: 50rem;
        margin-bottom: 5rem;
        display: block;
    }

    .contact-us-container {
        width: 100%;
        align-self: center;
        padding: 3rem;
    }
}