@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Poppins", sans-serif; */
/* font-family: "Montserrat", sans-serif; */

/* 	-----------------------------------------------------
------------------- General Styles ------------------
----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: 4px-box;
    -moz-box-sizing: 4px-box;
    box-sizing: 4px-box;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background-color: transparent;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #e23c65;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    /* color: #732DAB; */
    text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    color: #232323;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat";
    color: #1D1C1C;
}

h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    h2 {
        font-size: 22px;
        line-height: 1.2;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 24px;
        line-height: 29px;
    }
}

p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: #232323;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

strong {
    font-weight: 700;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-primary {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(90.08deg, #e23c65 1.81%, #80618f 99.95%);
    mix-blend-mode: normal;
    border-radius: 3px;
    transition: 0.4s;
    padding: 19px 60px;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #e23c65 1.81%, #80618f 99.95%);
}

.sub-title {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #e23c65;
    padding-left: 60px;
    margin-bottom: 5px;
}

.sub-title::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 42px;
    height: 1px;
    background: #e23c65;
}

.padding-t_none {
    padding-top: 0 !important;
}

.padding-b_none {
    padding-bottom: 0 !important;
}


/* 	-----------------------------------------------------
-------------------- Header Styles ------------------
----------------------------------------------------- */
.header-section {
    padding: 15px 0 20px 0;
    background-color: #FFFFFF;
}

.header-section.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
    background-color: #FFFFFF;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    /*z-index: 9999;*/
}

.logo {
    max-width: 190px;
    padding-top: 5px;
}


.brand {
    transition: all .7s ease-in-out;
}

@media screen and (max-width: 786px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background-color: #FFFFFF;
        transition: all 0.5s ease;
        margin: 0;
    }

    .navbar.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 12px;
}

.menu-item:first-child {
    margin-left: 0;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: all .4s ease-in-out;
}

.menu-link>i {
    font-size: 12px;
    color: inherit;
}

.menu-link:hover {
    outline: none;
    color: #80618f;
    transition: all .4s ease-in-out;
}

.menu-item .contact:hover {
    outline: none;
    color: #80618f;
    transition: all .4s ease-in-out;
}

.menu-link a {
    color: #14387F;
    position: relative;
}

.menu-link1::before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.menu-link::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition-duration: 0.25s;
    background-color: #FFFFFF;
}

.menu-active {
    color: #e23c65;
    position: relative;
}

.menu-active a {
    color: #14387F;
}

.menu a.active {
    color: #e23c65;
}

.menu a:hover {
    color: #14387F;
}

.menu-check .menu-link {
    background: #050524;
    border: 1px solid #050524;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 54px;
    border-radius: 10px;
    transition: all .4s ease-in-out;
    text-align: center;
}

.menu-check:hover .menu-link {
    background: #FFFFFF;
    color: #050524;
    transition: all .4s ease-in-out;
}

.menu-check .menu-link i {
    font-size: 18px;
    margin-left: 10px;
}

@media only screen and (min-width: 786px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-link1 {
        margin-right: 10px;
    }

    .menu-link1::before {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: -12px;
        top: 45%;
        transform: translateY(-50%);
        pointer-events: none;
    }
}

