@import "normalize.css" layer(demo.support);
@import "https://unpkg.com/open-props" layer(design.system);

:root {
    --primary: #5f2595;
    --primary-light: #ddd8fa;
    --secondary: #5f2595;
    --secondary-light: #ddd8fa;
    --bs-offcanvas-transition-custom: transform 0.5s ease-in-out;
    --custom-offcanvas-width: 300px;
}

* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
}

.section {
    padding-top: calc(50px + 1.5vw);
    padding-bottom: calc(50px + 1.5vw);
}

footer.sticky-top {
    top: calc(100vh - 56px) !important;
}

.fw-small {
    font-size: .68rem;
    ;
}

.bg-purple {
    background-color: var(--primary);
}

.text-purple {
    color: var(--primary);
}

.bg-sea-green {
    background-color: var(--secondary-light);
}

.text-sea-green {
    color: var(--secondary-light);
}

.section-bg-sea-green {
    background-color: var(--secondary);
}

.text-shadow {
    text-shadow: 1px 1px 1px #959595;
}

.btn-secondary-custom {
    background-color: var(--secondary);
    color: #fff
}

.btn-secondary-custom:hover {
    background-color: #7437ad;
    color: #fff
}

::-moz-selection {
    color: #000;
    background: var(--secondary-light);
}

::selection {
    color: #000;
    background: var(--secondary-light);
}

.navbar img.logo {
    max-height: 52px
}

.navbar .icon-bar {
    width: 30px;
    background: #000;
    height: 2px;
}
.nav-link{
    font-size: 0.9em;
}

.offcanvas.offcanvas-start {
    width: var(--custom-offcanvas-width);
}

.offcanvas {
    transition: var(--bs-offcanvas-transition-custom);
}
.dropdown-menu[data-bs-popper] {
    top: 100%;
    right: 0;
    left:auto;
    margin-top: var(--bs-dropdown-spacer);
}
@media (max-width:768px){
    .dropdown-menu[data-bs-popper] {
        top: 100%;
        right: 0;
        left:auto;
        margin-top: var(--bs-dropdown-spacer);
    }
}


/* Hero Section */

@import url("https://fonts.googleapis.com/css2?family=Marko+One&display=swap");
section#hero {
    --animation-float-custom: float 3s var(--ease-in-out-2) infinite;
    /* min-block-size: 92vh; */
    max-height: 92vh;
    overflow: hidden;
    position: relative;
    /* display: grid; */
    /* place-content: center; */
    /* background-image: linear-gradient(180deg in oklab,
    var(--secondary) 0%,
    70%,
    oklch(98% 0.01 170) 101% 101%); */
}

#hero h1 {
    font-family: "Marko One", serif;
    color: white;
    text-shadow: var(--shadow-4);
    font-size: clamp(3rem, 10vw, 6rem);
    text-align: center;
}

#hero picture {
    position: absolute;
    inset-block-end: -200px;
    inset-inline-start: 0;
    inline-size: 500px;
    transform-origin: left bottom;
    inline-size: var(--size-fluid-11);
    animation: var(--animation-float-custom) forwards;
    animation-duration: 8s;
    filter: blur(4px);
}

@keyframes float {
    50% {
        transform: rotateX(30deg);
    }
}



/* Tab section */
.about .about-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: 0;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }
    
    .about .about-img:before {
        inset: -30px 0 0 -30px;
    }
}

.about h3 {
    color: var(--secondary);
    font-family: var(--secondary);
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about h3 {
        font-size: 28px;
    }
}

.about .nav-pills {
    border-bottom: 1px solid rgba(135,179,179, 0.4);
}

.about .nav-pills li+li {
    margin-left: 40px;
}

.about .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    font-family: var(--secondary);
}

.about .nav-link.active {
    color: var(--primary);
    background: none;
    border-bottom: 3px solid var(--primary);
}

@media (max-width: 575px) {
    .about .nav-link {
        font-size: 16px;
    }
}

.about .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: var(--secondary);
}

.about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--primary);
}





#gyan ul {
    padding: 0;
    list-style-type: none;
}

#gyan ul li {
    box-sizing: border-box;
    border-radius: 0.5em;
    margin: 0.5em;
    box-shadow: 0 0 .5em rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: sans-serif;
    text-transform: capitalize;
    line-height: 2.5em;
    transition: 0.3s;
    cursor: pointer;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

#gyan ul li {
    background: var(--secondary-light);
}

#gyan ul li.activated {
    background: var(--primary);
    color: #fff
}


/* #book {
    background: url(../img/book.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
} */



@media (max-width:576px) {
    .navbar img.logo {
        max-height: 40px
    }
    
    /* .hero {
        height: 50vh;
    } */
    
    h1 {
        font-size: calc(10px + 1rem);
    }
}

@media (min-width:768px) {
    #gyan ul li {
        width: 15em;
        height: 2.4em;
        font-size: 18px;
        line-height: 2.4em;
    }
    
    #gyan ul li.activated {
        transform: perspective(300px) rotateY(12.5deg);
        padding-left: 5%;
        font-size: 18px;
    }
    
    #gyan ul li {
        padding-left: 10%;
        padding-right: 0;
    }
    
    #gyan ul li:hover {
        transform: perspective(300px) rotateY(12.5deg);
        padding-left: 5%;
    }
    
}

/* Party */

.container-faq {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 52px 18px 18px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--primary)
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 16px;
    transition: 0.2s;
    color: var(--primary)
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

@media (max-width:420px) {
    .question {
        font-size: 1.035rem;
    }
}

/*------------ join-us ---------------*/

.text-purple {
    color: #5f2595;
}

.bg-purple {
    background-color: #5f2595;
}

.registration .inputBx input {
    border: 1px solid #5f2595;
    outline: none;
}

input:-webkit-autofill {
    background-color: transparent !important;
}

input:-webkit-autofill:focus {
    background-color: transparent !important;
}

.registration .inputBx input::placeholder,
.or {
    color: rgba(0, 0, 0, 0.6);
}

.registration button.bg-purple:focus {
    background-color: #734ebb;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.iti__flag-container {
    border-radius: 50px 0 0 50px;
    z-index: 2;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}

.error {
    border: 1px solid red !important;
}

.goog-te-gadget {
    text-align: center;
}

.goog-te-gadget-simple {
    border-radius: 0.25rem;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none;
}

.goog-te-gadget .goog-te-combo {
    border-radius: 0.2rem;
    padding: 2px 10px;
}

/* Webkit Scrollbar */
.iti__country.iti__highlight {
    background-color: rgb(120 0 235 / 5%);
}

.iti__country-list {
    border: 1px solid #faf2ff !important;
    border-radius: 0.4rem;
}

.goog-te-combo::-webkit-scrollbar,
.iti__country-list::-webkit-scrollbar {
    width: 5px;
}

.goog-te-combo::-webkit-scrollbar-track,
.iti__country-list::-webkit-scrollbar-track {
    background: #ebe8ff;
}

.goog-te-combo::-webkit-scrollbar-thumb,
.iti__country-list::-webkit-scrollbar-thumb {
    background: #7b3ab8;
    border-radius: 5px;
}

.goog-te-combo::-webkit-scrollbar-thumb:hover,
.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #967EDD;
}

:root {
    --red-7: #f03e3e;
    --green-7: #37b24d;
}

.hide-n-seek {
    bottom: 8px;
    right: 22px;
    cursor: pointer;
}
.librtad-getinto .dropdown-toggle::after {
    display: none !important;
}