/*font */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.cTitle {
    font-style: normal;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 157%;
    letter-spacing: 0.1em;
    padding: 5px 20px;
    padding-left: 20px;
    padding-right: 0px;
    position: relative;
    width: max-content;
}
.cTitle span {
    z-index: 1;
    position: relative;
    font-style: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}
.cTitle::before {
    position: absolute;
    background: rgba(7, 153, 152, 0.2);
    z-index: 0;
    width: 50%;
    height: 100%;
    content: "";
    border-radius: 10px;
    top: 0;
    left: 0;
}
.cTitle--white {
    color: #fff;
}
.cTitle--white::before {
    background: rgba(255, 255, 255, 0.38);
}
.cTitle--black {
    color: #464646;
}
.cTitle--brown {
    color: #963337;
}

.cSectionText {
    font-style: normal;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 39px;
    text-align: center;
}
.cSectionText--white {
    color: #fff;
}
.cSectionText--black {
    color: #757575;
}

@keyframes goUp {
    0% {
        top: 70%;
        transform: scale(1);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        top: 0;
        transform: scale(2.5);
        opacity: 0;
    }
}
.cBtn {
    border-radius: 0px;
    display: flex;
    font-family: inherit;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    border-radius: 30px;
}
.cBtn--blue {
    background: #339692;
}
.cBtn--brown {
    background: #963337;
}
.cBtn--yellow {
    background: #fbff25;
}
.cBtn--yellow span {
    color: #079998;
}
.cBtn:hover {
    background: #fff;
}
.cBtn:hover span {
    color: #757575;
    animation: btnTransform 0.5s linear;
}
.cBtn span,
.cBtn__span {
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 16px;
    color: #ffffff;
    padding: 10px 36px;
}
.cBtn--white {
    background-color: #fff;
}
.cBtn--white span {
    color: #009f4f;
}
.cBtn--white:hover span {
    color: #fff;
}
@keyframes btnTransform {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    20% {
        transform: translateX(-50%);
        opacity: 0;
    }
    60% {
        transform: translateX(-100%);
        opacity: 0;
    }
    80% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
    }
}

.cSubText {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 175%;
    color: #888888;
    font-weight: 400;
}
.cSubText span {
    font-weight: 600;
}
.cSubText--white {
    color: #fff;
}

.clargeText {
    font-style: normal;
    font-weight: 900;
    font-size: 6.4rem;
    line-height: 75px;
    text-transform: uppercase;
    color: #f37022;
}

.banner {
    position: relative;
    background-color: #009f4f;
    position: relative;
    background-attachment: fixed;
    height: 30vh;
}
.banner::after {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.15) 196.33%
    );
    mix-blend-mode: normal;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.banner__content {
    position: absolute;
    left: 50%;
    top: 60%;
    z-index: 100;
    transform: translateX(-50%);
    justify-content: center;
    text-align: center;
    display: flex;
    grid-gap: 0px;
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 157%;
    color: #ffffff;
}
.banner h3 {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 157%;
    color: #ffffff;
    text-transform: capitalize;
}
.banner__title {
    font-weight: 400;
    font-size: 3.2rem;
    line-height: 38px;
    text-transform: uppercase;
    color: #ffffff;
}
.banner__breadCrumb {
    padding: 14px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 1.4rem;
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    line-height: 157%;
    background: #147777;
    mix-blend-mode: normal;
    color: #fff;
}
.banner__breadCrumb iconify-icon {
    font-size: 2.4rem;
}
.banner__breadCrumb a {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 157%;
    color: #fff;
    text-transform: capitalize;
}

.cDescText {
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 160%;
    text-align: justify;
}
.cDescText--black {
    color: #757575;
}
.cDescText--white {
    color: #fff;
}

/* color classes----------------------------------------------- */
/* rest ------------------------------------ */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    border: 0;
    appearance: none;
    box-sizing: border-box;
    list-style: none;
    font-family: "Outfit" !important;
}

/* default styling and custom-helper-classes-------------------------------*/
html {
    font-size: 10px;
    overflow-x: hidden;
}
@media (max-width: 1440px) {
    html {
        font-size: 8.5px;
    }
}

body {
    line-height: 10px;
    margin: 0px;
    color: #fff;
    position: relative;
    height: 100%;
}

a {
    text-decoration: none;
}

h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 6.4rem;
    line-height: 96px;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 0px;
    text-transform: capitalize;
}

h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 3.6rem;
    line-height: 43px;
    color: var(--color-heading);
    margin-bottom: 0px;
    text-transform: capitalize;
}

h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 26px;
    color: var(--color-heading);
    margin-bottom: 0px;
    text-transform: capitalize;
}

p {
    margin-bottom: 0px;
}

ul {
    padding: 0;
    margin: 0;
}

