:root {
    --clr-main: #2353a0;
    --clr-alt: #ee397b;
    --clr-add: #2d3076;
    --clr-add-2: #f7b11d;
    --grad-main: linear-gradient(90deg, var(--clr-add), var(--clr-main), var(--clr-alt), var(--clr-add-2));
    --grad-red: linear-gradient(90deg, #da1ab0, #f44336);
    --grad-orange: linear-gradient(90deg, #e91e63, #ff9800);
    --grad-yellow: linear-gradient(90deg, #ffc107, #ff9800);
    --grad-green: linear-gradient(90deg, #4caf50, #abbb1d);
    --grad-blue: linear-gradient(90deg, #3f51b5, #00bcd4);
    --grad-purple: linear-gradient(90deg, #e91e63, #9c27b0);
}


/*blue*/

.blue {
    color: #0d6efd;
}

.bg-blue {
    background-color: #0d6efd !important;
}

.bg-blue-100 {
    background-color: #cfe2ff !important;
}

.bg-blue-200 {
    background-color: #9ec5fe !important;
}

.bg-blue-300 {
    background-color: #6ea8fe !important;
}


/*indigo*/

.bg-indigo {
    background-color: #6610f2 !important;
}

.bg-indigo-100 {
    background-color: #e0cffc !important;
}

.bg-indigo-200 {
    background-color: #c29ffa !important;
}

.bg-indigo-300 {
    background-color: #a370f7 !important;
}


/*pink*/

.bg-pink {
    background-color: #d63384 !important;
}

.bg-pink-100 {
    background-color: #f7d6e6 !important;
}

.bg-pink-200 {
    background-color: #efadce !important;
}

.bg-pink-300 {
    background-color: #e685b5 !important;
}


/*teal*/

.teal {
    color: #20c997;
}

.bg-teal {
    background-color: #20c997 !important;
}

.bg-teal-100 {
    background-color: #d2f4ea !important;
}

.bg-teal-200 {
    background-color: #a6e9d5 !important;
}

.bg-teal-300 {
    background-color: #79dfc1 !important;
}

.bg-lunch {
    background-color: #9c27b0 !important;
}

.bg-tea {
    background-color: #673ab7 !important;
}

.bg-teal1 {
    background-color: #607d8b !important;
}


/*red*/

.red {
    color: #dc3545;
}

.bg-red {
    background-color: #dc3545 !important;
}

.bg-red-100 {
    background-color: #f8d7da !important;
}

.bg-red-200 {
    background-color: #f1aeb5 !important;
}

.bg-red-300 {
    background-color: #ea868f !important;
}

.bg-red-400 {
    background-color: #f7c8cc !important;
}


/*purple*/

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

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

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

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


/*teal*/

.bg-orange {
    background-color: #fd7e14 !important;
}

.bg-orange-100 {
    background-color: #ffe5d0 !important;
}

.bg-orange-200 {
    background-color: #fecba1 !important;
}

.bg-orange-300 {
    background-color: #feb272 !important;
}

.bg-gray-200 {
    background-color: var(--bs-gray-200);
}


/*yellow*/

.bg-yellow {
    background-color: #ffc107 !important;
}

.bg-yellow-100 {
    background-color: #fff3cd !important;
}

.bg-yellow-200 {
    background-color: #ffe69c !important;
}

.bg-yellow-300 {
    background-color: #ffda6a !important;
}

.bg-gray-200 {
    background-color: var(--bs-gray-200);
}

.clr-2 {
    color: var(--clr-add-2);
}

.bg-session {
    background-color: var(--bs-gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 0.255rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-section .bg-session td {
    padding: 0.5rem;
}

::selection {
    color: #000;
    background-color: #ffc107;
}

.inagural li {
    list-style: disc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.225px;
    color: #424242;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}


/* 
=================>
     COLORS 
<================ 
*/

.gard-main {
    background: var(--grad-main);
}

.grad-red {
    background: linear-gradient(90deg, #da1ab0, #f44336);
}

.grad-orange {
    background: linear-gradient(90deg, #e91e63, #ff9800);
}

.grad-yellow {
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.grad-green {
    background: linear-gradient(90deg, #b9ca22, #4caf50);
}

.grad-blue {
    background: linear-gradient(90deg, #3f51b5, #00bcd4);
}

.grad-purple {
    background: linear-gradient(90deg, #e91e63, #9c27b0);
}


/* =================>  */

.clr-red {
    color: #f44336;
}

.clr-orange {
    color: #ff9800;
}

.clr-yellow {
    color: #ffc107;
}

.clr-green {
    color: #4caf50;
}

.clr-blue {
    color: #3f51b5;
}

.clr-purple {
    color: #9c27b0;
}


/* 
=================>
     GLOBALS 
<================ 
*/

.text-just {
    text-align: justify;
}

.vertical-lr {
    writing-mode: vertical-lr;
    display: inline-block;
}

.vertical-rl {
    writing-mode: vertical-rl;
    display: inline-block;
}

.section {
    padding-block: calc(2rem + 1.25vw);
}

.btn-main {
    background: var(--clr-main);
    color: #fff;
}

.btn-main:hover {
    color: var(--clr-main);
    background: #fff;
}

.btn-cta {
    border: 2px solid var(--clr-main);
    color: var(--clr-main);
}

.btn-alt {
    border: 2px solid var(--clr-alt);
    background: var(--clr-alt);
    color: #fff;
    transition: 250ms ease-out;
}

.btn-alt:hover {
    color: #000;
    border-color: #000;
    background: none;
}

.title {
    font-size: calc(1.625rem + 0.825vw);
    position: relative;
    display: inline-block;
    color: var(--clr-main);
}

.sub-title {
    text-transform: uppercase;
    color: var(--clr-main);
    font-weight: 500;
}


/* .slick-dots {
  bottom: -50px;
} */

.slick-dots li button:before {
    content: "â—¦";
    color: #fff;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    content: "â€¢";
    color: #fff;
    opacity: 1;
}

.link {
    color: var(--clr-alt);
    font-weight: 500;
    text-decoration: underline;
}


/* 
=================>
     RESETS 
<================ 
*/

.slick-list {
    padding-block: 1rem;
}


/* 
===========
    HEADER 
===========
*/

.header {
    --header-color: #fff;
    --header-text: #000;
    --header-link-hover: rgb(0 0 0 / 0.1);
    --header-text-hover: rgb(0 0 0 / 0.75);
    /* background: var(--header-color);
    border-top: 4px solid var(--clr-main);*/
    background: url(../img/header-bg.jpg);
    background-position: center;
    background-size: cover;
    isolation: isolate;
    position: relative;
    padding: 10px 0;
    z-index: 1;
}

.header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f9f9fd 10%, transparent 90%);
    inset: 0;
    z-index: -1;
    opacity: 0.75;
    mix-blend-mode: hard-light;
}

.header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(270deg, #07afff 25%, transparent 100%);*/
    background:linear-gradient(270deg, #a6def9 25%, transparent 100%);
    inset: 0;
    z-index: -1;
    opacity: 0.75;
    mix-blend-mode: color;
}

.clear {
    clear: both;
    padding: 0;
    margin: 0;
}

.navbar .dropdown-item {
    color: #fff;
}

.login-menu {
    position: fixed;
    top: 0;
    right: 30px;
    z-index: 1111;
}

.login-menu .dropdown-menu {
    z-index: 11111;
}

.login-menu button {
    border-radius: 0px 0px .355rem .355rem;
    font-size: 18px;
    border: none;
    background: var(--clr-alt);
    transition: 250ms ease-out;
    color: #fff;
    padding: .5rem 1rem;
}


/* 
===========
    NAV 
===========
*/

.menu {
    /*padding: 10px;*/
    text-transform: uppercase;
}
.nav-link {
    color: #ffffff;
}

.navbar-nav.top .nav-link {
    font-size: 14px;
}

.nav-link:hover {
    /* color: var(--header-text-hover);
    background: var(--header-link-hover);*/
    color: #ffffff;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: scaleY 300ms ease-in-out forwards;
    transform-origin: top center;
    background: #2c2f77;
}

@keyframes scaleY {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.07);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.dropdown-menu .dropdown-item:hover {
    /* color: var(--header-text-hover);
    background: var(--header-link-hover);*/
    color: #ffffff;
    background: #ef387a;
}


/*Title*/

header .title {
    color: #00609c;
    /*text-shadow: 0 3px 5px #0a387c;*/
}

.title h1 {
    color: #e32c21;
    /*font-size: 2rem;*/
    line-height: 40px;
    font-weight: bold;
}

.title h3 {
    font-size: 27px;
    line-height: 30px;
}

.title h4 {
    font-size: 18px;
    line-height: 23px;
}

.title p {
    font-size: 22px;
}


/* 
===========
    HERO 
===========
*/

.hero {
    position: relative;
    isolation: isolate;
    background: #2196f3;
    /* background: url("../img/banner.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    /* padding-block: 3rem; */
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-basis: 100%;
}

.hero::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: var(--grad-main);
    opacity: 0.8;
    z-index: -1;
    mix-blend-mode: lighten;
}

.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--clr-main), transparent);
    opacity: 0.8;
    z-index: -1;
}

.hero .container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .main_info {
    display: flex;
    background: linear-gradient(90deg, #e91e63, transparent);
    padding: 0.5rem;
    position: relative;
    isolation: isolate;
    border-radius: 0.25rem 0 0 0.25rem;
}

.hero .main_info::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-image: url("../img/texture.jpg");
    -webkit-mask-image: linear-gradient(to right, black 50%, transparent 75%);
    mask-image: linear-gradient(to right, black 50%, transparent 75%);
    mix-blend-mode: luminosity;
    opacity: 0.75;
    z-index: -1;
}

.ct {
    margin-block: 0.325em;
    vertical-align: middle;
    /* background: var(--clr-main); */
    border: 2px solid rgb(255 255 255 / 50%);
    border-inline-color: transparent;
}

.lead-title {
    font-size: calc(3rem + 0.825vw);
}

.hero .sub_title {
    display: inline-block;
    line-height: 1;
    font-size: calc(0.5rem + 0.825vw);
    margin-block-end: 0;
    padding: 0.5em 1.5em;
    background: var(--clr-alt);
}

.hero .conf_info .dnv {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
}


/* 
===========
    COUTDOWN 
===========
*/


/*
.countdown {
    display: flex;
    justify-content: center;
    margin-block-end: 1rem;
}
*/

.timer ul li {
    padding: 12px;
    text-transform: capitalize;
    width: 125px;
    border-radius: 20px;
    display: inline-block;
    /*background: #2c2f77;*/
    /*background: linear-gradient(180deg, #026fb6 60%,rgba(39,58,131,0.75));*/
    background: linear-gradient(180deg, var(--darkRed) 60%,var(--darkSafforn));

    border: 1px solid gold;
    box-shadow: 0px 0px 4px #000;
    margin: 8px;
}

.timer {
    margin-top: -50px;
    position: relative;
}

.countdown .box .clock {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
}

.countdown .box .time {
    margin-bottom: 0;
    text-transform: uppercase;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: gold;
    margin-left: -5px;
}


/* 
===========
    WELCOME 
===========
*/

.welcome {
    position: relative;
    isolation: isolate;
}

.welcome::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: url(../img/bg-pattern.svg);
    background-position: center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 1));
    mix-blend-mode: overlay;
    z-index: -1;
}

.welcome .title {
    font-family: "Urbanist", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 62px;
    color: var(--clr-add);
}

.welcome .title span {
    font-family: "Parisienne", cursive;
    font-weight: 300;
    margin-bottom: 0.2em;
    color: var(--clr-alt);
    display: inline-block;
}

.welcome .resources li h5 {
    color: var(--clr-main);
}

.welcome .col-lg-9 p {
font-size: 18px;
}

.quick-links .icon-box {
    vertical-align: middle;
    color: #fff;
    border-radius: 0.255rem;
    padding: 0.5rem;
    margin-right: 0.5rem;
    font-weight: 400;
    font-size: 30px;
}

.quick-links {
    margin: 2rem 0 0;
}

.quick-links ul {
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.quick-links li a {
    background-color: #fff;
    color: #000;
    display: block;
    padding: 1rem;
    font-size: 18px;
    border-radius: 0.255rem;
}

.quick-links li a:hover {
    background: var(--clr-add-2);
}

.quick-links .list-group-item p {
    margin: 0;
    font-weight: 600;
}

.quick-links .list-group-item a {
    color: #000;
    display: block;
    padding: 1rem;
    border: 1px solid var(--bs-gray-200);
    margin: 0.5rem;
    border-radius: 0.355rem;
    font-size: 18px;
}

.welcome .carousel-item img {
    width: 100%;
}

.welcome iframe {
    border-radius: 0.355rem;
}


/*Conference Highlights*/

.highlights {
    color: var(--theme-clr1);
    background-color: var(--bs-gray-200);
}

.highlights .card-box {
    background: linear-gradient(#ffffff, #f1f1f1);
    border: none;
    border-radius: 1.5rem;
    padding: 1rem;
    margin: 2rem 1rem;
    width: 100%;
}

.highlights .card-icon {
    width: auto;
    padding: 1rem;
    border: none;
    border-radius: 5rem;
    z-index: 0;
    display: inline-block;
    margin-top: -30px;
    position: relative;
    top: -20px;
    outline: 5px solid #e9ecef;
    outline-offset: 5px;
}

.highlights .card-icon img {
    filter: invert(1);
    width: 50px;
}

.highlights .card-body {
    padding-bottom: 1rem;
    color: var(--clr-add);
}

.highlights .card-body .number {
    font-size: calc(1.5rem + 0.825vw);
    font-weight: 700;
    color: var(--clr-alt);
}


/* 
=================>
     PRICING 
<================ 
*/

.pricing {
    position: relative;
    isolation: isolate;
    background: #f0f4f8;
    background: url("../img/pricing-bg.jpg");
    background-position: center;
    background-size: cover;
}

.pricing::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--clr-add);
    mix-blend-mode: lighten;
    z-index: -1;
}

.pricing .card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.pricing .card::before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    top: -45%;
    z-index: -1;
}

.pricing .card-top {
    padding-block-start: 1rem;
}

.pricing .card.one .card-top {
    background: radial-gradient(circle at 50% 0, #3f51b5, #0d47a1);
}

.pricing .card.two .card-top {
    background: radial-gradient(circle at 50% 0, #ff5722, #e01f1f);
}

.pricing .card.three .card-top {
    background: radial-gradient(circle at 50% 0, #8bc34a, #4caf50);
}

.pricing .card li::marker {
    font-family: "Material Symbols Outlined";
    content: "\e2e6";
}

.pricing .card .card-header .card-title span {
    font-size: 1.75rem;
    font-weight: 600;
}

.pricing .card-body {
    padding: 0;
}

.pricing .card-body h5 {
    font-weight: 400;
}

.pricing .card-body h3 {
    color: var(--clr-main);
}

/* from home */

.reggrid {
    background: #1e0b5f;
    margin: 20px 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.headreg {
    padding: 24px;
    background: #f9d464;
    color: #000000;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    font-weight: 800;
}
.reggrid p {
    font-size: 18px;
    padding: 10px 0px;
    color: #fff;
    text-align: center;
}
.regprice {
    font-weight: bold;
    font-size: 44px;
}
.btntheme1 {
    background: #008ed1;
    border: 2px solid #ffffff;
    padding: 10px 24px;
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 40px;
    transition: .8s;
}

/* from home end */


/* 
=================>
     TEAM 
<================ 
*/

.teams {
    position: relative;
    isolation: isolate;
    background: #f0f4f8;
    background: url("../img/team-bg.jpg");
    background-position: center;
    background-size: cover;
}

.teams::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #c0dbe7, #c1dae9);
    background: var(--clr-main);
    inset: 0;
    mix-blend-mode: lighten;
    z-index: -1;
    opacity: 0.85;
}

.team-sliders .team-items {
    margin-inline: 1rem;
    box-shadow: 0 10px 30px -15px rgb(0 0 0 / 15%);
    background: none;
    position: relative;
    padding-bottom: 1rem;
}

.profiles {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 160px;
    height: 180px;
    overflow: hidden;
    border-radius: 50% 50% 0.255rem 0.255rem;
    outline: 2px solid var(--clr-add-2);
    margin: 0 auto;
    outline-offset: -6px;
}

.team-sliders .team-items::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    inset: auto auto 0 0;
    background: #fff;
    z-index: -1;
    border-radius: 1rem;
    border-top: 5px solid var(--clr-add-2);
}

.team-items p {
    font-size: 15px;
    font-weight: 600;
    background: #f0f8ffd6;
    color: rgb(3, 3, 73);
    padding: 0 0.5rem;
    margin-bottom: 0px;
    text-align: center;
    background-color: coral;
}

.team-items p span {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    display: block;
    color: var(--bs-gray-600);
}

.profiles .flags {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 30px;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border: 2px solid var(--clr-add-2);
}

.profiles .flags img {
    border-radius: 0;
    border: none;
    height: 100%;
    object-fit: cover;
}

.committee-section {
    text-align: center;
}

.committee-section h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.committee-section h3 {
    display: inline-block;
    color: #fff;
    background-color: var(--clr-alt);
    padding: 0.3rem 1rem;
    font-size: 18px;
    border-radius: 30px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.committee-section h3::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 4px;
    background-color: var(--clr-alt);
    left: 50%;
    top: 43%;
    transform: translate(-50%);
    z-index: -1;
    border-radius: 30px;
}

.committee-section .profile-img {
    outline: 2px solid #fff;
}


/* 
===========
    VENUE 
==========
*/

.venue-images {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    place-content: center;
    align-items: center;
    grid-auto-flow: dense;
}

.venue-images img {
    border-radius: 1rem;
}

.venue-images img:nth-child(2) {
    grid-row: span 2;
    grid-column: span 2;
}


/* 
=================>
     PARTNERS 
<================ 
*/

.partners .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    place-items: center;
    row-gap: 1rem;
}


/* 
===========
    FOOTER 
===========
*/

.footer {
    position: relative;
    isolation: isolate;
    background: #f0f4f8;
    background: radial-gradient(circle, #2d6272, #3c466a);
    background: var(--clr-main);
    padding-block-start: calc(3rem + 1.5vw);
}

.footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/bg-liquid.png");
    background-position: center;
    top: 0;
    left: 0;
    mix-blend-mode: color-burn;
    z-index: -1;
    opacity: 0.25;
}

.footer .contact {
    margin-block-start: 1rem;
    font-size: 1.125rem;
    color: var(--clr-main-muted);
}

.footer .contact li {
    padding-block: 0.5rem;
}

.footer .contact li span {
    display: inline-block;
    vertical-align: top;
    padding-inline-start: 0.5rem;
}

.footer h4 {
    text-transform: uppercase;
    color: var(--clr-main-muted);
    margin-block: calc(0.25rem + 0.825vw);
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer ul li {
    color: var(--clr-main-dark);
    padding-block: 0.325rem;
    font-weight: 500;
}

.footer ul li a {
    font-size: 12px;
    padding: 5px;
}

.footer a {
    color: #fff;
}

.footer a span {
    vertical-align: middle;
    margin-right: 0.5rem;
}

.privacy-bar {
    background: rgb(255 255 255 /5%);
    margin-top: 1rem;
}

.privacy-bar ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.privacy-bar a.btn {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgb(255 255 255 / 22%);
}


/* 
<==========================================
    PAGES 
==========================================>
*/

.page .hero {
    min-height: 95vh;
}

.page .hero .hero-wrapper {
    padding-block-end: 0;
}

#contact .map iframe {
    height: clamp(380px, 48.6vw, 580px);
}

.map iframe {
    border-radius: 1rem;
}


/**/

.welcome .faculty-row {
    gap: 1rem;
}

.welcome .profile-img {
    width: 120px;
    height: 120px;
    outline: 2px solid var(--clr-add-2);
    border-radius: 10px;
    outline-offset: 5px;
}

.welcome .team-item p {
    font-size: 16px;
    font-weight: 700;
    margin-top:14px;
}

.team-item p span {
    font-size: 12px;
}

.welcome .faculty-row .team-item {
    width: auto;
    display: block;
    align-items: center;
    text-align: left;
    padding: 0.5rem;
    box-shadow: none;
    background: none;
    text-align:center;
}

.welcome .profile {
    margin: 0;
    /*margin-right: 1rem;*/
}

.our-partners ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    justify-content: space-evenly;
}

.our-partners li {
    background-color: #ffffff;
    padding: 0.2rem;
    width: 30%;
    text-align: center;
    border: 1px solid var(--bs-gray-200);
    border-radius: 0.255rem;
}

.our-partners li:nth-child(1),
.our-partners li:nth-child(2) {
    /*width: 47%;*/
}

.right-annoncement {
    border: 1px solid var(--bs-gray-200);
    overflow: hidden;
    padding: 2rem;
    border-radius: 0.355rem;
    margin: 0;
    background-color: #fff;
}

.right-annoncement li p {
    margin-bottom: 0;
    color: var(--clr-alt);
}

.right-annoncement li h5 {
    color: var(--clr-main);
    margin-left: 1.2rem;
}

.material-symbols-outlined {
    vertical-align: middle;
}


/*Inner Page*/

.inner-heading {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--bs-gray-200);
    color: var(--clr-add);
}

.inner-heading h1 {
    font-size: 28px;
    line-height: 34px;
}

.inner-heading h1 span {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.innerpage {
    padding: 3rem 0;
    overflow: hidden;
}


/*faculty*/

.faculty-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.faculty-row .team-item {
    /*background: #fff;*/
    padding: 10px;
    border-radius: 1rem;
    width: 290px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    position: relative;
}

.faculty-row .profile img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.team-item h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 1rem;
    background-color: var(--clr-add);
    padding: 0.3rem 0.5rem;
    border-radius: 0.355rem;
}

a.btn.btn-cv {
    font-size: 12px;
    background: var(--clr-alt);
    padding: 6px 14px;
    color: #fff;
    display: inline-block;
    border: none;
    border-radius: 6px 6px 0px 0px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

a.btn.btn-cv:hover {
    background: var(--clr-add-2);
}


/*.program-section*/

.program-section {
    padding: 2rem 0;
}

.program-section h2 {
    color: var(--clr-add);
    margin-bottom: 1rem;
}

.program-section table td {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 12%);
}

.program-section table td.border-end1 {
    border-right: 1px solid rgb(0 0 0 / 12%);
}

.program-section table tr:last-child td {
    border-bottom: none;
}

.program-section table .brdr-btm td {
    border-bottom: 1px solid rgb(0 0 0 / 5%) !important;
}

.program-section thead {
    background-color: var(--clr-add);
    color: #fff;
}

.program-section thead td {
    font-weight: 600;
    font-size: 16px;
}

.program-section td p {
    margin: 0;
    font-weight: 500;
}

.program-section .time {
    display: inline-block;
    background-color: var(--bs-gray-100);
    /* border: 1px solid var(--bs-gray-200); */
    padding: 0.2rem 0.5rem;
    border-radius: 0.255rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-section .time i {
    margin-right: 0.3rem;
}

.program-section table td ul {
    list-style: disc;
    margin-left: 1rem;
}

.program-section table td ol {
    list-style: decimal;
    margin-left: 1rem;
}

.program-section table td li {
    margin: 0.4rem 0 0.8rem;
    line-height: 20px;
}

.program-section table td ul.lower-alpha {
    list-style: lower-alpha;
}

.poster {
    min-height: 100px;
    width: 220px;
    border-radius: 0.255rem;
    margin: 1rem 0;
}

.poster img {
    border-radius: 0.255rem;
}

#pr_day1>td {
    width: calc(100% / 4);
}

.table :has(#pr_day1) {
    table-layout: fixed;
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .table :has(#pr_day1) {
        table-layout: unset;
        overflow-wrap: unset;
    }
}


/* td.bg-blue-100 {
    width: 22%;
}

td.bg-red-100 {
    width: 22%;
}

td.bg-teal-100 {
    width: 22%;
}

td.bg-purple-100 {
    width: 22%;
} */


/*form-section*/


/*notification*/

.notification {
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.notify-box-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.notify-box {
    width: 460px;
    max-width: 90%;
    margin: auto;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    font-size: 16px;
    padding: 1rem;
}

label.error {
    color: #f00;
    font-size: 14px;
}

.form-section h2 {
    font-size: 28px;
    padding: 0 0 10px;
    color: var(--clr-add);
}

.form-section h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: var(--clr-add);
}

.form-section li {
    margin: 0 0 1.5em;
}

.form-section li:last-child {
    margin: 0;
}

.form-label {
    margin-bottom: 0;
}

.login-box,
.registration-box,
.invoice-box {
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.355rem;
    text-align: left;
}

.login-box {
    max-width: 600px;
}

.registration-box {
    margin: 1.5rem 0;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.login-box img {
    object-fit: cover;
    height: 100%;
}

.form-control {
    font-size: 18px;
}

.registration-box h4 {
    font-size: 20px;
    line-height: 30px;
}

.registration-box .alert li {
    margin: 0.6rem 0;
}

.registration-box td {
    color: #fff;
}

.registration-box.text-dark td {
    color: var(--bs-text-dark);
}


/*abstract*/

.abstract-terms li {
    list-style: disc;
}


/*my-home*/

.my-home {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 0;
    border-radius: 0.355rem;
    text-align: center;
}

.my-home h2 {
    color: var(--clr-add);
    font-size: 26px;
    margin-bottom: 1rem;
}

.my-home h3 {
    font-size: 20px;
    margin-bottom: 2rem;
    padding: 10px;
    border-radius: .255rem;
    border-bottom: 1px solid var(--bs-gray-300);
}

.my-home ul {
    border: 1px solid var(--bs-gray-200);
    border-radius: 0.355rem;
    overflow: hidden;
    margin: 0 2rem;
}

.my-home li a {
    color: var(--clr-alt);
    transition: 0.3s ease;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid var(--bs-gray-200);
    background-color: #ffffff;
}

.my-home li:last-child a {
    border: none;
}

.my-home li a .pro-icon {
    margin-right: 0.8rem;
    font-size: 32px;
    line-height: 38px;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background-color: var(--clr-alt);
    border-radius: 0.5rem;
    transition: 0.5s ease-out;
}

.my-home li a:hover {
    color: #ffffff;
    background: var(--clr-alt);
}

.my-home li a:hover .pro-icon {
    color: var(--clr-alt);
    background-color: #fff;
}

.my-home h4 {
    font-size: 22px;
    font-weight: 400;
}


/*workshop*/

ul.workshop-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

ul.workshop-list li {
    border-radius: 0.355rem;
    margin: 1.5rem;
    position: relative;
    width: 45%;
    border-style: solid;
    border-width: 1px 1px 1px 2px;
    background: linear-gradient(#ffffff, #f8f9fa);
    transition: all 0.1s ease-out;
}

ul.workshop-list li:hover {
    border-width: 1px 1px 1px 6px;
}

ul.workshop-list li a {
    padding: 1rem 1rem 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.workshop-list li .team-head {
    width: 90px;
    height: 100px;
    overflow: hidden;
    border-radius: 0.255rem;
}

ul.workshop-list li .team-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

ul.workshop-list li h4 {
    color: var(--bs-gray-800);
    font-size: 18px;
}

ul.workshop-list li p {
    margin-bottom: 0;
    color: var(--clr-add);
}

ul.workshop-list li .num {
    position: absolute;
    left: -18px;
    top: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    outline: 8px solid #fff;
    outline-offset: 0;
    border-radius: 0.255rem;
    transform: translateY(-50%);
}

ul.workshop-list li:nth-child(1) {
    border-color: #0fa3cd;
}

ul.workshop-list li:nth-child(1) .num {
    background: var(--grad-blue);
}

ul.workshop-list li:nth-child(2) {
    border-color: #ff9800;
}

ul.workshop-list li:nth-child(2) .num {
    background: var(--grad-orange);
}

ul.workshop-list li:nth-child(3) {
    border-color: #9c27b0;
}

ul.workshop-list li:nth-child(3) .num {
    background: var(--grad-purple);
}

ul.workshop-list li:nth-child(4) {
    border-color: #4caf50;
}

ul.workshop-list li:nth-child(4) .num {
    background: var(--grad-green);
}

ul.workshop-list li:nth-child(5) {
    border-color: #ff9800;
}

ul.workshop-list li:nth-child(5) .num {
    background: var(--grad-yellow);
}

ul.workshop-list li:nth-child(6) {
    border-color: #0fa3cd;
}

ul.workshop-list li:nth-child(6) .num {
    background: var(--grad-blue);
}

ul.workshop-list li:nth-child(7) {
    border-color: #ff9800;
}

ul.workshop-list li:nth-child(7) .num {
    background: var(--grad-orange);
}

ul.workshop-list li:nth-child(8) {
    border-color: #9c27b0;
}

ul.workshop-list li:nth-child(8) .num {
    background: var(--grad-purple);
}

ul.workshop-list li:nth-child(9) {
    border-color: #4caf50;
}

ul.workshop-list li:nth-child(9) .num {
    background: var(--grad-green);
}

ul.workshop-list li:nth-child(10) {
    border-color: #ff9800;
}

ul.workshop-list li:nth-child(10) .num {
    background: var(--grad-yellow);
}

ul.workshop-list li:nth-child(11) {
    border-color: #0fa3cd;
}

ul.workshop-list li:nth-child(11) .num {
    background: var(--grad-blue);
}

ul.workshop-list li:nth-child(12) {
    border-color: #ff9800;
}

ul.workshop-list li:nth-child(12) .num {
    background: var(--grad-orange);
}

ul.workshop-list li:nth-child(13) {
    border-color: #9c27b0;
}

ul.workshop-list li:nth-child(13) .num {
    background: var(--grad-purple);
}

ul.workshop-list li:nth-child(14) {
    border-color: #4caf50;
}

ul.workshop-list li:nth-child(14) .num {
    background: var(--grad-green);
}

.program-section h4 {
    font-size: 16px;
}

.highlights p {
    font-size: 12px;
}

.welcome h3 {
    color: var(--clr-main);
    font-size: 22px;
}


/*WORKSHOP PAGES*/

.workshop-details h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #2c2f77;
}

.wrk-head {
    background: url(../img/wrk-bg.jpg);
    background-size: cover;
    background-position: center;
    color: #111;
    position: relative;
    z-index: 1;
}

.wrk-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-add-2);
    opacity: 0.9;
    z-index: -1;
}

.wrk-head h3 {
    font-size: 18px;
    margin-bottom: 1rem;
}

.wrk-head h3 span {
    display: block;
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
}

.wrk-head h4 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
}

.wrk-head h4 span {
    display: block;
    font-weight: 400;
}

.wrk-head-list {
    display: flex;
    flex-wrap: wrap;
    /* background-color: rgb(255 255 255 / 13%); */
    border-radius: 0.255rem;
    margin: 1rem 0;
}

.wrk-head-list li {
    padding: 0.5rem 1.5rem;
    border-left: 2px solid rgb(0 0 0 / 20%);
}

.wrk-head-list li:first-child {
    border: none;
    padding-left: 0;
}

.list-item li {
    display: flex;
    padding: 0.5rem 0;
}

.list-item li i {
    margin-right: 0.5rem;
    color: var(--clr-alt);
}

.list-item p {
    margin-bottom: 0;
}

.workshop-details .faculty-row .team-item {
    padding: 0.8rem 1rem 0;
}

.workshop-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.wrk-team ul li {
    background: #fff;
    padding: 1rem 0.5rem;
    border-radius: 0.8rem;
    width: 320px;
    box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px;
    position: relative;
    color: var(--clr-add);
    font-size: 15px;
    font-weight: 600;
}

.wrk-team ul li p {
    margin-bottom: 0;
}

.wrk-team ul li span {
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
    display: block;
    color: var(--bs-gray-600);
}

.agenda-table th,
.agenda-table td {
    font-size: 14px;
    line-height: 24px;
}

td.tea-break {
    padding: 1rem;
    background: var(--bs-teal);
}

td.lunch-break {
    padding: 1rem;
    background: var(--bs-yellow);
}

.pgm-img {
    font-size: 12px;
    font-weight: bold;
    margin: 0.5rem 0 0.8rem;
    line-height: 18px;
}

.pgm-img img {
    max-width: 150px;
    display: block;
    border-radius: 0.255rem;
    margin-bottom: 0.5rem;
}

.visa-info ul {
    margin-left: 25px;
}

.visa-info ul li {
    list-style: disc;
}

.visa-info h2 {
    color: var(--clr-add);
    margin-top: 30px;
}

.visa-info h3 {
    color: var(--clr-add);
}


/*ABSTRACT-GUIDELINES*/

.abstract-guidelines h4 {
    font-size: 18px;
    line-height: 26px;
    color: var(--clr-add)
}

.author_row {
    margin-bottom: 1rem;
}

.label-head {
    font-weight: bold;
}

.author_row button {
    margin: .5rem 0em;
}

.author_row button .material-symbols-outlined {
    font-size: 18px;
    line-height: 24px;
}

:root {
    --darkgreenBlue:#11567b;
	--semiDarkGreenBlue:#41a4a4;
	--darkSafforn:#c24707;
	--semiDarkSafforn:#fc930b;
	--darkRed:#b50100;
}