@layer layouts {

  /* =====================
    SECTION: 
    ====================== */

  .inner__page p {
    text-align: justify;
  }

  /* =====================
    SECTION: 
    ====================== */
  .spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
  }

  .shape-mockup {
    position: absolute;
    z-index: -1;
  }

  @keyframes spin {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }

    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  /*  */

  .shape-mockup {
    position: absolute;
    z-index: -1;
  }

  .movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite;
  }

  @keyframes movingX {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }

    50% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
    }

    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }

  /* =====================
    SECTION: 
    ====================== */

  .section_title_area {
    margin-bottom: 1.7rem;
  }

  .shadow-title {
    font-family: var(--heading-font);
    font-size: 74px;
    font-weight: 900;
    line-height: 1;
    background-image: -webkit-linear-gradient(top,
        rgba(226, 232, 250, 0.7) 0%,
        rgba(226, 232, 250, 0) 88.54%);
    background-image: linear-gradient(180deg,
        rgba(226, 232, 250, 0.7) 0%,
        rgba(226, 232, 250, 0) 88.54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: -0.55em 0 -0.45em -0.25em;
  }

  .shadow-title.color3 {
    /* background-image: -webkit-linear-gradient(top, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%); */
    background-image: linear-gradient(180deg,
        #e0e0e0 0%,
        rgba(220, 214, 214, 0) 93.75%);
  }

  .sub-title {
    position: relative;
    display: block;
    font-size: var(--fs-sub-title);
    font-weight: 900;
    color: var(--accent-color);
    text-transform: uppercase;
    line-height: 24px;
    margin-top: -0.34em;
  }

  .sub-title:has(img) {
    margin-top: 0;
  }

  /* =====================
    SECTION: 
    ====================== */

  .ed-section-sub-title {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-right: 10px;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
  }

  .ed-section-sub-title::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 48px;
    background: linear-gradient(90deg,
        rgba(var(--accent-color-rgb), 1) 3px,
        rgba(255, 255, 255, 0) 3px,
        rgba(255, 255, 255, 0) 8px,
        rgba(var(--accent-color-rgb), 1) 8px,
        rgba(var(--accent-color-rgb), 1) 13px,
        rgba(255, 255, 255, 0) 13px,
        rgba(255, 255, 255, 0) 18px,
        rgba(255, 255, 255, 0) 18px,
        rgba(var(--accent-color-rgb), 1) 0);
  }

  /* =====================
    SECTION: 
    ====================== */

  /* =====================
    SECTION: HERO
    ====================== */


  @media (min-width: 1340px) {
    .hero .row {
      align-items: center;
    }
  }

  .hero {
    position: relative;
    /* min-height: 100vh;
    place-content: center; */
  }

  .hero video {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
    transform: scaleX(-1);
    opacity: 0.1;
  }

  .title {
    font-weight: 800;
    /* text-shadow: 2px 0px 1px #000000; */
  }

  .hero .lines {
    position: relative;
  }

  .hero .lines::after {
    content: "";
    position: absolute;
    height: 15px;
    width: 100%;
    background-image: url(../images/abstract/lines-200px.webp);
    background-size: cover;
    background-repeat: repeat-x;
    bottom: -7px;
    left: 0;
    -webkit-animation: lines 3s linear infinite;
    animation: lines 3s linear infinite;
  }

  @keyframes lines {
    0% {
      width: 0;
    }

    80% {
      width: 100%;
    }

    100% {
      width: 100%;
    }
  }

  .header__box {
    background: var(--grad-main);
    color: var(--bs-light);
    display: inline-block;
    padding: 8px 20px;
    outline: 1px solid var(--primary-color);
    outline-offset: 5px;
    border-radius: 50px;
    margin: 0 0 20px;
  }

  .hero .carousel-inner {
    border-radius: 2rem 0 2rem 0;
    /* box-shadow: 2px 6px 20px rgb(var(--primary-color-rgb), 0.25); */
  }

  /* =====================
    SECTION: COUNTDOWN
    ====================== */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color);
    opacity: 0.1;
    z-index: -1;
    border-radius: 20px;
  }

  .countdown__section {
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .countdown__section .shape-1,
  .countdown__section .shape-2 {
    position: absolute;
    top: 0;
    z-index: -2;
    mix-blend-mode: soft-light;
    opacity: 0.6;
  }

  .countdown__section .shape-2 {
    left: auto;
    right: 0;
  }

  .countdown__section .shape-1 {
    left: 0;
  }

  .event-counter {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  .event-counter li {
    --white-color: #ffffff;
    list-style: none;
    text-align: center;
    border-radius: 10px;
    padding: 15px 5px;
    padding: 6px 5px;
    position: relative;
    z-index: 2;
    min-width: 105px;
    background: var(--bs-light);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }

  .event-counter .count-number {
    font-size: var(--fs-title);
    /* font-size: 48px; */
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
    border-bottom: 1px solid var(--bs-gray-200);
    padding: 0px 0 10px;
    margin: 0 0 0.3rem;
    padding: 0px 0 1px;
    margin: 0 0 0.1rem;
  }

  .event-counter .count-name {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    color: var(--secondary-color);
  }

  /* =====================
    SECTION: ABOUT
    ====================== */

  .about__media {
    display: flex;
    width: 45vw;
    max-width: 800px;
    float: right;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .about__media>span {
    padding: 0 15px;
    position: relative;
  }

  .about__media .ev-about3 {
    width: 30%;
  }

  .about__media>span img {
    width: 100%;
  }

  .about__media .ev-about3::after {
    content: "";
    width: 110px;
    height: 110px;
    display: block;
    position: absolute;
    right: 15px;
    top: -140px;
    background: #ffe400;
    border-radius: 110px 0 0 0px;
  }

  .about__media .ev-about1 {
    width: 50%;
  }

  .about__media .ev-about2 {
    width: 20%;
  }

  .about__media .ev-about2:after {
    content: "";
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    position: absolute;
    left: 15px;
    border-radius: 0 0 60px 0;
    bottom: -90px;
  }

  /* =====================
    SECTION: QUICK LINKS
    ====================== */

  .quick-links .icon {
    color: var(--bs-light);
    width: 70px;
    text-align: center;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
  }

  .quick-links a p {
    margin: 0;
    padding: 1.3rem 1rem;
    color: var(--bs-light);
  }

  .quick-links ul {
    display: flex;
    flex-wrap: wrap;
  }

  .quick-links a {
    display: flex;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    overflow: hidden;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 10px 0;
  }

  .quick-links .clr1 {
    /* background: var(--primary-color); */
    background: #E91E63;
  }

  .quick-links .clr2 {
    /* background: var(--secondary-color); */
    background: #5b2c6f;
  }

  .quick-links .clr3 {
    background: var(--accent-color);
    background: #c0392b;
  }

  .quick-links .clr4 {
    /* background: #41a950; */
    background: #2980b9;
  }

  /* =====================
    SECTION: ABOUT
    ====================== */

  .about__section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* background: radial-gradient(circle at bottom left, #e8f5fe 0%, #f9fcff 80%); */
    background: radial-gradient(circle at top left, #dceeff 0%, #f7faff 80%);
  }

  /* =====================
    SECTION: COMMITTEE
    ====================== */
  .committee {
    text-align: center;
  }

  .committee img {
    border-radius: 50% 3px 50% 50%;
    padding: 5px;
    border: 2px inset var(--primary-color);
    margin-bottom: 7px;
    width: 180px;
  }

  .committee__name {
    font-size: var(--fs-lead);
    font-weight: 700;
    color: var(--primary-color);
  }

  .committee__desg {
    font-style: italic;
  }

  /* =====================
    SECTION: SPEAKER
    ====================== */

  .sprakers {
    background: url(../images/bg/bg_speaker1.webp);
    /* background-size: auto; */
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .speaker {
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    background: #f9faff;
  }

  .speaker img {
    border-radius: 1rem;
    padding: 5px;
    /* border: 2px inset var(--primary-color); */
    margin-bottom: 7px;
    width: 180px;
  }

  .speaker__name {
    font-size: var(--fs-lead);
    font-weight: 700;
    color: var(--primary-color);
  }

  .speaker__desg {
    font-style: italic;
  }

  /*==============================
    SECTION: REGISTEATION
    ==============================*/

  /* .registration_section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 100px;
  }


  .registration_section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg/bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: -1;
  } */

  .reg__body {
    /* background-color: #f5f5f5; */
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .reg__body__top {
    background-color: var(--primary-color);
    position: relative;
    z-index: 2;
    padding: 40px 0;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

  .reg__body__top:before,
  .reg__body__top:after {
    content: "";
    position: absolute;
    height: 110px;
    width: 110px;
    background-color: var(--secondary-color);
    opacity: 0.6;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
  }

  .reg__body__top:before {
    top: -73px;
    left: -28px;
  }

  .reg__body__top:after {
    left: -73px;
    top: -28px;
  }

  .reg__title {
    margin-top: -0.3em;
    margin-bottom: 4px;
    color: #ffffff;
    padding: 0 40px 10px;
    position: relative;
    z-index: 3;

    margin-bottom: 20px;
    border-bottom: 2px solid;
    border-image: linear-gradient(to left,
        var(--primary-color) 27%,
        var(--secondary-color) 100%);
    border-image-slice: 1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

  .reg__text {
    color: #ffffff;
    padding: 0 40px 28px 40px;
  }

  .reg__subtitle {
    font-weight: bold;
    line-height: 1;
    margin: -0.09em 0;
    color: #ffffff;
    padding: 0 40px;
    position: relative;
    width: fit-content;
  }

  .reg__particle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 190px;
    height: 165px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-clip-path: path("M182 165L0.5 164L11 111L51 55.5L110 13L182 0V165Z"
      );
    clip-path: path("M182 165L0.5 164L11 111L51 55.5L110 13L182 0V165Z");
    width: 190px;
    height: 165px;
    background: url(../images/reg_particle_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .reg__body:hover .reg__body__top:before,
  .reg__body:hover .reg__body__top:after {
    opacity: 1;
    height: 120%;
    width: 130%;
    border-radius: 0;
    background-color: var(--secondary-color);
  }

  .reg__body:hover .reg__particle {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .reg__body__content {
    padding: 30px;
    background: rgba(var(--secondary-color-rgb), 0.1);
    background: #ffeff6;
    border-radius: 0 0 10px 10px;
  }

  .reg__body__content table td,
  .reg__body__content table th {
    background: none;
    border-color: #ffffff;
  }

  /*==============================
    SECTION: REGISTEATION
    ==============================*/

  .registration_section {
    background: url(../images/bg/bg.webp);
    background-size: cover;
    background-position: top;
  }

  .reg-plan {
    background: var(--bs-white);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.5s;
    /* overflow: hidden; */
    background: #ffffff !important;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
      rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    position: relative;
    z-index: 1;
  }

  .reg-plan:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
      rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  /* .reg-plan table td {
    padding: 1rem 0;
  } */

  .reg-plan table tr:last-child td {
    border: 0;
  }

  .reg-plan h4 {
    color: #ffffff;
    position: relative;
    padding: 10px;
    z-index: 1;
    background-color: var(--primary-color);
    text-align: center;
  }

  .early-reg h4::after {
    background: linear-gradient(90deg, #4caf50, #cddc39);
  }

  .regular-reg h4::after {
    background: linear-gradient(90deg, #ffc107, #ff9800);
  }

  /*==============================
    SECTION: VENUE
    ==============================*/

  .venue__section {
    position: relative;
    z-index: 0;
    /* background: url(../images/bg/landing1.webp) no-repeat center / cover; */
    background: url(../images/bg/footer.webp) no-repeat center / cover;
  }

  .venue__section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(to left bottom, rgb(231 242 255), rgb(255 255 255 / 85%)); */
    background: linear-gradient(to bottom,
        rgb(231 242 255),
        rgb(255 255 255 / 90%));
    opacity: 1;
    z-index: -1;
  }

  /* =====================
    SECTION: CTA
    ====================== */

  .cta__section {
    /* background: url(../images/bg/brochure.webp); */
    /* background: url(../images/bg/cta1.webp); */
    /* background: radial-gradient(circle at center, #8f1a6a, #5100ff), url(..images/bg/cta.webp) no-repeat center / cover;; */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    /* background-blend-mode:color-burn */
    background: radial-gradient(circle at center, #8f1a6a, #5100ff), url(../images/bg/cta-alt.webp) no-repeat center / cover;
    background-blend-mode: hard-light;
  }

  /* =====================
    SECTION: HIGHLIGHT
    ====================== */

  .highlights {
    position: relative;
    background: url(../images/bg/1.webp);
    /* background: url(../images/bg/bg3.webp); */
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    /* background: linear-gradient(to bottom, #fff 0%, #fff 10%, transparent 100%); */
    background: linear-gradient(to bottom, #fff 0%, #fff 10%, #ffffffc2 100%);
  }

  .highlight {
    padding: 2rem;
    /* background: linear-gradient(45deg, #F1F7E8, var(--bs-secondary-bg)); */
    background: radial-gradient(circle at bottom left, #e8f5fe 0%, #f9fcff 80%);
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .highlight:hover {
    transform: translateY(-5px);
  }

  .highlight::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/mandala.webp") no-repeat center/contain;
    top: -35%;
    right: -60%;
  }

  .highlight__icon {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
  }

  .highlight__icon i {
    display: inline-block;
  }

  .highlight__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* color: var(--bs-secondary-color); */
    color: var(--primary-color);
  }

  .highlight__desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bs-tertiary-color);
  }

  /*  */
  /*  */
  /*  */

  .inner__page {
    background: url(../images/bg/inner__bg.webp);
    background-repeat: repeat;
  }

  .inner__page.tour__page {
    position: relative;
    z-index: 1;
    background: #fff;
  }

  .inner__page.tour__page::before {
    position: absolute;
    content: '';
    inset: 0;
    z-index: -1;
    background: url(../images/bg/map.webp);
    background-repeat: repeat;
    background-attachment: fixed;
    opacity: 0.2;
  }


  /*  */
  /*  */
  /*  */


  .updates {
    display: flex;
    align-items: center;
    /* background: var(--green-color); */
    background: var(--brown-color);
    border-radius: 50vw;
    color: #fff;
    overflow: hidden;
  }

  .updates>* {
    padding: 0.5rem 1rem;
  }

  .updates .announcement {
    border: 1px solid var(--bs-gray-200);
    overflow: hidden;
    border-radius: 0.355rem;
    margin: 0;
  }

  .updates .announcement .details {
    display: flex;
    column-gap: 1rem;
  }

  .updates .announcement .scroll-items div p {
    margin-bottom: 0;
    color: var(--accent-color);
  }

  .updates .announcement .scroll-items div h5 {
    color: var(--accent-color);
    /* margin-left: 1.2rem; */
  }

  .updates p {
    flex: 0 0 auto;
    font-size: 1.125rem;
    font-weight: 500;
    /* background: #0092ae; */
    color: #fff;
    margin: 0;
    overflow: hidden;
  }

  .scroll-wrapper {
    /* background: url("../img/pattern.svg"),
    linear-gradient(45deg, #fadccc, #f8e8d5);
  border: 1px solid #eebba2; */
    /* background: #eeeef6; */
    flex: 1 1 auto;
    overflow: hidden;
    max-width: 100%;
  }

  #scroller {
    display: flex;
    column-gap: 4rem;
    width: max-content;
  }

  #scroller .scroll-items {
    display: flex;
    column-gap: 1rem;
    width: max-content;
  }

  #scroller .scroll-items div {
    flex: 1 0 auto;
    font-size: 1rem;
  }

  #scroller .scroll-items div a {
    color: #fce290;
    letter-spacing: 0.75px;
  }


  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 0;
    margin: 0 auto;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* =====================
    SECTION: VISA-INFORMATION
    ====================== */

  .brk a {
    word-break: break-word;
  }

  /* =====================
      SECTION: 
      ====================== */

  .table-responsive p {
    margin-bottom: 0;
  }

  .table-responsive table tr th,
  .table-responsive table tr td {
    vertical-align: middle;
    /* font-size: 14px; */
  }

  .reg-plan::before {
    position: absolute;
    content: "";
    inset: -3px;
    background: conic-gradient(from var(--angle), transparent 50%, rgb(255, 145, 0));
    z-index: -1;
    border-radius: 1rem;
    animation: circle 3s linear infinite;
  }


  @property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes circle {
    from {
      --angle: 0deg;
    }

    to {
      --angle: 360deg;
    }
  }
}