.wrapper {
    padding-left: 5.6%;
    padding-right: 5.6%;
}
@media (max-width: 1300px) {
    .wrapper {
        padding-left: 5.6%;
        padding-right: 5.6%;
    }
}
@media screen and (max-width: 1024px) {
    .wrapper {
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media screen and (max-width: 768px) {
    .wrapper {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }
}
.wrapper--left {
    padding-left: 15%;
    padding-right: 0%;
}
@media (max-width: 1300px) {
    .wrapper--left {
        padding-left: 10%;
        padding-right: 0%;
    }
}
@media screen and (max-width: 1024px) {
    .wrapper--left {
        padding-left: 5%;
        padding-right: 0%;
    }
}
@media screen and (max-width: 768px) {
    .wrapper--left {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }
}
.wrapper--right {
    padding-left: 0%;
    padding-right: 15%;
}
@media (max-width: 1300px) {
    .wrapper--right {
        padding-left: 0%;
        padding-right: 10%;
    }
}
@media screen and (max-width: 1024px) {
    .wrapper--right {
        padding-left: 0%;
        padding-right: 5%;
    }
}
@media screen and (max-width: 768px) {
    .wrapper--right {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }
}

.row {
    margin: 0px;
    padding: 0px;
}

.col-lg-3,
.col-lg-4,
.col-lg-5.col-lg-6,
.col-lg-7,
.col-lg-9 {
    padding: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.row > * {
    padding-right: 0px;
    padding-left: 0px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width: 1440px) {
    section {
        padding-top: 55px;
        padding-bottom: 55px;
    }
}
@media (max-width: 768px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.syncTopbar {
    padding-top: 35px;
    padding-bottom: 35px;
}

#canvas {
    position: absolute;
    width: 100vw;
    height: 1300px;
    z-index: 10;
    top: 0;
    left: 0;
}
@media (max-width: 1024px) {
    #canvas {
        height: 1500px;
    }
}
@media (max-width: 915px) {
    #canvas {
        height: 1600px;
    }
}
@media (max-width: 699px) {
    #canvas {
        height: 1900px;
    }
}
@media (max-width: 689px) {
    #canvas {
        height: 2200px;
    }
}
@media (max-width: 502px) {
    #canvas {
        height: 2400px;
    }
}
@media (max-width: 452px) {
    #canvas {
        height: 2700px;
    }
}
@media (max-width: 374px) {
    #canvas {
        height: 2900px;
    }
}
@media (max-width: 320px) {
    #canvas {
        height: 3500px;
    }
}