@media only screen and (max-width: 786px) {
    .menu {
        width: 100%;
        height: 100%;
        padding: 50px 20px 20px 20px;
    }

    .menu-item {
        display: block;
        margin: 20px auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0;
        color: #14387F;
        line-height: 30px !important;
        font-size:15px;
        font-weight:400;
    }

    .menu-link:hover {
        outline: none;
        color: #e23c65 !important;
    }

    .menu-link::after {
        position: absolute;
        bottom: -3px;
        left: 0;
        content: "";
        width: 100%;
        height: 1px;
        transform: scale(1, 1);
        transform-origin: center top;
        transition-duration: 0.25s;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .menu-item:last-child {
        padding: 0;
        height: inherit;
        border-radius: 0;
        border: none;
        display: block;
    }

    .menu-active {
        background: none !important;
    }

    .menu-active a {
        color: #000000 !important;
        background: none !important;
    }

    .menu-dropdown .menu-link {
        background: url(../img/nav-arrow.svg) no-repeat 96% !important;
    }

    .menu-quote .menu-link,
    .menu-apply .menu-link {
        justify-content: center !important;
    }
}

.submenu {
    position: absolute;
    top: 30px;
    left: -15px;
    z-index: 99999;
    min-width: 8rem;
    height: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.submenu-item {
    display: block;
}

.submenu-link {
    font-size: 12px;
    font-weight: 400;
    line-height: inherit;
    cursor: pointer;
    color: #80618f;
    white-space: nowrap;
    transition: all 0.35s ease;
    padding: 10px 15px;
    display: block;
    background: none !important;
}

.submenu-link:hover {
    outline: none;
    color: #80618f;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.submenu-link-active {
    color: #80618f;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

@media only screen and (max-width: 786px) {
    .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        padding: 0;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display:inline;
    }

    .submenu-item {
        display: block;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .submenu-link {
        font-size: 15px;
        font-weight: 400;
        line-height: inherit;
        cursor: pointer;
        color: #14387F;
        transition: all 0.35s ease;
        padding: 7px 0 5px 0;
        display: block;
        background: none !important;
    }

    .submenu-link:hover {
        outline: none;
        color: #2A2A2A;
        background-color: rgba(0, 30, 83, 0.01) !important;
    }

    .submenu-link-active {
        color: #3B66E8;
        background: none !important;
        background-color: rgba(0, 30, 83, 0.01) !important;
    }

    .menu-active a.submenu-link {
        background: none !important;
        background-color: #FFFFFF !important;
    }

    .menu-active a.submenu-link:hover {
        outline: none;
        color: #3B66E8;
    }

    .menu-active a.submenu-link-active {
        color: #3B66E8;
        background: none !important;
    }

    .brand img {
        height: 50px;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 1;
    border: none;
    outline: none;
    background: #e23c65;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    margin-left: 20%;
    width: 80%;
}

.burger-line:nth-child(3) {
    top: 1rem;
    margin-left: 50%;
    width: 50%;
}

.close {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2rem;
    height: 2rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.close:before,
.close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 1.7rem;
    width: 3px;
    background-color: #e23c65;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 786px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
        position: absolute;
        right: 0px;
        top: 31px;
    }

    .close {
        display: block;
        opacity: 1;
        visibility: visible;
        position: absolute;
        right: 10px;
        top: 10px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 786px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (min-width:1366px) and (max-width:1500px) {
    .menu-item {
        margin-left: 15px;
    }
}

.right-part {
    display: flex;
    align-items: center;
}

.submit-abstract {
    padding-left: 20px;
    padding-right: 20px;
}

.submit-abstract a {
    padding: 14px 40px;
}

@media only screen and (max-width:760px) {
    .header-section {
        padding: 15px 0;
    }

    .submit-abstract a {
        display: none;
    }
.container {
    max-width: 95%!important;
}
}

@media only screen and (min-width:761px) and (max-width:1366px) {
    .submit-abstract a {
        margin: 0 50px 0 0;
    }
}

/* 	-----------------------------------------------------
-------------------- Banner Styles ------------------
----------------------------------------------------- */
.banner-section {
    position: relative;
    /* min-height: 447px; */
    /* background: #020001 url(../img/banner-bg-image.png) no-repeat center / cover; */
    padding: 43px 0;
}

.banner-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.banner-section .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.banner-section .container .content {
    width: 100%;
    max-width: 835px;
    min-height: 305px;
    background: url(../img/banner-content-bg-3.png) no-repeat center / cover;
    padding: 0 60px 0 165px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.banner-section .container .content h1 {
    /*font-size: 32px;*/
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    /*text-transform: uppercase;*/
    padding: 10px 0;
    padding-top: 0;
    max-width: 550px;
}

.banner-section .container .content h4 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    color: #e23c65;
    /*text-transform: uppercase;*/
    padding-top: 10px;
}

.banner-section .container .content h4 span {
    display: inline-block;
    width: 100px;
    color: #F3D8FE;
}

.banner-section .container .content .btn-01 a {
    border: none;
    padding: 16px 33px;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .banner-section .banner-img {
        object-fit: cover;
        object-position: left;
    }
}

@media only screen and (max-width:760px) {
    .banner-section {
       /* min-height: inherit;*/
        background: #020001 url(../img/banner.png) no-repeat left/cover;
        padding: 15px 0;
    }

    .banner-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-section .container .content {
        width: 100%;
        max-width: 100%;
        min-height: inherit;
        background: none;
        background-color: #18010DB8;
        border: 20px solid #FFFFFF1F;
        border-radius: 20px;
        padding: 20px;
    }

    .banner-section .container .content h1 {
        font-size: 20px;
    }

    .banner-section .container .content h4 {
        font-size: 16px;
    }

    .banner-section .container .content h4 span {
        width: auto;
    }

    .banner-section .container .content .btn-01 a {
        margin-top: 10px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section {
        min-height: inherit;
        background: #020001 url(../img/banner.png) no-repeat left/cover;
        padding: 50px 0;
    }

    .banner-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-section .container .content {
        width: 100%;
        max-width: 100%;
        min-height: inherit;
        background: none;
        background-color: #18010DB8;
        border: 20px solid #FFFFFF1F;
        border-radius: 20px;
        padding: 30px;
    }

}

@media only screen and (min-width:1024px) and (max-width:1366px) {
    .banner-section {
        background: #020001 url(../img/banner.png) no-repeat left/cover;
    }
}

/* 	-----------------------------------------------------
------------------- Content Styles ------------------
----------------------------------------------------- */

:root {
    --marquee-padding: 0px;
    --marquee-padding-negative: calc(var(--marquee-padding) * -1);
}

.marquee-section {
    background-color: #020001;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 25px 0;
	font-size: 15px;
    text-align: center;
}

.marquee:hover .marquee__item {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.marquee__seperator {
    margin: 0 0.5rem;
}

.marquee__item {
    display: inline-block;
    will-change: transform;
    -webkit-animation: marquee 25s linear infinite;
    animation: marquee 25s linear infinite;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
}

.marquee__item strong {
    font-weight: 600;
    color: #e23c65;
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.welcome-section {
    padding: 100px 0;
}

.about-us {
    padding: 70px 0;
}

.scientific-section {
    padding: 100px 0;
}

.members-section {
    padding: 100px 0;
}

.signup-section {
    padding: 100px 0;
}

.speakers-section {
    padding: 100px 0;
}

.partners-section {
    padding: 100px 0;
}

.infos-section {
    padding: 100px 0;
}

.schedule-section {
    padding: 100px 0;
}

.attractions-section {
    padding: 100px 0;
}


@media only screen and (max-width:1024px) {
    .welcome-section {
        padding: 70px 0;
    }

    .about-us {
        padding: 70px 0;
    }

    .scientific-section {
        padding: 70px 0;
    }

    .members-section {
        padding: 70px 0;
    }

    .signup-section {
        padding: 70px 0;
    }

    .speakers-section {
        padding: 70px 0;
    }

    .partners-section {
        padding: 70px 0;
    }

    .infos-section {
        padding: 70px 0;
    }

    .schedule-section {
        padding: 70px 0;
    }

    .attractions-section {
        padding: 70px 0;
    }
}


@media only screen and (max-width:567px) {
.container {
    max-width: 95%!important;
}
    .welcome-section {
        padding: 50px 0;
    }

    .about-us {
        padding: 50px 0;
    }

    .scientific-section {
        padding: 50px 0;
    }

    .members-section {
        padding: 50px 0;
    }

    .signup-section {
        padding: 50px 0;
    }

    .speakers-section {
        padding: 50px 0;
    }

    .partners-section {
        padding: 50px 0;
    }

    .infos-section {
        padding: 50px 0;
    }

    .schedule-section {
        padding: 50px 0;
    }

    .attractions-section {
        padding: 50px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1080px) {}

@media only screen and (min-width:1081px) and (max-width:1170px) {}



/* 	-----------------------------------------------------
-------------------- Footer Styles ------------------
----------------------------------------------------- */
.footer-section {
    background: linear-gradient(to right, #24235d 0%, #24235d 64.5%, #24235d 64.5%, #181751 64.5%, #181751 64.5%, #181751 100%);
}

.footer-section .container {
    display: flex;
    justify-content: space-between;
    /*align-items: flex-start;*/
}

.footer-section .container .footer-left {
    width: 65%;
    padding: 50px 50px 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section .container .footer-left .company-info {
    width: 35%;
}

.footer-section .container .footer-left .quick-links {
    width: 30%;
}

.footer-section .container .footer-left .get-in-touch {
    width: 35%;
}

.footer-section .container .footer-right {
    width: 35%;
    padding: 50px 0 50px 50px;
    background-color: #181751;
}

.footer-section figure {
    max-width: 200px;
    margin: 0 0 30px 0;
}

.footer-section h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    padding: 10px 0 20px 0;
}

.footer-section p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.065em;
    text-align: left;
    color: #ffffff;
    padding: 4px 0;
}

.footer-section p strong {
    display: block;
    font-weight: 800;
}

.footer-section p span {
    color: #FFFFFF;
}

.footer-section p a {
    color: #ffffff;
    transition: all .4s ease-in-out;
}

.footer-section p a:hover {
    color: #8E8DAC;
    transition: all .4s ease-in-out;
}

.footer-section ul.links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul.links li {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.065em;
    text-align: left;
    color: #8E8DAC;
    padding:0 0 12px 0;
}

.footer-section ul.links li a {
    color: #ffffff;
    transition: all .4s ease-in-out;
}

.footer-section ul.links li a:hover {
    color: #8E8DAC;
    transition: all .4s ease-in-out;
}

.footer-section ul.socials {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.footer-section ul.socials li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #FFFFFF;
}

.footer-section ul.socials li a {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.footer-section ul.socials li a:hover {
   /* color: #e23c65; */
    transition: all .4s ease-in-out;
}

.footer-section ul.trusted {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    max-width: 190px;
}

.footer-section .newsletter {
    padding: 10px 0;
}

.footer-section .newsletter input[type="email"] {
    margin: 0;
    padding: 15px 15px 15px 60px;
    width: 100%;
    height: 60px;
    background: #181751 url(../img/input-email.png) no-repeat left;
    border: 1px solid #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #FFFFFF;
}

.footer-section .newsletter input[type="email"]::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.footer-section .newsletter input[type="email"]::-ms-input-placeholder {
    color: #FFFFFF;
}

.footer-section .newsletter input[type="submit"] {
    margin: 20px 0;
    padding: 15px;
    width: 100%;
    max-width: 220px;
    height: 60px;
    background: linear-gradient(180deg, #e23c65 0%, #6F2E74 100%);
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}

@media only screen and (max-width:760px) {
    .footer-section {
        background: linear-gradient(to right, #24235d 0%, #24235d 64.5%, #24235d 64.5%, #24235d 64.5%, #24235d 64.5%, #24235d 100%);
    }

    .footer-section .container {
        flex-wrap: wrap;
    }

    .footer-section .container .footer-left {
        width: 100%;
        padding: 30px 15px;
        flex-wrap: wrap;
    }

    .footer-section .container .footer-left .company-info {
        width: 100%;
    }

    .footer-section .container .footer-left .quick-links {
        width: 100%;
        padding: 30px 0 15px 0;
    }

    .footer-section .container .footer-left .get-in-touch {
        width: 100%;
    }

    .footer-section .container .footer-right {
        width: 100%;
        padding: 30px;
    }

    .footer-section figure {
        margin: 10px 0 20px 0;
    }

    .footer-section h4 {
        font-size: 18px;
        line-height: 1.2;
        padding: 10px 0;
        max-width: 100%;
    }

    .footer-section p {
        font-size: 15px;
        line-height: 1.2;
        padding: 5px 0;
    }

    .footer-section ul.links li {
        font-size: 15px;
        padding: 5px 0;
    }

    .footer-section ul.socials {
        margin: 5px 0 20px 0;
    }

    .footer-section ul.socials li {
        font-size: 20px;
    }

    .footer-section .newsletter {
        padding: 10px 0;
    }

    .footer-section .newsletter input[type="email"] {
        padding: 10px 15px 10px 60px;
        height: 50px;
        font-size: 15px;
    }

    .footer-section .newsletter input[type="submit"] {
        margin: 10px 0;
        padding: 10px;
        max-width: 160px;
        height: 50px;
        font-size: 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section {
        background: linear-gradient(to right, #24235d 0%, #24235d 64.5%, #24235d 64.5%, #24235d 64.5%, #24235d 64.5%, #24235d 100%);
    }

    .footer-section .container {
        flex-wrap: wrap;
    }

    .footer-section .container .footer-left {
        width: 100%;
        padding: 50px 0;
    }

    .footer-section .container .footer-right {
        width: 100%;
        padding: 50px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .footer-section .container .footer-left {
        padding: 50px 15px 50px 0;
        gap: 30px;
    }

    .footer-section .container .footer-right {
        padding: 50px 0 50px 15px;
    }
}

/* 	-----------------------------------------------------
------------------ Go to top Styles -----------------
----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #e23c65 url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 0;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}


/* about-us */
.about-us {
    position: relative;
}

.about-us .virus-img {
    display: none;
}

.top-heading {
    text-align: center;
    margin-bottom: 25px;
}

.about-text {
    text-align: center;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.09);
    padding: 20px;
    text-align: justify;
}

.about-text p strong,
.message-text p strong,
.message-text1 p strong {
    color: #d3214d;
}

.about-text p:nth-child(3) {
    margin-bottom: 15px;
}

.about-text h6 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #732DAB;
    margin: 20px 0 15px 0;
}

.about-btn {
    text-align: center;
    margin-top: 25px;
}

.about-btn a {
    padding: 16px 37px;
}

.abt-conf .about-us {
    padding-top: 50px;
}

@media (min-width: 768px) {
    .about-us .virus-img {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 0;
        z-index: -1;
        max-width: 100px;
    }

    .abt-conf .about-us .virus-img {
        display: block;
        position: absolute;
        top: 40px;
        right: 0;
        z-index: -1;
        max-width: 100px;
    }
}

@media (min-width: 1200px) {
    .top-heading h2 {
        /*max-width: 440px;*/
        margin: auto;
    }

    .about-text h6 {
        margin: 35px 0 24px 0;
    }

    .about-btn {
        margin-top: 35px;
    }

    .about-us .virus-img {
        bottom: 60px;
        max-width: 145px;
    }

    .abt-conf .about-us .virus-img {
        top: 40%;
        max-width: 145px;
    }

}

@media only screen and (min-width:400px) and (max-width:460px){


}


@media only screen and (min-width:576px) and (max-width:1024px) {
    .abt-conf .about-us .about-text img {
        width: 50%;
    }

}

@media (max-width: 575px) {
    .abt-conf .about-us .about-text img {
        width: 90%;
    }

.testing .sub-header
{
   width: 57%;
    margin: auto; 
}

}


/* scientific-section */
.scientific-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.scientific-wrap {
    display: flex;
    flex-wrap: wrap;
    background: #FFFFFF;
    mix-blend-mode: normal;
    border: 1px solid #ECECEC;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    padding: 20px 15px;
}

.detail-list {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.detail-list:last-child {
    padding-top: 20px;
    padding-bottom: 0;
}

.detail-list:last-child::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% + 30px);
    height: 1px;
    background: #ECECEC;
}

.detail-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detail-list li:last-child {
    margin-bottom: 0;
}

.detail-list li .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e23c65;
    border: 1px solid #6F2E74;
    box-shadow: 3px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.detail-list li p {
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    font-weight: 500;
    width: calc(100% - 22px);
    padding-left: 10px;
}

.scientific-section .btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.scientific-section .btn-box a:first-child {
    padding: 16px 60px;
}

.scientific-section .btn-box a:last-child {
    background: #80618f;
    mix-blend-mode: normal;
    border-radius: 3px;
    padding: 16px 30px;
    font-size: 12px;
}

.btn-box a:last-child:hover {
    background: #e23c65;
}

@media (min-width: 768px) {
    .scientific-section h2 {
        margin-bottom: 25px;
    }

    .scientific-wrap {
        padding: 30px;
    }

    .detail-list li {
        margin-bottom: 20px;
    }

    .detail-list li p {
        padding-left: 20px;
    }

    .scientific-section .btn-box {
        gap: 15px;
        margin-top: 35px;
    }

    .scientific-section .btn-box a:last-child {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .scientific-section h2 {
        margin-bottom: 30px;
    }

    .scientific-wrap {
        max-width: 1305px;
        margin: 0 auto;
        padding: 30px 0;
    }

    .detail-list {
        width: 50%;
        padding-left: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .detail-list:last-child {
        padding-top: 0;
    }

    .detail-list li {
        margin-bottom: 25px;
    }

    .detail-list:last-child::before {
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 1px;
        height: calc(100% + 60px);
    }

    .scientific-section .btn-box a:last-child {
        padding: 16px 59px;
    }
}


/* infos-section */
.infos-wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.ifos-top {
    position: relative;
    background: #FDEAF3;
    z-index: 1;
    padding-bottom: 20px;
}

.ifos-top::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 310px);
    background: #F6E1EB;
    z-index: -1;
}

.ifos-col {
    text-align: center;
    width: 100%;
}

.ifos-col p span {
    display: block;
}

.ifos-col p strong {
    display: inline;
    color: #e23c65;
}

.ifos-col.bg-second {
    background: #F6E1EB;
    padding: 10px 0;
}

.ifos-col.bg-second a {
    padding: 12px 41px;
    letter-spacing: 0;
}

.ifos-col.bg-second p {
    font-size: 14px;
    line-height: 21px;
    color: #101010;
    margin-top: 15px;
}

.ifos-col.bg-second p span {
    display: block;
}

.ifos-col img {
    margin: 0 auto;
}

.ifos-col:last-child img {
    width: 240px;
}

.ifos-footer {
    background: linear-gradient(90.08deg, #e23c65 1.81%, #2E3273 99.95%);
    mix-blend-mode: normal;
    padding: 12px 0;
}

.qr-code {
    position: relative;
    z-index: 1;
    margin-top: -37px;
    margin-bottom: 15px;
}

.cont-link p {
    font-size: 12px;
    line-height: 9px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.cont-link p a {
    color: #ffffff;
    margin-left: 5px;
}

.cont-link p a:first-child {
    margin-left: 20px;
}

.cont-mail a {
    font-size: 12px;
    color: #ffffff;
}

.cont-mail a:hover {
    text-decoration: underline;
}

.cancer-detl {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
}

.cancer-detl li a {
    position: relative;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    padding-left: 5px;
}

.cancer-detl li a::before {
    position: absolute;
    content: "";
    top: 41%;
    left: -2;
    transform: translate(-50%, 0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
}

@media (min-width: 768px) {
    .ifos-top::before {
        height: calc(100% - 280px);
    }

    .infos-ftr__wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .cont-link {
        margin-left: 40px;
    }

    .cont-link p {
        margin-bottom: 0;
    }

    .cont-mail {
        height: 15px;
        line-height: 12px;
        margin-left: 30px;
    }

    .cont-mail a {
        line-height: 12px;
    }
}

@media (min-width: 1200px) {
    .ifos-top {
        padding-bottom: 0;
    }

    .ifos-top::before {
        height: 100%;
        width: calc(100% / 4);
    }

    .infos-wrap {
        align-items: center;
    }

    .ifos-col {
        width: 25%;
    }

    .ifos-col:first-child {
        text-align: left;
    }

    .ifos-col:last-child {
        text-align: right;
    }

    .qr-code {
        margin-top: -25px;
        margin-bottom: 0;
    }

    .cont-mail {
        height: auto;
    }

    .infos-ftr__wrap {
        align-items: center;
    }

    .cont-link {
        margin-left: 20px;
    }

    .cancer-detl li a:hover {
        color: #e23c65;
    }

    .cancer-detl li a:hover::before {
        background: #e23c65;
    }

    .cont-mail {
        margin-left: 20px;
    }

    .cancer-detl {
        column-gap: 18px;
        margin-left: 20px;
    }
}

@media (min-width: 1366px) {
    .cont-link {
        margin-left: 70px;
    }

    .cont-mail {
        margin-left: 50px;
    }

    .cancer-detl {
        column-gap: 25px;
        margin-left: 70px;
    }
}

@media (min-width: 1440px) {
    .cancer-detl {
        margin-left: 70px;
    }
}

/* @media (min-width: 1600px) {
    .cont-link {
        margin-left: 108px;
    }

    .cont-mail {
        margin-left: 165px;
    }
} */


/* partners-section */
.partners-section h2 {
    margin-bottom: 25px;
}

.partners-section p {
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #111111;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.partners-section .row {
    row-gap: 20px;
}

.supported-by,
.platinum-partner,
.gold-sponsors,
.silver-sponsors,
.hospitality-partner {
    margin-bottom: 30px;
}

.patner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 304px;
    height: 218px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    margin: 0 auto;
}

.logo-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.silver-sponsors .logo-wrapper {
    max-width: 100%;
}

.silver-sponsors .patner-logo {
    width: 250px;
}

.silver-sponsors .inner {
    width: 20%;
}

.hospitality-partner .logo-wrapper {
    max-width: 1276px;
}

.official-partners .logo-wrapper {
    max-width: 100%;
}

.official-partners .patner-logo {
    width: auto;
}

@media (max-width: 1199px) {
    .silver-sponsors .inner {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .silver-sponsors .inner {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .silver-sponsors .inner {
        width: 100%;
    }
}




/* Sanjoy */
.section-padding-bottom {
    padding-bottom: 50px;
}

.section-title {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 18px;
    line-height: 24px;
    color: #1D1C1C;
}

.section-padding-bottom {
    padding-bottom: 50px;
}

.city-card-wrapper {
    padding-top: 15px;
}

.city-card-item {
    border-radius: 14px;
    border: #EDEDED 1px solid;
    box-shadow: rgba(0, 0, 0, 0.12) 0 4px 44px;
    margin: 15px 0;
    padding: 13px;
}

.city-card-image {
    position: relative;
}

.city-card-image img {
    border-radius: 14px 14px 0 0;
   /* height: 225px; */
    width: 100%;
    object-fit: cover;
}

.city-card-image span {
    background-color: #e23c65;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 700;
    line-height: 8px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    position: absolute;
    left: 9px;
    bottom: -15px;
    letter-spacing: 2px;
}

.city-card-content {
    padding: 40px 9px 28px;
}

.city-card-content p {
    font-size: 14px;
}

.city-card-item__bottom {
    padding: 0 9px 15px;
}

.city-card-title {
    font-family: "Montserrat";
    font-size: 12px;
    line-height: 24px;
    padding-bottom: 15px;
}

.btn-center {
    margin: 0 auto;
}

@media (min-width:768px) {
    .section-padding-bottom {
        padding-bottom: 75px;
    }

    .city-card-wrapper {
        padding-top: 20px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .city-card-item {
        width: calc(50% - 30px);
        margin: 15px;
    }

    .btn-center {
        padding-top: 39px;
    }

    .city-card-item__bottom .btn-primary {
        padding: 16px 35px;
        border: none;
    }

    .btn-center .btn-primary {
        padding: 16px 35px;
        width: 300px;
        border: none;
    }

}

@media (min-width:1200px) {
    .section-padding-bottom {
        padding-bottom: 100px;
    }

    .city-card-wrapper {
        padding-top: 25px;
    }

    .city-card-item {
        width: calc(25% - 30px);
        margin: 15px;
        margin: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}



.schedule-wrapper {
    box-shadow: rgba(0, 0, 0, 0.12) 0 4px 44px;
    margin-top: 30px;
}

.schedule-section ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.schedule-section ul.tabs li {
    background: none;
    color: #303030;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    font-family: "Montserrat";
    font-size: 17px;
    line-height: 19px;
    color: #303030;
    font-weight: 700;
}

.schedule-section ul.tabs li span {
    font-family: "Poppins";
    color: #111111;
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    padding-top: 6px;
}

.schedule-section ul.tabs li.current {
    background: #e23c65;
    color: #fff;
}

.schedule-section ul.tabs li.current span {
    color: #fff;
}

.schedule-section .tab-content {
    display: none;
}

.schedule-section .tab-content.current {
    display: inherit;
}

.schedule-nav {
    overflow: auto;
    padding-bottom: 10px;
}

.schedule-nav .tabs {
    width: 500px;
}

.schedule-row {
    border: #E5E8E8 1px solid;
    border-bottom: none; font-weight:normal;
}

.schedule-row:last-child {
    border-bottom: #E5E8E8 1px solid;
}

.schedule-col-1,
.schedule-col-11 {
    padding: 4px 8px;
}

@media (min-width:768px) {

    .schedule-section .tab-content {
        padding: 0px;
    }

    .schedule-nav {
        padding-bottom: 0px;
    }

    .schedule-nav .tabs {
        width: unset;
    }

    .schedule-section ul.tabs li {
        width: 200px;
        padding: 16px;
        border-right: #E5E8E8 1px solid;
        position: relative;
    }

    .schedule-section ul.tabs li:last-child {
        border-right: none;
    }

    .schedule-row {
        display: flex;
        justify-content: space-between;
    }

    .schedule-col-1 {
        border-right: #E5E8E8 1px solid;
        padding: 22px 16px 25px 20px;
        width: 200px;
    }


    .schedule-col-11 {
        width: calc(100% - 200px);
        padding: 22px 16px 25px 20px;
    }

    .schedule-section ul.tabs li.current::before {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 32px;
        height: 15px;
        background: url(../img/tab-icon.gif);
        z-index: 10;

    }

    .schedule-nav {
        overflow: unset;
    }

}

@media (min-width:1200px) {
    .schedule-section ul.tabs li {
        width: 250px;
    }

    .schedule-wrapper {
        margin-top: 40px;
    }

    .schedule-col-1 {
        padding: 22px 16px 25px 46px;
        width: 250px;
    }

    .schedule-col-11 {
        padding: 22px 16px 25px 160px;
        width: calc(100% - 250px);
    }

    .schedule-row:first-child .schedule-col-1 {
        padding: 30px 16px 25px 46px;
        width: 250px;
    }

    .schedule-row:first-child .schedule-col-11 {
        padding: 30px 16px 25px 160px;
        width: calc(100% - 250px);
    }

    .schedule-section ul.tabs li {
        padding: 18px 0 19px 60px;
    }
}


.speakers-link .featured-card-image img {
    border-radius: 4px;
    margin: 0px auto;
    width: 80%;
    margin-left: 10%;
}

.featured-card-content p {
    padding: 0px;
    font-family: "Poppins";
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color: #111111;
    
    display: -webkit-box;
    -webkit-line-clamp: 2 !important; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.featured-card-item {
    border-radius: 40px 40px 0 0;
    margin: 15px 0;
    display: inline-block;
    width: 100%;
}



.featured-card-image img {
    /*height: 212px;*/
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 40px;
}

.featured-card-content {
   /* border-radius: 0 0 40px 40px;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
    min-height: 190px;*/
    padding: 88px 20px 23px;
    margin-top: -60px;
}

.speakers-section .featured-card-content {
    border-radius: 0 0 40px 40px;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    min-height: 130px;
}

.speakers-section .featured-card-content h4{ margin-bottom:5px; height:30px;}

.featured-card-content h4 {
    margin-bottom: 10px;
    font-family: "Poppins";
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    color: #e23c65;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.featured-card-wrapper {
    padding-top: 25px;
}

.speakers .featured-card-item {
    border-radius: 0;
    
}



.speakers-link .featured-card-content h4 {
    color: #373173;
}

.speakers-link:hover .featured-card-content h4 {
    color: #e23c65;
}

.speakers .featured-card-item {
    transition: all 1000ms ease-in;
}

.speakers .featured-card-item:hover {
    transition: all 1000ms ease-in;
    transform: scale(1.1);
}



@media (min-width:768px) {
    .featured-card-item {
        width: calc(50% - 30px);
        margin: 15px;
    }

    .featured-card-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -15px;
    }
}

@media (min-width:1200px) {
    .featured-card-item {
        width: calc(20% - 30px);
    }
}

.signup-section {
    position: relative;
}

.virus-img {
    display: none;
}

.signup-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1425px;
    height: 100%;
    background: linear-gradient(104deg, rgba(128, 97, 143, 1) 0%, rgba(136, 98, 154, 1) 100%);
    z-index: -1;
}

.signup {
    width: 75vw;
}

.signup-row input[type="text"] {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 24px 26px;
    color: #fff;
    font-family: "Poppins";
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    opacity: 100;
}

.signup-row input[type="text"]::placeholder {
    color: #fff;
    font-family: "Poppins";
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    opacity: 100;
}

.signup-row input[type="button"] {
    width: 300px;
    height: 50px;
    background-color: #9555B0;
    border: 1px solid #9555B0;
    border-radius: 3px;
    padding: 36px;
    color: #fff;
    font-size: 14px;
    line-height: 10px;
    font-weight: 700;
    opacity: 100;
    font-family: "Montserrat";
    padding: 10px;
    letter-spacing: 2px;
}

.signup {
    width: 100%;
    margin-bottom: 30px;
}

.signup img {
    width: 100%;
}

.signup-col-12,
.signup-col-6 {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.signup-col-12 span,
.signup-col-6 span {
    position: absolute;
    top: 14px;
    right: 28px;
}

.content-text h3 {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.content-text h6 {
    position: relative;
    padding-left: 58px;
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 14px;
    line-height: 10px;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.content-text p {
    font-family: "Poppins";
    font-size: 15px;
    line-height: 26px;
    color: #fff;
}

.content-text {
    padding-bottom: 32px;
}

.content-text h6::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 43px;
    height: 1px;
    background-color: #fff;
}

@media (min-width:768px) {
    .signup-section .container-fluid {
        padding: 0;
    }

    .virus-img {
        display: block;
        position: absolute;
        bottom: -80px;
        right: 0;
        z-index: -1;
        max-width: 160px;
    }

    .signup-section::before {
        width: 74.241vw;
    }

    .signup {
        width: 32.6vw;
        margin-bottom: 0;
    }

    .signup img {
        width: 100%;
        height: 751px;
        object-fit: cover;
    }

    .signup-content {
        width: calc(100vw - 32.6vw);
    }

    .signup-container {
        max-width: 811px;
        margin: 0 40px 0 41px;
    }

    .signup-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .signup-col-12,
    .signup-col-6 {
        margin-bottom: 20px;
    }
}


@media (min-width:1200px) {
    .signup-section {
        padding-top: 80px;
    }

    .virus-img {
        bottom: -100px;
        max-width: 200px;
    }

    .signup-row input[type="text"] {
        height: 60px;
        padding: 0 36px;
    }

    .signup-col-12 span,
    .signup-col-6 span {
        top: 20px;
    }


    .signup-section .container-fluid {
        padding: 0;
    }

    .signup-section::before {
        width: 74.241vw;
    }

    .signup {
        width: 32.6vw;
    }

    .signup img {
        width: 100%;
    }

    .signup-content {
        width: calc(100vw - 32.6vw);
    }

    .signup-container {
        max-width: 811px;
        margin: 0 40px 0 156px;
    }

    .signup-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .signup-row {
        display: flex;
        gap: 20px;
    }

    .signup-col-12,
    .signup-col-6 {
        margin-bottom: 20px;
    }
}




/* about page styles */
.welcome-banner-section {
    background-color: #e1dbdb;
    padding: 30px;
}

.welcome-banner-section p {
    font-size: 30px;
    font-weight: 800;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to right, #e23c65, #80618f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message-text p,
.message-text1 p {
    line-height: 2.5;
}




.inviters-profile {
    display: flex;
    justify-content: end;
    gap: 20px;
    padding-right: 30px;
    /* margin-top: 50px; */
}

.profile-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    width: 200px;
}

.profile-card img {
    border-bottom: 1px solid #ddd;
    width: 100%;
    height: auto;
}

.profile-card .profile-info {
    padding: 10px;
}

.profile-card .name {
    font-size: 1em;
    font-weight: bold;
    color: #e23c65;
}

.profile-card .role {
    color: #777;
    font-size: 15px;
}

.imp-dates .date-text {
    font-size: 20px;
}

.imp-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin: 5px 0;
    /* width: 90%;
    height: 80%; */
}

.imp-card i {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2E3273;
}

.imp-card h4 {
    font-size: 1.em;
    margin-bottom: 10px;
    color: #e23c65;
}

.imp-card p {
    color: #777;
    font-size: 1em;
}

.imp-dates .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imp-dates .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .imp-dates .row {
        flex-direction: row;
    }

    .imp-card {
        margin: 15px;
        flex: 0 0 30%;

    }
}

@media only screen and (min-width:577px) and (max-width:1024px) {
    .welcome-msg p {
        font-size: 15px !important;
    }

    .welcome-msg .msg-head {
        display: flex;
        flex-direction: column;
    }

    .welcome-msg .inviters-profile {
        display: flex;
        /* flex-direction: column; */
        margin-bottom: 20px;
        justify-content: center;
        align-items: center;
    }

    .welcome-msg .inviters-profile .profile-card {
        width: 300px;
    }


}

@media only screen and (min-width:430px) and (max-width:576px) {
    .welcome-msg p {
        font-size: 15px !important;
    }

    .welcome-msg .msg-head {
        display: flex;
        flex-direction: column;
    }

    .welcome-msg .inviters-profile {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        justify-content: center;
        align-items: center;
    }

    .welcome-msg .inviters-profile .profile-card {
        width: 300px;
    }


}

@media only screen and (min-width:320px) and (max-width:429px) {
    .welcome-msg p {
        font-size: 15px !important;
    }

    .welcome-msg .msg-head {
        display: flex;
        flex-direction: column;
    }

    .welcome-msg .inviters-profile {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        justify-content: center;
        align-items: center;
    }

    .welcome-msg .inviters-profile .profile-card {
        width: 300px;
    }


}

.aboutus-section {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 40px;
    margin: 0px 20px;
}

.aboutus-section .about-us {
    padding: 0px;
}

.general-info .gnrl-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
}

.general-info .gnrl-card h2 {
    font-size: 18px;
    color: #6F2E74;
}

.general-info .icon-section {
    background-color: #F6E1EB;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.general-info .icon-section i {
    color: #e23c65;
    font-size: 24px;
}

.bottom-section h2 {
    font-size: 20px;
}

.abt-conf .top-heading h2 {
    font-size: 22px;
}

/* .abt-org .contentone p {
    margin: 30px;
} */

.abt-org .org-container {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.abt-org .about-us {
    padding: 10px 0px;
}


.upcoming {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.upcoming h2 {
    text-align: center;
    margin-bottom: 20px;
}

.upcoming .row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
    justify-content: center;
}

.upcoming .event-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.upcoming .event-card:hover .date {
    background: linear-gradient(180deg, #e23c65 1.81%, #2E3273 99.95%);
}

.upcoming .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90.08deg, #e23c65 1.81%, #2E3273 99.95%);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-right: 20px;
    position: relative;
    min-width: 60px;
    text-align: center;
}

.upcoming .date .month,
.upcoming .date .day {
    margin: 0;
    color: #fff;
}

.upcoming .date .line {
    width: 80%;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
}

.upcoming .content p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.upcoming .content h3 {
    margin: 5px 0 0 0;
    font-size: 18px;
    color: #333;
}

/* .upcoming .event-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

/* Responsive Design */
@media (max-width: 768px) {
    .upcoming .event-card {

        align-items: flex-start;
    }

    .upcoming .date {
        margin-bottom: 10px;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .upcoming {
        padding: 10px;
    }

    .upcoming .event-card {
        padding: 15px;
    }

    .upcoming .date {
        padding: 10px;
    }

    .upcoming .content p {
        font-size: 14px;
    }

    .upcoming .content h3 {
        font-size: 16px;
    }

    .venue-main-section .nav-item {
        margin: 0 10px !important;
    }
}


.venue-main-section .nav-tabs {
    justify-content: center;
}

.venue-main-section .nav-item {
    margin: 0 20px;
}

.venue-main-section .nav-link {
    background: linear-gradient(90.08deg, #e23c65 1.81%, #80618f 99.95%);
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;
}

.venue-main-section .nav-link:hover {
    background: linear-gradient(180deg, #e23c65 1.81%, #80618f 99.95%);
}

.venue-main-section .nav-link.active {
    background: linear-gradient(90.08deg, #e23c65 1.81%, #80618f 99.95%);
    color: white;
}

.venue-main-section .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #2E3273;
    border-radius: 2px;
}

.venue-main-section .tab-content {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.venue-main-section .tab-content p {
    line-height: 1.6;
}

.venue-main-section .tab-content .heading {
    font-size: 18px;
}

.venue-main-section .sub-content {
    display: flex;
    align-items: center;
}

.venue-main-section .sub-content .bullet {
    color: red;
    font-size: 25px;
    margin-right: 10px;
}




/* about page styels end */

/* ======================
programme pages styles
====================== */

.prg-body-section {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scientific-program .nav-link {
    background-color: #e23c65;
    color: white;
    padding: 20px;
    position: relative;
    border: 1px solid white;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
}

.scientific-program .nav-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.scientific-program .nav-link.active {
    background: linear-gradient(90deg, #e23c65 0%, #2E3273 100%);
    color: white;

}

.scientific-program .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e23c65;
}

.scientific-program .tab-content>.tab-pane {
    padding: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 5px;
    background-color: #fff;
}

.tab-content .title-section p {
    font-size: 18px;
}

.prg-main-info {
    padding: 20px;
    border: 1px solid #e7e5e5;
}

.btn-section button {
    border-radius: 5px;
    padding: 4px;
    background-color: #ffffff;
}

.btn-section button:hover {
    color: white;
    background: linear-gradient(90deg, #e23c65 0%, #2E3273 100%);
}

/* ---------------
speakers styles
--------------- */
.sp-main-content {
    margin-top: 50px;
}

.sp-main-content .head {
    font-size: 18px !important;
    color: #e23c65;
}

.sp-body-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 30px;
    padding: 30px 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);

    padding-right: 30px !important;
}

.sp-body-section .card-section {
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: 1px solid rgb(209, 207, 207);

}

.sp-body-section .card-section a {
    color: black;
}

.sp-body-section .card-section a:hover {
    color: #e23c65;
}

.sp-body-section .card-section:hover {
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 8px rgba(203, 37, 120, 0.3);
    border-radius: 5px;
    border: 1px solid rgb(209, 207, 207);

}

.sp-body-section .card-section img {
    width: 100%;
    border-radius: 5px;
}

.sp-body-section .card-section h4 {
    margin-top: 0;
    font-size: 15px;
    font-weight: bold;
}

.sp-body-section .card-section p {
    font-size: 13px;
    line-height: 1.4;
}

/* ======================
programme pages styles end
====================== */

/* ===================
register styles
=================== */
.register p,
li {
    font-size: 13px !important;
    line-height: 20px !important;
}

.register p span {
    font-size: 13px !important;
    
}

.register .head {
    text-align: center;
    font-size: 20px;
}

.register .btn-primary {
    font-size: 14px !important;
}

.register .btn-primary a {
    color: white !important;
}

.register .table {
    width: 100%;
    border-collapse: collapse;
    /* background-color: #d9edf7; */
}

.register .table td {
    text-align: center;
    padding: 18px;
    border: 3px solid white;
    font-weight: 500;
    font-size:14px !important;
}

.register .br-none {
    border: none;
}

.register .bg-info {
    background-color: #2E3273 !important;
    color: white !important;

}

.register .table-responsive2 .bg-info {
    background-color: #2E3273 !important;
    color: white !important;
    /* width: 100% !important; */
}

.register .table-responsive3 .bg-info {
    background-color: #2E3273 !important;
    color: white !important;
    width: 100% !important;
}


.register .bg-light {
    background-color: #f7f7f7;
}

.register .group img {
    width: 80px;
    height: 50px;
    margin: 5px;
    background-color: white;
    border: 1px solid rgb(143, 142, 142);
}

.register .group h2,
.register .fee-includes h2,
.register .tour h2,
.register .tour h3,
.register .fee-includes h3 {
    font-weight: bold;
    color: #2E3273;
    font-size: 20px;
    margin-bottom: 8px;
}

.register .group p,
.register .fee-includes p,
.register .tour p,
.register .tour p,
.register .fee-includes p {
    line-height: 1.6;
    margin-bottom: 8px;
}

.register .group ul,
.register .fee-includes ul,
.register .tour ul,
.register .tour ul,
.register .fee-includes ul {
    margin-left: 30px;
}

.register .group li,
.register .fee-includes li,
.register .tour li,
.register .tour li,
.register .fee-includes li {
    line-height: 1.3;
}

@media only screen and (min-width:430px) and (max-width:576px) {
    .welcome-banner-section {
        padding: 10px;
    }

    .welcome-banner-section p {
        font-size: 25px;
        padding: 15px;
    }

    .register .btn-primary {
        font-size: 13px !important;
        padding: 10px 10px;
    }

    .register .group h2,
    .register .fee-includes h2,
    .register .tour h2,
    .register .tour h3,
    .register .fee-includes h3 {
        font-weight: bold;
        color: #2E3273;
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media only screen and (min-width:320px) and (max-width:429px) {
    .welcome-banner-section {
        padding: 10px;
    }

    .welcome-banner-section p {
        font-size: 20px;
        padding: 15px;
    }

    .register .btn-primary {
        font-size: 13px !important;
        padding: 5px 5px;
    }

    .register .group h2,
    .register .fee-includes h2,
    .register .tour h2,
    .register .tour h3,
    .register .fee-includes h3 {
        font-weight: bold;
        color: #2E3273;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .register .group img {
        width: 60px;
        height: 50px;
        margin: 5px;
    }
}

/* ====================
register form styles
==================== */
.rf-main-section {
    display: flex;
    flex-direction: column;
}

.rf-main-section .register-form,
.rf-main-section .banner {
    width: 75%;
}

.rf-main-section .banner img {
    border-radius: 10px;
}

.register-form p {
    line-height: 20px;
}

.register-form .btn-primary {
    padding: 10px 10px;
    margin-bottom: 0px;
    margin-top: auto;
    letter-spacing: normal;
    width: 240px;
    font-size: 14px;
}

.register-form h2 {
    font-size: 18px;
    padding: 20px 0px;
    font-weight: 500;
    border-bottom: 1px solid rgb(218, 216, 216);
}

.register-form .account {
    margin-left: 30px;
}

.register-form .form-control {
    line-height: 1.7em !important;
    border: 2px solid black !important;
}

.top-bar {
    background-color: #2E3273;
    color: white;
}

.top-bar .ptrl-section {
    margin-left: 180px;
}

.top-bar i {
    font-size: 17px;
    margin-top: 3px;
}

.top-bar a {
    color: white;
}

.top-bar p {
    font-size: 17px;
    color: white;
    margin-left: 8px;
}

@media only screen and (min-width:430px) and (max-width:576px) {

    .rf-main-section .register-form,
    .rf-main-section .banner {
        width: 100%;
    }

    .top-bar .ptrl-section {
        margin-left: 10px;
    }

    .form-control {
        padding: .075rem .35rem;
    }
}

@media only screen and (min-width:320px) and (max-width:429px) {

    .rf-main-section .register-form,
    .rf-main-section .banner {
        width: 100%;
    }

    .top-bar .ptrl-section {
        margin-left: 10px;
    }

    .form-control {
        padding: .075rem .35rem;
    }

    .top-bar i {
        font-size: 13px;
        margin-top: 6px;
    }

    .top-bar a {
        color: white;
    }

    .top-bar p {
        font-size: 13px;
        color: white;
        margin-left: 8px;
    }

    .register-form h2 {
        font-size: 14px;
    }

    .register-form .btn-primary {
        padding: 5px 5px;
        margin-bottom: 0px;
        margin-top: auto;
        letter-spacing: normal;
        width: 200px;
        font-size: 12px;
    }
}

/* ===================
contact styles
=================== */
.contact-section {
    overflow: hidden;
}

.contact-section .contact-form-head,
.contact-section .contact-form-head2 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90.08deg, #e23c65 1.81%, #2E3273 99.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section .contact-form-head3 {
    font-size: 20px;
    font-weight: bold;
    color: #e23c65;
}


.contact-section .contact-form-head2 {
    display: inline-block;
    position: relative;
}

.contact-form-head2::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #e23c65;
    position: absolute;
    top: 6px;
    left: 100%;
    margin-left: 10px;
}

.contact-section .sub-head {
    margin-top: 20px !important;
}

.contact-section .right-content {
    margin-top: 10px;
}

.contact-section .right-content i {
    color: #2E3273;
    padding-right: 15px;
    line-height: 1.7;
}

@media only screen and (min-width:320px) and (max-width:429px) {
    .contact-section .btn-primary {
        padding: 5px 10px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-section .contact-form-head,
    .contact-section .contact-form-head2 {
        font-size: 17px;
    }
}

/* ===============
abstract topics
=============== */
.content .info li {
    list-style-type: disc;
}

.content .info li::marker {
    color: red;
    font-size: 22px;
}

.stb-guidelines li,
.stb-guidelines p {
    font-size: 16px;
}

.stb-guidelines .head {
    font-size: 17px;
}

.stb-guidelines .content .sub-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #5a5959;
    margin-right: 5px;
}

/* ===============
abstract guidlines
=============== */
.content .info li {
    list-style-type: disc;
}

.content .info li::marker {
    color: red;
    font-size: 22px;
}

.stb-guidelines li,
.stb-guidelines p {
    font-size: 16px;
}

.stb-guidelines .head {
    font-size: 17px;
}

.stb-guidelines .content .sub-head {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #5a5959;
    margin-right: 5px;
}

@media only screen and (min-width:320px) and (max-width:429px) {
    .stb-guidelines .content {
        display: flex;
        flex-direction: column;
    }

    .stb-guidelines .content .sub-content {
        display: flex;
        flex-direction: column;
    }
}




/* =================new styles================ */

p {
    font-size: 14px;
    line-height: 23.8px;
}

.marquee-content {
    display: none;
}


@media only screen and (max-width:1024px) {
    .marquee-section {
        display: none;
    }

    .marquee-content {
        display: block;
        background-color: black;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;

    }

    .marquee-content img {
        width: 14px;
        height: 14px;
        margin-top: 4px;
        margin-right: 5px;
    }

    .marquee-content p {
        color: white;
    }
}

@media only screen and (max-width:768px) {
    .marquee-section {
        display: none;
    }

    .marquee-content {
        display: block;
        background-color: black;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;

    }

    .marquee-content img {
        width: 14px;
        height: 14px;
        margin-top: 4px;
        margin-right: 5px;
    }

    .marquee-content p {
        color: white;
    }

    #cap-img img {
        border: 1px #CCC solid;
    }
    .captcha-img{width:100%;}
    .reload-captcha:hover{color:#1d975c !important;}
}

.card-ss .arrow
{
	text-align:right;
}