.main__content {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.selectionBox {
    max-width: 961px;
    margin: 0 auto;
    margin-bottom: 85px;
}
.selectionBox__title {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 38px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}
.selectionBox__title::after {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #c12bcb;
    filter: blur(200px);
}
.selectionBox__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 10px;
}
.selectionBox__list__item {
    width: 149px;
    text-align: center;
    border-radius: 15px;
    color: #ad9dab;
    position: relative;
    overflow: hidden;
}
.selectionBox__list__item input[type="checkbox"] {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.selectionBox__list__item
    input[type="checkbox"]:checked
    ~ .selectionBox__list__item__label {
    background: linear-gradient(180deg, #d7cad5 0%, #857384 100%);
    color: #141414;
}
.selectionBox__list__item__label {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 20px;
    text-align: center;
    color: #ad9dab;
    width: 100%;
    height: 100%;
    padding: 15px 0px;
    background: linear-gradient(
        180deg,
        rgba(215, 202, 213, 0.1) 0%,
        rgba(133, 115, 132, 0.1) 100%
    );
    border: 1px solid rgba(157, 140, 156, 0.2);
    border-radius: 15px;
}

.submitSection {
    margin-bottom: 32px;
}
.submitSection__content {
    padding: 10px 20px;
    background: linear-gradient(
        180deg,
        rgba(215, 202, 213, 0.1) 0%,
        rgba(133, 115, 132, 0.1) 100%
    );
    border: 1px solid rgba(157, 140, 156, 0.2);
    border-radius: 12px;
    max-width: 921px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.submitSection__btn {
    background: linear-gradient(180deg, #c12bcb 0%, #7a0282 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 13px 19px;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 23px;
    color: #faa6ff;
    display: flex;
    gap: 8px;
    align-items: center;
}
.submitSection__btn iconify-icon {
    font-size: 2.2rem;
}
.submitSection__btn:hover {
    color: #fff;
}
.submitSection__label {
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 23px;
    color: #ffffff;
    width: 100%;
}
.submitSection__label .autogrow-input,
.submitSection__label .autogrow-textarea {
    box-sizing: border-box;
    width: 100%;
    resize: none;
    overflow: hidden;
}
.submitSection__label .autogrow-textarea {
    min-height: 20px;
}
.submitSection__label .autogrow-input:focus,
.submitSection__label .autogrow-textarea:focus {
    outline: none;
}
.submitSection__label input,
.submitSection__label textarea {
    width: 100%;
    background-color: transparent;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    min-height: max-content;
}
.submitSection__label input::placeholder,
.submitSection__label textarea::placeholder {
    color: #767277;
}

.grid1fr4fr1fr {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 12px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .grid1fr4fr1fr {
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto auto;
    }
}
@media (max-width: 699px) {
    .grid1fr4fr1fr {
        display: flex;
        flex-direction: column;
    }
}

.questionspanel {
    height: max-content;
    background: linear-gradient(
        180deg,
        rgba(242, 161, 45, 0.1) -62.45%,
        rgba(247, 163, 41, 0.077) 37.55%
    );
    border: 1px solid rgba(242, 161, 45, 0.5);
    border-radius: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #f7a329;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .questionspanel {
        grid-row: 1/2;
    }
}
.questionspanel > div {
    padding: 12px 15px;
}
.questionspanel__title {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.questionspanel__footer {
    background: #f7a329;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    color: #ffffff;
    text-align: center;
}

.descriptionPanel {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 18px;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(215, 202, 213, 0.1) 0%,
        rgba(133, 115, 132, 0.1) 100%
    );
    border: 1px solid rgba(157, 140, 156, 0.2);
    height: max-content;
    border-radius: 12px;
}
@media (max-width: 1024px) {
    .descriptionPanel {
        grid-row: 1/3;
    }
}
.descriptionPanel__actionBtns {
    margin: 10px;
    display: flex;
    flex-direction: row;
    gap: 3px;
    justify-content: flex-end;
}
.descriptionPanel__actionBtns__btn {
    width: 28.12px;
    height: 28.12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #c12bcb 0%, #7a0282 100%);
    border: 0.689858px solid rgba(255, 255, 255, 0.2);
    border-radius: 4.6875px;
    color: #faa6ff;
}
.descriptionPanel__actionBtns__btn:hover {
    color: #fff;
}
.descriptionPanel__listHeader {
    padding: 0px 20px;
    margin-bottom: 11px;
}
.descriptionPanel__list {
    padding: 0px 34px;
    padding-bottom: 45px;
}
.descriptionPanel__list__item {
    list-style-type: decimal;
    list-style-position: inside;
}

.othereventsPanel {
    background: linear-gradient(
        181.78deg,
        rgba(148, 17, 157, 0.1) 1.5%,
        rgba(148, 17, 157, 0.077) 98.61%
    );
    border: 1px solid #94119d;
    border-radius: 12px;
    padding: 13px 12px;
    height: max-content;
}
@media (max-width: 1024px) {
    .othereventsPanel {
        grid-column: 1/2;
        grid-row: 2/3;
    }
}
.othereventsPanel__title {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #faa6ff;
    margin-bottom: 14px;
}
.othereventsPanel__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.othereventsPanel__list__item {
    background: linear-gradient(180deg, #c12bcb 0%, #7a0282 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 13px;
    color: #faa6ff;
    justify-content: space-between;
}
.othereventsPanel__list__item iconify-icon {
    color: #ffffff;
    font-size: 2rem;
}
.othereventsPanel__list__item:hover {
    color: #fff;
}

.AIfirstModal {
    padding-top: 16px;
}
.AIfirstModal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.AIfirstModal__close iconify-icon {
    font-size: 12px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    color: #f7a329;
}
.AIfirstModal__inputbox {
    position: relative;
    margin: 34px;
}
.AIfirstModal__inputbox iconify-icon {
    position: absolute;
    left: 12px;
    z-index: 100;
    color: #000;
    font-size: 28px;
    top: 50%;
    transform: translateY(-50%);
}
.AIfirstModal__inputbox input {
    position: relative;
    z-index: 1;
    padding: 15px;
    padding-left: 50px;
    color: #000;
    font-size: 16px;
    font-family: Outfit;
    border-radius: 12px;
    width: 100%;
}
.AIfirstModal .modal-dialog {
    padding-top: 16px;
}
.AIfirstModal .modal-dialog .label {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-family: Outfit;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 100%;
    max-width: 332px;
}
.AIfirstModal .modal-content {
    background-size: cover;
    background-color: transparent;
    border-radius: 20px;
}
.AIfirstModal .modal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
    border: none;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
}
.AIfirstModal__logo {
    max-width: 250px;
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}
.AIfirstModal__title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    line-height: 100%;
    font-family: Outfit;
    font-weight: 700;
    max-width: 354px;
}

.AIheader {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: lightgray;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 618px) {
    .AIheader {
        padding: 30px 25px;
    }
}
.AIheader__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.AIheader__topbar img {
    max-width: 79px;
}
.AIheader__topbar .date {
    color: #fff;
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 500;
    line-height: 32.508px;
}
.AIheader__mainTitle {
    font-size: 4rem;
    font-family: Poppins;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(#c0c4c4, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.AIheader__smallNote {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 2.113rem;
    font-family: Montserrat;
    line-height: 110%;
    display: flex;
    align-items: center;
    height: max-content;
}
.AIheader__smallNote__icons {
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: max-content;
    position: relative;
    transform: translateY(30%);
}
.AIheader__smallNote__icons iconify-icon {
    margin-top: -11px;
    font-size: 18px;
}

.AImainContent {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #fff;
}
@media (max-width: 618px) {
    .AImainContent {
        padding: 25px;
    }
}

.mailfrom {
    color: #008eb0;
    font-size: 13px;
    font-family: Montserrat;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bodyTitle {
    color: #373435;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 24px;
}

.numberlist {
    color: #838383;
    font-size: 15px;
    font-family: Poppins;
    line-height: 24px;
}
.numberlist li {
    list-style-type: decimal;
}
