@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&family=Inter:opsz,wght@14..32,100..900&display=swap');

:root {
    --primary-color: #fff;
    --secondary-color: #000000;
    --accent: #ef622e;
    --text-color: #6d6c6c;
    --button-color: #3500fc;
    --light-blue: #622eef;
    --yellow-color: #fdb913;
    --pink-color: #ec398b;
    --dark-blue: #231769;

    --blue: #13426A;
    --blue-10: rgba(19, 66, 106, 0.1);
    --blue-20: rgba(19, 66, 106, 0.2);
    --blue-30: rgba(19, 66, 106, 0.3);
    --blue-40: rgba(19, 66, 106, 0.4);
    --blue-50: rgba(19, 66, 106, 0.5);
    --blue-60: rgba(19, 66, 106, 0.6);
    --blue-70: rgba(19, 66, 106, 0.7);
    --blue-80: rgba(19, 66, 106, 0.8);
    --blue-90: rgba(19, 66, 106, 0.9);

    --green-1: #E6FF75;
    --green-1-01: rgba(230, 255, 117, 0.01);
    --green-1-10: rgba(230, 255, 117, 0.1);
    --green-1-20: rgba(230, 255, 117, 0.2);
    --green-1-30: rgba(230, 255, 117, 0.3);
    --green-1-40: rgba(230, 255, 117, 0.4);
    --green-1-50: rgba(230, 255, 117, 0.5);
    --green-1-60: rgba(230, 255, 117, 0.6);
    --green-1-70: rgba(230, 255, 117, 0.7);
    --green-1-80: rgba(230, 255, 117, 0.8);
    --green-1-90: rgba(230, 255, 117, 0.9);
    --green-1-99: rgba(230, 255, 117, 0.99);
    --green-2: #7CB33D;
    --green-2-10: rgba(124, 179, 61, 0.1);
    --green-2-20: rgba(124, 179, 61, 0.2);
    --green-2-30: rgba(124, 179, 61, 0.3);
    --green-2-40: rgba(124, 179, 61, 0.4);
    --green-2-50: rgba(124, 179, 61, 0.5);
    --green-2-60: rgba(124, 179, 61, 0.6);
    --green-2-70: rgba(124, 179, 61, 0.7);
    --green-2-80: rgba(124, 179, 61, 0.8);
    --green-2-90: rgba(124, 179, 61, 0.9);
    --green-3: #2F6933;

    --white: #fff;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-90: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* generics start */
h1 {
    font-size: 70px;
    line-height: 86px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Raleway', sans-serif;
}

h2 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Raleway', sans-serif;
}

h3 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    color: var(--secondary-color);
}

h5 {
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

h6 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

a {color: var(--green-2);}
a:hover {color: var(--green-3);}

.size-3 {width: 10px; height: 10px;}
.size-4 {width: 12px; height: 12px;}
.size-5 {width: 14px; height: 14px;}
.size-6 {width: 16px; height: 16px;}
.size-7 {width: 18px; height: 18px;}
.size-8 {width: 20px; height: 20px;}
.size-9 {width: 22px; height: 22px;}
.size-10 {width: 24px; height: 24px;}
.size-11 {width: 26px; height: 26px;}
.size-12 {width: 28px; height: 28px;}
.size-13 {width: 30px; height: 30px;}
.size-14 {width: 32px; height: 32px;}

.gap-5 {gap: 5px;}
.gap-10 {gap: 10px;}
.gap-15 {gap: 15px;}
.gap-20 {gap: 20px;}
.gap-25 {gap: 25px;}
.gap-30 {gap: 30px;}
.gap-35 {gap: 35px;}
.gap-40 {gap: 40px;}
.gap-45 {gap: 45px;}
.gap-50 {gap: 50px;}

.max-w-700 {max-width: 700px;}
.max-w-50p {max-width: 50%;}
.max-w-60p {max-width: 60%;}
.w-60p {}

.text-8 {font-size: 8px !important;}
.text-10 {font-size: 10px !important;}
.text-11 {font-size: 11px !important;}
.text-12 {font-size: 12px !important;}
.text-14 {font-size: 14px !important;}
.text-16 {font-size: 16px !important;}
.text-18 {font-size: 18px !important;}
.text-20 {font-size: 20px !important;}
.text-22 {font-size: 22px !important;}
.text-24 {font-size: 24px !important;}
.text-26 {font-size: 26px !important;}
.text-28 {font-size: 28px !important;}
.text-30 {font-size: 30px !important;}
.text-40 {font-size: 40px !important;}

.text-body {color: var(--text-color) !important;}
.text-white-40 {color: var(--white-40);}
.text-white-50 {color: var(--white-50);}
.text-white-60 {color: var(--white-60);}
.text-white-70 {color: var(--white-70);}
.text-blue-10 {color: var(--blue-10);}
.text-blue-20 {color: var(--blue-20);}
.text-blue-30 {color: var(--blue-30);}
.text-blue-40 {color: var(--blue-40);}
.text-blue-50 {color: var(--blue-50);}
.text-blue-60 {color: var(--blue-60);}
.text-blue-70 {color: var(--blue-70);}
.text-blue-80 {color: var(--blue-80);}
.text-blue-90 {color: var(--blue-90);}
.text-blue {color: var(--blue) !important;}
.text-green-1 {color: var(--green-1) !important;}
.text-green-1-10 {color: var(--green-1-10) !important;}
.text-green-1-20 {color: var(--green-1-20) !important;}
.text-green-1-30 {color: var(--green-1-30) !important;}
.text-green-1-40 {color: var(--green-1-40) !important;}
.text-green-1-50 {color: var(--green-1-50) !important;}
.text-green-1-60 {color: var(--green-1-60) !important;}
.text-green-1-70 {color: var(--green-1-70) !important;}
.text-green-1-80 {color: var(--green-1-80) !important;}
.text-green-1-90 {color: var(--green-1-90) !important;}
.text-green-2 {color: var(--green-2) !important;}
.text-green-2-10 {color: var(--green-2-10) !important;}
.text-green-2-20 {color: var(--green-2-20) !important;}
.text-green-2-30 {color: var(--green-2-30) !important;}
.text-green-2-40 {color: var(--green-2-40) !important;}
.text-green-2-50 {color: var(--green-2-50) !important;}
.text-green-2-60 {color: var(--green-2-60) !important;}
.text-green-2-70 {color: var(--green-2-70) !important;}
.text-green-2-80 {color: var(--green-2-80) !important;}
.text-green-2-90 {color: var(--green-2-90) !important;}
.text-green-3 {color: var(--green-3) !important;}

.line-height-normal {line-height: normal !important;}
.line-height-1 {line-height: 1 !important;}
.line-height-1-2 {line-height: 1.2 !important;}
.line-height-1-4 {line-height: 1.4 !important;}

.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}

.flex-1 {flex: 1;}

[data-aos^="fade"][data-aos^="fade"] {
	opacity: 0;
	transition-property: all;
}

.divider {
    height: 0;
    border-bottom: 1px dashed var(--white-70);
}
.divider.blue {
    border-bottom: 1px dashed var(--blue-70);
}

.small-text {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    color: var(--green-2);
    display: block;
}

.generic-btn a,
.generic-btn button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    padding: 30px 41px 30px 40px;
    display: inline-block;
    text-decoration: none;
    background: var(--button-color);
    color: var(--primary-color);
    transition: .3s ease-in-out;
    cursor: pointer;
}
.generic-btn button {border: 0;}

.generic-btn a i,
.generic-btn button i {
    margin-left: 3px;
}

.generic-btn a:hover,
.generic-btn button:hover {
    transform: translateY(-8px);
    background: var(--light-blue);
}

.padding-top {
    padding-top: 170px;
}

.padding-bottom {
    padding-bottom: 170px;
}

.light-bg {
    background: #f9f9fb;
}

.grey-bg {
    background: #e9e7f0;
}

.generic-title2 span {
    letter-spacing: normal;
    color: var(--green-2);
    margin-bottom: 22px;
}

.generic-title2 h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.generic-title2 {
    margin-bottom: 88px;
}
.generic-title3 {
    margin-top: 88px;
}

/* generics end */
/* header style */
.container-fluid {
    padding: 0 15.3%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    top: 20px;
}

.dropdown-toggle::after {
    margin-left: 0;
}

.header-con .navbar-light .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.header-main-con .navbar-light .navbar-nav .nav-item.active,
.header-main-con .navbar-light .navbar-nav .active>.nav-link {
    color: var(--accent);
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    box-shadow: 0 0 2px #fff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
    background: var(--yellow-color);
}

.index3-header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover,
.header-main-con.index3-header .dropdown-item.active,
.header-main-con.index3-header .dropdown-item:active {
    background: var(--green-2);
}

.index3-header .navbar-light .navbar-nav .nav-link.active {
    color: var(--green-2);
}

.header-main-con {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 4;
    padding: 20px 0 0;
}


.header-main-con .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-2);
}

.header-main-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--green-3);
}
.index3-header .navbar-light .navbar-nav .nav-link:hover {
    /*color: var(--green-2);*/
}

.header-main-con .dropdown-item.active,
.header-main-con .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--yellow-color);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--yellow-color);
}

.header-main-con .navbar-nav {
    gap: 41px;
    margin-right: 262px;
    text-transform: uppercase;
}

.lets-talk-btn a,
.lets-talk-btn a i {
    color: var(--primary-color);
}

.lets-talk-btn a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--green-2);
    background-color: var(--green-2);
    transition: all 0.35s ease-in-out;
    display: block;
    white-space: nowrap;
    border-radius: 25px;
}

.lets-talk-btn a i {
    margin-left: 2px;
}

.lets-talk-btn a:hover i {
    color: var(--primary-color);
}

.lets-talk-btn a:hover {
    color: var(--blue);
    border-color: var(--blue);
    background-color: var(--green-1);
}

.nav-btns {
    position: absolute;
    right: 149px;
    top: 50%;
    gap: 10px;
    transform: translateY(-50%);
}

.nav-btns a {
    padding: 12px 15px;
    color: var(--green-2);
    background: transparent;
    border: 1px solid var(--green-2);
}

.nav-btns a i {
    font-size: 16px;
    line-height: 20px;
}

.nav-btns a:hover i {
    color: var(--button-color);
}

.nav-btns a:hover {
    background: var(--primary-color);
    color: var(--button-color);
}

.shopping-cart {
    position: relative;
}

.nav-btns .shopping-cart::after {
    content: "02";
    font-size: 10px;
    background: var(--yellow-color);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: absolute;
    right: -5px;
    top: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
}

/* header styling end here */
/* banner styling start here */
.banner-main-section {
    background: url(../images/banner-bg.jpg) no-repeat center;
    background-size: cover;
    height: 1000px;
    display: flex;
    align-items: center;
}

.banner-outer-con {
    position: relative;
    z-index: 3;
}

.banner-main-section::after {
    content: "";
    background: var(--button-color);
    opacity: .7;
    width: 100%;
    height: 1000px;
    position: absolute;
    left: 0;
    top: 0;
}

.banner-inner-section {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 0;
    grid-template-columns: 50% 50%;
}

.banner-inner-section h1 span {
    font-family: 'Inter', sans-serif;
}

.banner-inner-section h1 {
    margin-bottom: 3px;
}

.banner-left-section>span,
.banner-right-section span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: var(--yellow-color);
    display: block;
    margin-bottom: 42px;
}

.banner-left-section .generic-btn a {
    padding: 30px 37px;
    color: var(--secondary-color);
    background: var(--primary-color);
    transition: .3s ease-in-out;
}

.banner-left-section .generic-btn a:hover {
    background: var(--button-color);
    color: var(--primary-color);
}

.banner-left-section .generic-btn {
    margin-bottom: 101px;
}

.banner-right-section span {
    text-align: end;
    margin: 0 125px 0 0;
}

.banner-left-images {
    gap: 30px;
}

.social-links a i {
    font-size: 16px;
    color: var(--primary-color);
}

.social-links a {
    text-decoration: none;
    transition: .3s ease-in-out;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links {
    position: absolute;
    right: 0;
    bottom: -7px;
    gap: 15px;
}

.banner-right-section figure {
    margin: 20px 0 11px -13px;
}

.banner-main-section .owl-carousel .owl-nav button.owl-prev span,
.banner-main-section .owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.banner-main-section .owl-carousel .owl-nav button.owl-prev,
.banner-main-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border-radius: 100%;
    background: rgb(0, 0, 0, .2);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.banner-main-section .owl-carousel .owl-nav button.owl-prev:hover,
.banner-main-section .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--button-color);
}

.banner-main-section .owl-carousel .owl-nav button.owl-prev {
    left: -242px;
}

.banner-main-section .owl-carousel .owl-nav button.owl-next {
    right: -254px;
}

.banner-main-section .owl-carousel .owl-nav button:focus,
.banner-main-section .owl-carousel .owl-dots button:focus {
    outline: none;
}

.banner-main-section .owl-carousel .owl-dots button {
    width: 17px;
    height: 17px;
    border: 1px solid var(--primary-color);
    background: transparent;
    border-radius: 100%;
    margin: 0 6px;
}

.banner-main-section .owl-carousel .owl-dots button.active {
    background: var(--primary-color);
    box-shadow: inset 3px 3px 5px 0 rgba(53, 0, 252, 0.6);
}

.banner-main-section .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120px;
}

/* banner styling end here */
/* about section styling start here */
.about-inner-con {
    display: grid;
    gap: 0;
    margin-bottom: 100px;
    grid-template-columns: 58% 42%;
}

.about-right-con,
.attendents,
.attendees {
    display: flex;
}

.numbers span,
.numbers small {
    display: block;
}

.investment,
.attendees {
    background: url(../images/dash-bg-img.png) no-repeat center;
    width: 272px;
    height: 130px;
    align-items: center;
    justify-content: center;
}

.about-right-con {
    margin: 152px 0px 0 -72px;
}

.about-left-con p {
    margin-bottom: 31px;
    padding-right: 180px;
}

.about-left-con p:nth-child(3) {
    margin-bottom: 41px;
}

.generic-title .small-text {
    margin-bottom: 25px;
}

.generic-title {
    margin-bottom: 28px;
}

.investment span {
    font-size: 40px;
    line-height: 30px;
    font-weight: 700;
    color: var(--button-color);
    margin-left: -5px;
    margin-top: -4px;
}

.investment small {
    font-size: 16px;
    line-height: 20px;
    margin-left: 15px;
    margin-top: -4px;
}

.co-image-box figure {
    width: 245px;
    height: 314px;
    border-radius: 10px;
    overflow: hidden;
}

.co-image-box {
    height: 364px;
}

.co-image-box,
.ceo-image-box {
    width: 285px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ceo-image-box {
    height: 396px;
    margin-left: -30px;
}

.status {
    font-size: 14px;
    line-height: 16px;
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 12px 34px;
    border-radius: 25px;
    box-shadow: 5px 5px 30px 0 rgb(204, 204, 204, 30%);
    display: inline-block;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

.co-image-box,
.ceo-image-box {
    position: relative;
}

.status span {
    color: var(--button-color);
}

.attendents figure:first-child {
    margin-left: 0;
}

.attendents figure {
    margin-left: -15px;
}

.numbers span {
    color: var(--button-color);
}

.numbers {
    font-size: 18px;
    line-height: 22px;
    margin-left: 10px;
}

.ceo-image-box figure {
    width: 245px;
    height: 346px;
    overflow: hidden;
    border-radius: 10px;
}

.attendents {
    margin-left: -38px;
}

.attendents,
.numbers {
    margin-top: -35px;
}

.about-left-con {
    position: relative;
}

.about-left-con::before {
    content: "";
    background: url(../images/shape.png) no-repeat center;
    width: 300px;
    height: 300px;
    position: absolute;
    left: -210px;
    bottom: -70px;
}

/* counter section styling start here */
.counter-sec ul {
    display: grid;
    gap: 0;
    grid-template-columns: 25% 25% 25% 25%;
}

.counter-sec ul li .count,
.counter-sec ul li .plus {
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.client-status {
    font-size: 18px;
    line-height: 24px;
}

.counter-sec ul li {
    padding: 0 18px;
    border-left: 5px solid #cccccc;
}

.counter-sec ul li::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(37, 98, 255, 1) 0%, rgba(41, 137, 216, 0.5) 50%, rgba(32, 124, 202, 0.49) 51%, rgba(37, 98, 255, 0) 100%);
}

/* counter section styling end here */
/* about section styling end here */
/* event section styling start here */
.event-inner-section {
    display: grid;
    gap: 60px;
    grid-template-columns: 54% 41%;
}

/* event timeline styling start here */
/* event tabs styling start here */
.event-right-con .nav-link span {
    font-size: 20px;
    line-height: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.event-right-con .nav-link:hover span {
    color: var(--button-color);
}

.event-right-con .nav-link.active span {
    color: var(--button-color);
}

.event-right-con .nav-link small {
    font-size: 14px;
    line-height: 16px;
    color: var(--text-color);
}

.event-right-con .nav-link,
.event-right-con .nav-tabs {
    border: none;
}

.event-right-con .nav-item {
    border-right: 1px solid #ccc;
}

.event-right-con .nav-item:last-child {
    border: none;
}

.event-right-con .nav-tabs {
    width: 445px;
    margin-bottom: 40px;
    padding: 20px 10px 17px;
    border-radius: 10px;
    background: var(--primary-color);
}

.event-right-con .nav-link {
    padding: 0 25px 0 25px;
    position: relative;
}

.event-right-con .nav-link.active::after {
    content: "";
    width: 63%;
    height: 2px;
    background: var(--light-blue);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.event-left-con p {
    margin-bottom: 44px;
    padding-right: 120px;
}

.event-left-con .generic-btn a {
    padding: 30px 61px;
}

.event-left-con {
    position: relative;
}

.event-left-con::before,
.conference-main-section .generic-title::after,
.blog-main-section .generic-title::before {
    content: "";
    background: url(../images/triangle-shape.png) no-repeat center;
    width: 80px;
    height: 81px;
    position: absolute;
    right: 0px;
    top: -74px;
}

.event-left-con::after {
    content: "";
    background: url(../images/shape2.png) no-repeat center;
    width: 320px;
    height: 298px;
    position: absolute;
    bottom: -60px;
    left: -260px;
}

/* event tabs styling end here */
.education {
    width: min(500px, 95vw);
}

.education__content {
    position: relative;
    padding: 16px 46px 16px 70px;
}

.education__content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
    margin-block-start: 0.5rem;
    margin-block-end: 0;
}

.education__content p a {
    color: var(--button-color);
}

.education__content .year {
    position: absolute;
    content: var(--year);
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--button-color);
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 1px var(--button-color);
    border: 1px solid var(--button-color);
    left: 0px;
    top: 16px;
    z-index: 2;
}

.education__content:not(:last-child):before {
    position: absolute;
    content: "";
    width: 2px;
    background-color: var(--light-blue);
    left: calc(1rem - -3px);
    top: 50px;
    bottom: -1rem;
    z-index: 1;
}

.education__content small {
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px;
    background: rgb(98, 46, 239, .2);
    color: var(--button-color);
    padding: 5px 15px;
    margin-bottom: 16px;
    display: inline-block;
}

.education__content h6 {
    margin-bottom: 14px;
}

/* event timeline styling end here */
/* event section styling end here */
/* speaker section styling start here */
.speakers-main-section {
    background: url(../images/speakers-bg-img.jpg) no-repeat center;
    background-size: cover;
    height: 100%;
}

.speaker-box figure {
    width: 350px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.speaker-box figure::before {
    content: "";
    background: radial-gradient(ellipse at center, rgba(53, 0, 252, 0) 0%, rgba(53, 0, 252, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    transition: .4s ease-in-out;
}

.speaker-box:hover figure::before {
    display: block;
}

.speakers-main-section .generic-title span,
.speakers-main-section .generic-title h2,
.speakers-main-section .generic-title p {
    color: var(--primary-color);
}

.speakers-main-section .generic-title h2 {
    margin-bottom: 18px;
}

.speakers-main-section .generic-title {
    margin-bottom: 95px;
}

.speaker-status button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.speaker-status button:focus {
    outline: none;
}

.speaker-status button:hover {
    cursor: pointer;
    color: var(--button-color);
}

.speaker-status {
    border-radius: 10px;
    padding: 13px 20px;
    background: var(--primary-color);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
}

.speaker-box a i {
    color: var(--button-color);
}

.speaker-box a {
    width: 44px;
    height: 44px;
    padding: 7px 13px;
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    border-radius: 100%;
    text-decoration: none;
    background: var(--primary-color);
}

.speaker-box {
    display: inline-block;
    transition: .4s ease-in-out;
}

.speaker-box .staus-con {
    line-height: 19px;
    margin-top: 8px;
    display: none;
}

.speaker-status span {
    font-size: 14px;
    line-height: 16px;
}

.speakers-main-section .container-fluid {
    padding: 0 10%;
}

.speakers-inner-sec {
    display: grid;
    gap: 40px;
    grid-template-columns: 23% 23% 23% 23%;
    max-width: 1523px;
    margin: 0 auto 100px;
}

.speaker-box:hover a {
    display: block;
    z-index: 2;
}

.speaker-box:hover {
    box-shadow: 0 0 0 1px var(--primary-color), inset 0 0 0 var(--button-color);
    border-radius: 10px;
    scale: 1.01;
    overflow: hidden;
}

.speakers-main-section .generic-btn a {
    padding: 30px 71px;
    color: var(--secondary-color);
    background: var(--primary-color);
}

.speakers-main-section .generic-btn a i {
    margin-left: 5px;
}

.speakers-main-section .generic-btn a:hover {
    color: var(--primary-color);
    background: var(--button-color);
}

/* speaker section styling end here */
/* ticket section styling start here */
.ticket-inner-section {
    display: grid;
    gap: 51px;
    position: relative;
    grid-template-columns: 60% 35%;
}

.ticket-inner-section::before {
    content: "";
    background: url(../images/triangle-shape.png) no-repeat center;
    width: 80px;
    height: 81px;
    position: absolute;
    left: -190px;
    top: -60px;
}

.ticket-main-section {
    background: #f9f9fb;
}

.ticket-details {
    width: 350px;
    padding: 45px;
    border-radius: 10px;
    background: var(--primary-color);
}

.ticket-details .generic-btn a {
    padding: 20px 47px;
    background: transparent;
    color: var(--button-color);
    border: 1px solid var(--button-color);
}

.ticket-details .generic-btn a:hover {
    background: var(--button-color);
    color: var(--primary-color);
}

.ticket-details p {
    font-size: 18px;
    line-height: 20px;
}

.ticket-details>span {
    font-size: 16px;
    line-height: 18px;
}

.ticket-details .price {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: var(--button-color);
    padding-left: 3px;
    margin-bottom: 0;
}
.ticket-details .price.small {
    font-size: 20px;
}
.ticket-details .check-bullet {
    display: block;
    position: relative;
    /*padding-left: 23px;*/
    font-size: 12px;
    line-height: 1.2;
}
.ticket-details .check-bullet:before {
    display: none;
    content: "\f058";
    font-family: "Font Awesome 5 free";
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.ticket-details .price small {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    top: -18px;
    left: -3px;
}
.ticket-details .price.small small {
    top: -3px;
    font-size: 18px;
}

.ticket-details ul {
    margin-bottom: 34px;
}

.ticket-details ul li {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    padding-left: 27px;
}

.ticket-details ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--button-color);
}

.ticket-details h3 {
    letter-spacing: -1px;
    margin-bottom: 0;
}

.modal-content {border-radius: 15px;}

.modal-body .ticket-details {
	width: auto;
	padding: 0;
	display: flex;
	flex-flow: column;
	gap: 20px;
}
.modal-body .ticket-details .price {
    font-size: 52px;
    line-height: 1;
    color: var(--green-2);
}
.modal-body .ticket-details .btn {
    display: flex;
    flex-flow: column;
    gap: 10px;
    border: 2px solid var(--green-2);
    background-color: var(--green-2-10);
    color: var(--slate-600);
    border-radius: 30px;
    padding: 15px;
    transition: .3s ease-in-out;
    transform: scale(0.95);
}
.modal-body .ticket-details .btn * {

}
.modal-body .ticket-details .btn:hover {
    transform: scale(1);
    background-color: var(--green-2);
}
.modal-body .ticket-details .btn:hover * {
    color: var(--primary-color);
}
.modal-body .ticket-details .btn:focus {
    box-shadow: 0 0 0 3px var(--green-2-20);
}

.ticket-left-section .generic-title h2 {
    margin-bottom: 28px;
}

.ticket-left-section .generic-title p {
    margin-bottom: 36px;
}

.ticket-left-section .generic-btn a {
    padding: 30px 57px;
}

/* swiper section styling start here */
.mySwiper {
    width: 350px;
    height: 484px;
}

.swiper-cards .swiper-slide,
.swiper-3d .swiper-slide-shadow {
    background-color: #fff;
    box-shadow: 5px 0px 12px rgb(204 204 204 / 35%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    opacity: 0;
}

.swiper-button-prev {
    background: var(--button-color) url(../images/arrow-left.png) no-repeat center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    left: -20px;
}

.swiper-button-next {
    background: var(--button-color) url(../images/arrow-right.png) no-repeat center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    right: -20px;
}

/* swiper section styling end here */
/* ticket section styling end here */
/* conference section styling start here */
.conference-main-section .container-fluid {
    padding: 0 1%;
}

.conference-main-section .generic-title {
    margin-bottom: 88px;
    position: relative;
}

.conference-main-section .generic-title::after {
    right: 170px;
    top: unset;
    bottom: 16px;
}

.conference-box {
    width: fit-content;
    transition: .4s ease-in-out;
    overflow: hidden;
}

.conference-box:hover .conference-txt {
    bottom: 0;
}

.conference-box::after {
    content: "";
    background: radial-gradient(ellipse at center, rgba(53, 0, 252, 0) 0%, rgba(53, 0, 252, 1) 150%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    transition: .4s ease-in-out;
}

.conference-box:hover::after {
    display: block;
}

.conference-txt {
    padding: 16px 30px 13px 29px;
    background: var(--button-color);
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 100%;
    transition: .3s ease-in-out;
    z-index: 2;
}

.conference-txt small,
.conference-txt span {
    color: var(--primary-color);
}

.conference-txt small {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
}

.conference-txt span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.conference-inner-con {
    display: grid;
    gap: 30px;
    margin-bottom: 100px;
    grid-template-columns: auto auto auto auto;
    max-width: 1865px;
}

.conference-main-section .generic-btn a {
    padding: 30px 57px 30px 58px;
}

/* conference section styling end here */
/* testimonial section styling start here */
.testimonial-main-section {
    background: url(../images/testimonial-section-bg-img.jpg) no-repeat center;
    height: 880px;
    position: relative;
    background-size: cover;
}

.testimonial-main-section::after {
    content: "";
    background: var(--button-color);
    opacity: .7;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial-inner-con {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 148px;
    grid-template-columns: 40% 47%;
    align-items: center;
}

.testimonial-right-con .generic-title span,
.testimonial-right-con .generic-title h2,
.testimonial-right-con p,
.testimonial-right-con small,
.testimonial-right-con span {
    color: var(--primary-color);
}

.testimonial-right-con p {
    margin-bottom: 35px;
    line-height: 36px;
}

.testimonial-right-con .generic-title h2 {
    position: relative;
}

.testimonial-right-con .generic-title h2::after {
    content: "";
    background: var(--primary-color);
    width: 95px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -40px;
}

.reviewer-con {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewer-con figure {
    border-radius: 100%;
    overflow: hidden;
}

.testimonial-img-outer-con {
    width: 444px;
    height: 578px;
    border: 1px solid rgb(255, 255, 255, .7);
    border-radius: 10px;
    background: transparent;
}

.testimonial-img-outer-con figure {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1;
    position: relative;
    top: 20px;
    left: 20px;
}

.testimonial-right-con .generic-title {
    margin-bottom: 79px;
}

.reviewer-details small {
    font-size: 13px;
    line-height: 14px;
}

.reviewer-details span {
    margin-bottom: 5px;
}

.testimonial-main-section .owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 40px;
}

.testimonial-main-section .owl-carousel .owl-nav button {
    margin: 0 5px;
    height: 52px;
    width: 52px;
    border-radius: 10px;
}

.testimonial-main-section .owl-carousel .owl-nav button:focus {
    outline: none;
}

.testimonial-main-section .owl-carousel .owl-nav button.owl-prev span,
.testimonial-main-section .owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.testimonial-main-section .owl-dots {
    display: none;
}

.testimonial-main-section .owl-carousel .owl-nav button.owl-prev i,
.testimonial-main-section .owl-carousel .owl-nav button.owl-next i {
    color: var(--primary-color);
}

.testimonial-main-section .owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
}

.testimonial-main-section .owl-carousel .owl-nav button:hover i {
    color: var(--secondary-color);
}

/* testimonial section styling end here */
/* sponsors section styling start here */
.sponsors-main-section {
    background: url(../images/sponsors-logo-bg.jpg) no-repeat center;
    background-size: cover;
    height: 261px;
    padding: 100px 0;
}

.sponsors-companies ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 18% 20% 20% 20% 11%;
}

.sponsors-companies ul li figure img {
    opacity: .6;
}

/* sponsors section styling end here */
/* blog section styling start here*/
.blog-img figure {
    width: 350px;
    height: 274px;
    overflow: hidden;
    border-radius: 10px;
}

.blog-img span {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 14px;
    line-height: 16px;
    padding: 4px 12px;
    color: var(--primary-color);
    background: var(--button-color);
}

.blog-img,
.blog-box {
    display: inline-block;
    width: 350px;
}

.blog-text {
    position: absolute;
    left: 0;
    bottom: -82px;
    background: var(--primary-color);
    padding: 25px 20px 25px 29px;
    width: 92%;
    box-shadow: 5px 5px 30px rgb(204 204 204 / 30%);
}

.blog-text h6::before {
    content: "";
    background: var(--light-blue);
    height: 88%;
    width: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog-text h6 {
    margin-bottom: 0;
    padding-left: 22px;
}

.blog-text h6 a {
    text-decoration: none;
    display: inline-block;
    color: var(--secondary-color);
}

.blog-text h6 a:hover {
    color: var(--button-color);
}

.index3-blog-section .blog-text h6 a:hover {
    color: var(--green-2);
}

.blog-main-section .generic-title {
    position: relative;
    margin-bottom: 86px;
}

.blog-main-section .generic-title::before {
    left: -190px;
    top: -30px;
    right: unset;
}

.blog-text span {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 12px;
}

.blogs-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.blog-main-section {
    padding-bottom: 250px;
}

/* blog section styling end here*/
/* registration section styling start here */
.registration-main-section .registration-inner-con {
    background: url(../images/registration-bg.jpg) no-repeat center;
    background-size: cover;
    height: 532px;
    padding: 95px 170px 98px 93px;
    position: relative;
    border-radius: 10px;
    z-index: 2;
}

.registration-main-section .registration-inner-con::after {
    content: "";
    background: var(--button-color);
    opacity: .7;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.registration-main-section .generic-title {
    position: relative;
    z-index: 2;
}

.registration-main-section .generic-title span,
.registration-main-section .generic-title h2 {
    color: var(--primary-color);
}

.registration-main-section .generic-title h2 {
    margin-bottom: 42px;
}

.registration-main-section .generic-title .generic-btn a {
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 30px 37px;
}

.registration-main-section .generic-title .generic-btn a:hover {
    color: var(--primary-color);
    background: var(--button-color);
}

/* registration section styling end here */
/* footer section styling start here */
.footer-main-section {
    padding-top: 373px;
    padding-bottom: 77px;
    margin-top: -270px;
    background: var(--primary-color);
}

.footer-call-btn {
    gap: 22px;
}

a.footer-call-btn {
    text-decoration: none;
}

.footer-call-btn i {
    font-size: 30px;
    color: var(--light-blue);
}

.footer-call-btn small {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
    color: var(--light-blue);
}

.footer-call-btn span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

a.footer-call-btn:hover i,
a.footer-call-btn:hover p span,
a.footer-call-btn:hover p small {
    color: var(--green-3);
}

.footer-box>p {
    font-size: 16px;
    line-height: 25px;
    padding-left: 7px;
    margin-bottom: 32px;
}

.footer-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 23% 14.4% 20%;
}

.footer-box ul li small {
    font-size: 14px;
    line-height: 14px;
    color: var(--light-blue);
}

.footer-box ul li span {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 13px;
}

.footer-box.footer-navigation ul li a {
    font-size: 16px;
    line-height: 18px;
    color: var(--text-color);
}

.footer-box.footer-contact ul li p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.footer-box.footer-contact ul li span {
    font-weight: 700;
    color: var(--light-blue);
}

.footer-box.footer-contact ul li a {
    font-size: 16px;
    color: var(--text-color);
}

.footer-social-links ul li a {
    width: 46px;
    height: 46px;
    background: rgb(98, 46, 239, .1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.footer-social-links ul li a i {
    color: var(--button-color);
}

.footer-social-links ul li a:hover {
    transform: translateY(-6px);
    background: var(--button-color);
}

.footer-social-links ul li a:hover i {
    color: var(--primary-color);
}

.footer-social-links ul {
    display: flex;
    gap: 15px;
}

.footer-box.footer-contact .footer-social-links ul li {
    margin-bottom: 0;
}

.footer-box>a {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-box a figure {
    margin-bottom: 0;
}

.footer-box h6 {
    margin-bottom: 23px;
}

.footer-box ul li {
    margin-bottom: 25px;
}

.footer-navigation ul li {
    margin-bottom: 4px;
    padding-left: 20px;
}

.footer-navigation h6 {
    margin-bottom: 16px;
}

.footer-navigation ul li::before {
    content: "";
    background: var(--light-blue);
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-contact ul li span {
    margin-bottom: 9px;
}

.footer-box.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact .mail-span {
    margin-bottom: 5px;
}

.footer-box.footer-contact ul li:nth-child(2) {
    margin-bottom: 22px;
}

.footer-schedule,
.footer-contact,
.footer-navigation {
    margin-top: -6px;
}

.footer-box ul li a:hover {
    color: var(--light-blue);
}

.copyright p {
    font-size: 16px;
    line-height: 18px;
}

.copyright-content {
    padding: 30px 20px;
    border-top: 1px solid rgb(204, 204, 204);
}

/* footer section styling end here */
/* about page styling start here */
/* about page sub banner styling start here */
.sub-banner-main-section {
    background: url(../images/sub-banner-bg.jpg) no-repeat center;
    background-size: cover;
    height: 602px;
    position: relative;
    align-items: center;
    display: flex;
}

.sub-banner-main-section::after {
    content: "";
    background: var(--button-color);
    opacity: .6;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-banner-inner-con {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 56px;
}

.breadcrumb {
    background: transparent;
    border: 1px solid #cccccc;
    padding: 3px 32px 5px 33px;
    border-radius: 0;
}

.breadcrumb li a,
.breadcrumb-item.active {
    font-size: 16px;
    line-height: 18px;
    color: var(--primary-color);
}

.breadcrumb li a:hover,
.breadcrumb li a.active {
    text-decoration: none;
    color: var(--yellow-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--yellow-color);
    content: "~";
    padding: 0 4px 0 0;
}

.breadcrumb-item.active {
    color: var(--yellow-color);
}

.sub-banner-inner-con p {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.sub-banner-inner-con h1 {
    margin-bottom: 16px;
}

/* about page sub banner styling end here */
/* about con styling start here */
.about-another-con .about-left-con::before {
    display: none;
}

/* about con styling end here */
/* faq section start here  */
.faq-main-section .generic-title h2 {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 1px;
}

.faq-main-section .generic-title .small-text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.faq-main-section .generic-title {
    margin-bottom: 83px;
}

.faq-inner-section .btn-link {
    width: 100%;
    text-align: left;
    padding: 40px 25px 40px 39px;
    transition: .1s ease-in-out;
}

.faq-inner-section .card-header h5 .btn {
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.faq-inner-section .card-header h5 .btn:hover {
    text-decoration: none;
}

.faq-inner-section .card-header {
    position: relative;
    border-radius: 0;
    border: none;
    background: var(--primary-color);
    padding: 0;
    box-shadow: 0 0 100px 0 rgb(0 0 0 / 5%);
}

.faq-inner-section .card-header:hover {
    background: var(--button-color);
}

.faq-inner-section .card-header:hover h5 .btn {
    color: var(--primary-color);
}

.faq-inner-section .card-header h5 .btn::after,
.faq-inner-section .card-header h5 .btn.collapsed::after {
    font-family: "Font Awesome 5 free";
    position: absolute;
    font-weight: 600;
    font-size: 16px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 100%;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.faq-inner-section .card-header h5 .btn.collapsed::after {
    content: "\f107";
}

.faq-inner-section .card-header h5 .btn::after {
    content: "\f105";
}

.faq-inner-section .card-header:hover h5 .btn::after,
.faq-inner-section .card-header:hover h5 .btn.collapsed::after {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-inner-section .card-header h5 .btn:focus {
    text-decoration: none;
    background: var(--button-color);
    color: var(--primary-color);
}

.faq-inner-section .card-header h5 .btn:focus::after,
.faq-inner-section .card-header h5 .btn.collapsed:focus::after {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-inner-section .card {
    border: none;
    margin-bottom: 28px;
    background: none;
}

.faq-inner-section .card:last-child {
    margin-bottom: 0;
}

.faq-inner-section .card-body {
    font-size: 18px;
    line-height: 30px;
    background: transparent;
    padding: 40px 40px 11px 41px;
}

/* faq section end here  */
/* about page styling start here */
/* contact page styling start here */
.contact-banner {
    background: url(../images/contact-banner-img.jpg) no-repeat center;
    background-size: cover;
    height: 602px;
}

.contact-box {
    width: 350px;
    padding: 58px 58px;
    text-align: center;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-box figure {
    background: #ccc;
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 22px;
}

.contact-box h6 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: 'Raleway', sans-serif;
}

.contact-box>a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-decoration: none;
    color: var(--secondary-color);
    font-family: 'Raleway', sans-serif;
}

.conatct-information-section .generic-title {
    margin-bottom: 76px;
}

.contact-info-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.contact-box ul li a {
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    color: var(--text-color);
}

.contact-box:hover figure {
    background: var(--button-color);
}

.contact-box:hover {
    border-color: var(--button-color);
}

.contact-box:hover h6,
.contact-box:hover>a {
    color: var(--button-color);
}

.contact-box ul li a:hover {
    color: var(--button-color);
}

.contact-box ul {
    margin-bottom: 20px;
}

/* contact form section styling start here */
.contact-form-section {
    padding-bottom: 425px;
}

.contact-form-section form ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 40.1% 40.1%;
    justify-content: center;
    margin-bottom: 21px;
}

.contact-form-section form ul li input,
.contact-form-section form ul li textarea {
    width: 100%;
    border: none;
    font-size: 16px;
    line-height: 20px;
    padding: 30px 16px;
    caret-color: var(--text-color);
    background: var(--primary-color);
    box-shadow: 5px 0 30px rgb(204 204 204 / 20%);
}

.contact-form-section form ul li textarea {
    padding: 20px 16px;
}

.contact-form-section form ul li input::placeholder,
.contact-form-section form ul li textarea::placeholder {
    font-size: 16px;
    line-height: 20px;
}

.contact-form-section form ul li:last-child {
    grid-column: 1/-1;
}

.contact-form-section form .generic-btn button:focus {
    outline: none;
}

.contact-form-section form ul li input:focus,
.contact-form-section form ul li textarea:focus,
.contact-form-section form ul li input:focus-visible,
.contact-form-section form ul li textarea:focus-visible {
    outline-color: var(--yellow-color);
}

.contact-form-section form ul li textarea {
    min-height: 200px;
    resize: none;
}

.contact-form-section form ul li span.error {
    color: red;
    font-size: 16px;
    line-height: 24px;
}
.contact-form-section form ul li input::placeholder{
    color: var(--text-color);
}
.contact-form-section form .submit-btn {
    text-align: center;
}

.contact-form-section form .generic-btn button {
    border: none;
    width: 349px;
    padding: 28px 20px;
    border: 1px solid var(--button-color);
}

.contact-form-section form .generic-btn button:hover {
    cursor: pointer;
    background: transparent;
    color: var(--button-color);
}

.contact-form-section .generic-title .small-text {
    margin-bottom: 16px;
}

.contact-form-section .generic-title {
    margin-bottom: 61px;
}

.responsive-map iframe {
    width: 100%;
    height: 514px;
    border: 12px solid var(--primary-color);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    margin-top: -258px;
}

.responsive-map {
    padding-bottom: 45px;
}

/* contact form section styling end here */
/* contact footer section styling start here */
.contact-footer-section {
    padding-top: 100px;
    padding-bottom: 77px;
    margin-top: 0;
    background: var(--primary-color);
}

/* contact footer section styling end here */
/* contact page styling end here */
/* event page styling start here */
.event-banner-section {
    background: url(../images/event-banner-img.jpg) no-repeat center;
    background-size: cover;
    height: 602px;
}

/* event page styling end here */
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: url(../images/sub-banner-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.error-section::after {
    content: "";
    background: var(--button-color);
    opacity: .6;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.error-con {
    position: relative;
    z-index: 2;
    padding: 0 100px;
}

.error-con h2 {
    font-size: 170px;
    line-height: 165px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.error-con p {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.error-con .generic-btn a {
    padding: 30px 33px;
    color: var(--button-color);
    background: var(--primary-color);
}

/* 404 page styling end here */
/* coming soon page styling start here */
.coming-soon-con {
    position: relative;
    z-index: 2;
}

.coming-soon-con h2 {
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.coming-soon-social-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coming-soon-social-links ul li a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    color: var(--button-color);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease-in-out;
    border: 1px solid var(--primary-color);
}

.coming-soon-social-links ul li a i {
    color: var(--button-color);
}

.coming-soon-social-links ul li a:hover {
    transform: translateY(-6px);
    background: transparent;
}

.coming-soon-social-links ul li a:hover i {
    color: var(--primary-color);
}

/* coming soon page styling end here */

.two-girls-img {
    position: absolute;
    right: 10px;
    bottom: 0;
}

.green-triange-first-img {
    position: absolute;
    left: 47px;
    top: 0;
}

.man-right-img {
    position: absolute;
    left: -55px;
    bottom: 0;
}

.line-second-img {
    position: absolute;
    left: 156px;
    top: 38px;
    transform: rotate(270deg);
}

.green-triange-second-img {
    position: absolute;
    right: 15px;
    top: 41%;
    transform: rotate(45deg);
}

.line-shape-img {
    position: absolute;
    left: 80px;
    bottom: 102px;
}

.learning-conference-sec {
    background: url(../images/learning-conference-bg-img.jpg) no-repeat center;
    background-size: cover;
    height: 100%;
    padding-bottom: 190px;
}

.learning-conference-heading {
    display: grid;
    gap: 125px;
    grid-template-columns: 49% 39%;
    margin-bottom: 90px;
}

.learning-conference-heading h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.learning-conference-heading p {
    font-size: 18px;
    margin-top: 4px;
}

.video-inner-con .video-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.learning-conference-video-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 5px solid var(--primary-color);
    display: inline-flex;
}

.learning-conference-video-box>figure::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: inset 0px 0px 0 250px rgb(0 0 0 / 25%);
}

#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}

/*#light {
    display: none;
    position: absolute;
    top: 62%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    z-index: 1002;
    overflow: visible;
    transform: translate(-50%, -50%);
}*/
#light {
	display: none;
	position: fixed;
	top: 5%;
	left: 5%;
	width: 90vw;
	height: 90vh;
	z-index: 1002;
	overflow: visible;
}

#boxclose {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 23px;
    border-radius: 100%;
    color: var(--button-color);
    background: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: -7px;
    top: -10px;
    z-index: 1002;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxclose:before {
    content: "×";
}

#fade:hover~#boxclose {
    display: none;
}

.learning-conference-sec .owl-nav {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 20px;
}

.learning-conference-sec .owl-carousel .owl-nav button.owl-prev,
.learning-conference-sec .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border-radius: 100%;
    background: var(--accent);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.learning-conference-sec .owl-carousel .owl-nav button.owl-prev:focus,
.learning-conference-sec .owl-carousel .owl-nav button.owl-next:focus {
    outline: none;
}

.learning-conference-sec .owl-carousel .owl-nav button.owl-prev:hover,
.learning-conference-sec .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--button-color);
}

.learning-conference-sec .owl-carousel .owl-dots {
    display: none;
}

.learning-conference-sec .owl-carousel {
    margin-bottom: 90px;
}

/* learning counter section styling start here */
.learning-counter-box ul li .count,
.learning-counter-box ul li .plus,
.learning-counter-box ul li .counter-box small {
    font-size: 50px;
    line-height: 70px;
    color: var(--secondary-color);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.learning-counter-box ul li .count {
    margin-bottom: 7px;
}

.learning-counter-box ul li .plus {
    color: var(--accent);
    font-size: 30px;
    line-height: 30px;
    position: relative;
}

.learning-counter-box ul li .plus span {
    display: inline-block;
    position: absolute;
    right: -17px;
    bottom: 12px;
}

.learning-counter-box ul {
    display: grid;
    gap: 0;
    grid-template-columns: 26% 26% 25% 9%;
    justify-content: center;
}

/* learning counter section styling end here */
/* conference registration section styling start here */
.index3-conference-registration-section {
    padding: 170px 0;
}
.conference-registration .generic-btn a {
    font-size: 16px;
    padding: 20px 25px;
    color: var(--secondary-color);
    background: var(--primary-color);
}

.conference-registration .generic-btn a:hover {
    background: var(--green-1);
    color: var(--secondary-color);
}

.conference-registration {
    display: grid;
    gap: 190px;
    padding: 55px;
    align-items: center;
    background: var(--blue);
    grid-template-columns: 61% 20%;
    /*position: absolute;*/
    /*top: -100px;*/
    box-shadow: 50px 50px 100px 0 var(--blue-20);
}
.conference-registration::before,
.conference-registration::after {
    content: "";
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    position: absolute;
}

.conference-registration::before {
    left: 10px;
    bottom: 10px;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.conference-registration::after {
    right: 10px;
    top: 10px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.conference-registration h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

/* conference registration section styling end here */
/* planned events section styling start here */
.planned-events {
    padding-top: 200px;
}

.planned-events::before {
    content: "";
    background: url(../images/index2-blog-left-shape.png) no-repeat;
    background-size: contain;
    width: 611px;
    height: 834px;
    position: absolute;
    left: 0;
    top: 40%;
}

.planned-events .generic-title h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.planned-events .generic-title .small-text {
    color: var(--accent);
    letter-spacing: 0;
    margin-bottom: 23px;
}

.event-days {
    border: 2px solid #efe9fb;
    padding: 20px 28px;
    width: max-content;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-details h6 {
    line-height: 30px;
    margin-bottom: 2px;
}

.day-details span {
    font-size: 14px;
    line-height: 20px;
    display: block;
    color: #72678f;
}

.event-days.active .day-details span {
    color: var(--primary-color);
}

.organizer-profile h6 {
    margin-bottom: 0;
}

.organizer-profile figure {
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
}

.organizer-profile span {
    font-size: 16px;
    line-height: 20px;
    color: var(--light-blue);
    margin-bottom: 35px;
    display: block;
    position: relative;
}

.organizer-profile span::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent);
    position: absolute;
    left: 0;
    bottom: -20px;
}

.organizer-profile ul li {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #72678f;
}

.organizer-profile ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 free";
    font-weight: 800;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--light-blue);
}

.event-profiles-box {
    display: grid;
    gap: 95px;
    margin-top: 30px;
    float: left;
    width: 30%;
}

.planned-events-inner-section {
    display: grid;
    gap: 30px;
    grid-template-columns: 15% 82%;
    margin-bottom: 50px;
}

.event-text-box ul li {
    font-size: 14px;
    line-height: 30px;
    margin-right: 38px;
    display: inline-block;
    font-weight: 600;
    color: #72678f;
}

.event-text-box ul li i {
    margin-right: 8px;
    color: var(--accent);
}

.event-text-box h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}

.event-text-box p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 32px;
    color: #72678f;
}

.event-text-box a {
    font-size: 14px;
    line-height: 16px;
    color: #72678f;
    font-weight: 600;
}

.event-text-box a:hover {
    color: var(--accent);
}

.event-text-box a i {
    margin-left: 3px;
}

.event-text-box .generic-btn a {
    padding: 21px 36px 21px 35px;
    border: 1px solid #72678f;
    position: relative;
    background: transparent;
}

.event-text-box .generic-btn a::after {
    content: "";
    background: #72678f;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    position: absolute;
    top: 5px;
    right: 5px;
    width: 11px;
    height: 11px;
}

.event-text-box .generic-btn {
    display: inline-block;
    margin-right: 15px;
}

.event-text-box .generic-btn a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.event-text-box .generic-btn a:hover i {
    color: var(--accent);
}

.event-text-box .generic-btn a:hover::after {
    background: var(--accent);
}

.event-text-right-con {
    padding: 10px;
    background: #f7f4fe;
    width: 70%;
    float: left;
}

.event-text-box {
    padding: 27px 60px 37px 35px;
    border: 3px solid #efe9fd;
    background: var(--primary-color);
}

.planned-events .generic-title {
    margin-bottom: 100px;
}

.planned-events-inner-section .nav.nav-pills {
    position: relative;
}

.planned-events-inner-section .nav-pills .nav-link {
    border-radius: 0;
    position: relative;
    left: -75px;
    top: 120px;
    transform: rotate(-90deg);
    margin: 0px 0 180px;
}

.planned-events-inner-section .nav-pills .nav-link.active {
    background: var(--button-color);
    color: var(--primary-color);
    border-color: var(--button-color);
}

.planned-events-inner-section .nav-pills .nav-link.active h6 {
    color: var(--primary-color);
}

.planned-events-inner-section .nav-pills .nav-link.active figure img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(317deg) brightness(105%) contrast(103%);
}

.schedule-con {
    display: grid;
    gap: 333px;
    grid-template-columns: 42% 26%;
    padding: 50px 50px 40px;
    background: #72678f;
    box-shadow: 50px 50px 100px 0 rgb(98 46 239 / 20%);
}

.schedule-con h6 {
    margin-bottom: 0;
    line-height: 30px;
    color: var(--primary-color);
}

.schedule-con .generic-btn a {
    font-size: 16px;
    padding: 20px 25px 20px 24px;
    color: var(--primary-color);
    background: var(--accent);
}

.schedule-con .generic-btn a:hover {
    background: var(--primary-color);
    color: var(--accent);
}

/* planned events section styling end here */
/* ticket pricing section styling start here */
.ticket-pricing-section {
    background: url(../images/ticket-slider-bg.jpg) no-repeat center;
    background-size: cover;
}

.ticket-pricing-section .generic-title {
    margin-bottom: 90px;
}

.ticket-pricing-section .generic-title span {
    letter-spacing: normal;
    color: var(--accent);
    margin-bottom: 22px;
}

.ticket-pricing-section .generic-title h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.ticket-pricing-slider .ticket-details h3 {
    font-size: 30px;
    line-height: 36px;
}

.ticket-pricing-slider .ticket-details .generic-btn a {
    font-size: 16px;
    padding: 19px 44px;
    background: transparent;
    color: #72678f;
    border: 1px solid #72678f;
}

.ticket-pricing-slider .ticket-details ul li {
    color: #72678f;
}

.ticket-pricing-slider .ticket-details ul li::before {
    color: var(--accent);
    left: 4px;
}

.ticket-pricing-slider .ticket-details {
    width: 320px;
    padding: 47px 40px 48px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}

.ticket-pricing-detail::before {
    content: "";
    background: var(--primary-color);
    width: 100%;
    height: 431px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}

.ticket-pricing-slider .owl-carousel .owl-nav button.owl-prev,
.ticket-pricing-slider .owl-carousel .owl-nav button.owl-next {
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 16px;
    position: absolute;
    background: #ccc;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    color: var(--primary-color);
    transform: translateY(-50%);
}

.ticket-pricing-slider .owl-carousel .owl-nav button.owl-prev {
    left: -70px;
}

.ticket-pricing-slider .owl-carousel .owl-nav button.owl-next {
    right: -70px;
}

.ticket-pricing-slider .owl-carousel .owl-nav button.owl-prev:focus,
.ticket-pricing-slider .owl-carousel .owl-nav button.owl-next:focus {
    outline: none;
}

.ticket-pricing-slider .owl-carousel .owl-nav button.owl-prev:hover,
.ticket-pricing-slider .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--button-color);
}

.ticket-pricing-slider .owl-carousel .owl-dots {
    display: none;
}

.ticket-pricing-slider {
    margin-bottom: 96px;
}

.ticket-pricing-btn a {
    font-size: 16px;
    padding: 20px 46px;
    background: var(--accent);
}

.ticket-pricing-btn p {
    margin-bottom: 33px;
}

.ticket-pricing-slider .ticket-details .generic-btn a:hover {
    background: var(--button-color);
    color: var(--primary-color);
}

/* ticket pricing section styling end here */

/* biggest conference section styling start here */
.biggest-conference-section {
    background: url(../images/1920x594.jpg) no-repeat center;
    background-size: cover;
}

.biggest-conference-con {
    display: grid;
    gap: 50px;
    grid-template-columns: 60% 40%;
    align-items: center;
}

.biggest-text-section {padding: 15px 0;}
.biggest-text-section h2,
.biggest-text-section p {
    color: var(--primary-color);
}

.biggest-text-section p {
    margin-bottom: 35px;
}

.biggest-text-section figure {margin: 15px 0;}
.biggest-text-section figure img {max-width: 100%;}
.biggest-img-box figure img {max-width: 620px;}

.biggest-text-section h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.biggest-text-section .generic-btn a {
    font-size: 16px;
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 20px 29px;
}

.biggest-text-section .generic-btn a:hover {
    background: var(--green-1);
    color: var(--secondary-color);
}

/* biggest conference section styling end here */
/* experts images section styling start here */
.expert-images-con ul {
    display: grid;
    gap: 30px;
    grid-template-columns: auto auto auto;
    margin-bottom: 30px;
}

.expert-images-con {
    margin-bottom: 76px;
}

.top-experts-btn p {
    color: #72678f;
    margin-bottom: 37px;
}

.top-experts-btn .generic-btn a {
    font-size: 16px;
    padding: 20px 47px;
    color: var(--primary-color);
    background: var(--accent);
}

.top-experts-btn .generic-btn a:hover {
    background: var(--button-color);
}

/* Image gallery stlyling */

.container__img-holder {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.search-icon-con {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.search-icon-con i {
    color: var(--accent);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.container__img-holder:hover .search-icon-con {
    display: block;
}

.container__img-holder::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(239, 98, 46, 1) 0%, rgba(98, 46, 239, 1) 100%);
    opacity: 0.7;
    display: none;
}

.container__img-holder:hover::after {
    display: block;
}

.container .container__img-holder:nth-child(3n+1) {
    margin-left: 0;
}

/* Popup Styling */
.img-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 99999;
}

.img-popup img {
    width: auto;
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}

.close-btn {
    width: 35px;
    height: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close-btn .bar {
    height: 4px;
    background: #fff;
}

.close-btn .bar:nth-child(1) {
    transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.opened {
    display: flex;
}

.opened img {
    animation: animatepopup 1s ease-in-out .8s;
    -webkit-animation: animatepopup .3s ease-in-out forwards;
}

@keyframes animatepopup {

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

}

@media screen and (max-width: 880px) {

    .container .container__img-holder:nth-child(3n+1) {
        margin-left: 16px;
    }

}

/* experts images section styling end here */

.quote-icon figure {
    width: 72px;
    height: 72px;
    border: 5px solid var(--primary-color);
    border-radius: 100%;
    background: linear-gradient(to bottom, rgba(98, 46, 239, 1) 0%, rgba(239, 98, 46, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
}

/* index3 page styling start here */
/* index3 header styling start here */
.index3-header .nav-btns a {
    padding: 0;
    border: none;
}

.index3-header .nav-btns a:hover {
    background: none;
}

.index3-header .nav-btns a:hover i {
    color: var(--green-2);
}

.index3-header .nav-btns .shopping-cart::after {
    display: none;
}

.index3-header .nav-btns {
    gap: 20px;
    right: 172px;
}




.index3-header {
    top: 0;
    padding: 10px 20px;
    background-color: var(--primary-color);
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
}

.index3-header .navbar-light .navbar-nav .nav-link {
    font-weight: 400;
}

.header-main-con.index3-header .navbar-nav {
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
}
.header-main-con.index3-header .navbar-nav li {
    /*padding: 10px;*/
}

.index3-header .navbar-light .navbar-brand {
    margin: 0;
    padding: 0;
}
.index3-header .navbar-light .navbar-brand .header-logo {
    height: 90px;
    width: auto;
}

/* index3 header styling end here */
/* index3 banner styling start here */
.index3-banner-section .container-fluid,
.header-main-con.index3-header .container-fluid {
    padding: 0 15%;
}

.index3-banner-section {
    background: url(../images/home-header-background.jpg) no-repeat center;
    background-size: cover;
    height: auto;
    position: relative;
    /*padding: 198px 0 0;*/
}

.index3-banner-section::before {
    content: "";
    background: url(../images/index3-banner-left-shape.png) no-repeat center;
    width: 120px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.index3-banner-inner-con {
    display: grid;
    gap: 0;
    grid-template-columns: auto;
    position: relative;
    padding-bottom: 46px;
}

.index3-banner-text-con {
    padding: 50px;
    background: var(--green-3);
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 500px;
    height: 540px;
    border-radius: 10px;
}

.index3-banner-text-con span,
.index3-banner-text-con ul li,
.index3-banner-text-con ul li i {
    color: var(--primary-color);
}

.index3-banner-text-con .generic-btn a {
    font-size: 16px;
    padding: 20px 40px;
    border-radius: 30px;
    color: var(--blue);
    background: var(--primary-color);
}

.index3-banner-text-con ul {
    margin-bottom: 31px;
}

.index3-banner-text-con ul li {
    font-size: 18px;
}

.index3-banner-text-con ul li i {
    margin-right: 2px
}

.index3-banner-text-con h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}
.index3-banner-text-con h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
}

.index3-banner-text-con span {
    padding-left: 35px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
}

.index3-banner-text-con span::before {
    content: "";
    background: var(--primary-color);
    width: 26px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.index3-banner-img-con figure {
    width: 1006px;
    height: 100%;
    border: 6px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.index3-banner-img-con figure img {
    border-radius: 10px;
}

.index3-banner-section .owl-carousel .owl-nav button.owl-prev,
.index3-banner-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 39%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border-radius: 100%;
    background: rgb(0, 0, 0, .2);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.index3-banner-section .owl-carousel .owl-nav button.owl-prev {
    left: -240px;
}

.index3-banner-section .owl-carousel .owl-nav button.owl-next {
    right: -240px;
}

.index3-banner-section .owl-carousel .owl-nav button.owl-prev:focus,
.index3-banner-section .owl-carousel .owl-nav button.owl-next:focus {
    outline: none;
}

.index3-banner-section .owl-carousel .owl-nav button.owl-prev:hover,
.index3-banner-section .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--green-2);
}

.index3-banner-section .owl-carousel .owl-dots .owl-dot {
    width: 40px;
    height: 2px;
    background: rgb(255 255 255 / 30%);
    margin: 0 5px;
}

.index3-banner-section .owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}

.index3-banner-section .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
}

.index3-banner-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* index3 banner styling end here */
/* journey section styling start here */
.journey-section .learning-conference-video-box>figure::after {
    box-shadow: none;
}

.journey-section .learning-conference-video-box {
    transform: unset;
    border: 5px solid var(--primary-color);
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.journey-section .learning-conference-video-box > figure img {
    border-radius: 10px;
    width: 540px;
}

.journey-section .video-inner-con {
    display: inline-block;
}

.journey-inner-con {
    display: grid;
    gap: 123px;
    grid-template-columns: 40% 49%;
    align-items: center;
    margin-bottom: 100px;
}

.journey-text-con h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--blue);
    /*margin-bottom: 30px;*/
}
.journey-text-con h3 {
    font-size: 37px;
    line-height: 46px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--green-2);
    margin-bottom: 0;
}
.journey-text-con h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #72678f;
    margin-bottom: 0;
}

.journey-video-con {
    display: block;
    margin: 50px auto 0;
    max-width: 60%;
}

.journey-text-con p {
    font-size: 18px;
    line-height: 30px;
    color: #72678f;
    margin-bottom: 40px;
    margin-left: 3px;
}

.journey-text-con .generic-btn a {
    font-size: 16px;
    padding: 20px 43px 20px 42px;
    background: var(--green-2);
    border-radius: 30px;
}

.journey-section .learning-conference-video-box>figure::before {
    content: "";
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    position: absolute;
    right: 12px;
    top: 12px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.journey-section #light {
    /*top: 28%;*/
}
.journey-section #light #VisaChipCardVideo {
    height: 100%;
    width: 100%;
}

/* journey section styling end here */
/* digital conference section styling start here */
.digital-conference-img-con figure {height: 100%;}
.digital-conference-img-con figure::after {
    content: "";
    background: linear-gradient(to bottom, var(--green-2-10) 0%, var(--green-2-40) 46%, var(--green-1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
}
.digital-conference-img-con figure img {
    border-radius: 20px 0 0 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.digital-conference-section {
    display: grid;
    gap: 0;
    grid-template-columns: 48.7% 51%;
}

.digital-counter-con {
    border-radius: 0 0 20px 0;
    background: var(--primary-color);
    border: 1px solid #dddddd;
    border-left: 0;
}

.digital-counter-con ul {
    display: grid;
    gap: 0;
    grid-template-columns: 50% 50%;
}

.digital-counter-con ul li {
    padding: 34px 30px 14px 58px;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.digital-counter-con ul li .counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.digital-counter-con ul li .count,
.digital-counter-con ul li small {
    font-size: 50px;
    line-height: 70px;
    color: var(--blue);
    font-weight: 800;
}

.digital-counter-con ul li .plus span {
    font-size: 30px;
    line-height: 30px;
    color: var(--green-2);
    font-weight: 800;
    position: absolute;
    left: -11px;
    top: -3px;
}

.plus-details {
    position: relative;
}

.digital-counter-con .client-status {
    font-size: 18px;
    line-height: 24px;
    color: #72678f;
    margin-top: -4px;
}

.digital-counter-con ul li:nth-child(3),
.digital-counter-con ul li:nth-child(4) {
    padding: 14px 30px 21px 58px;
}

.digital-text-con h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--blue);
}

.digital-text-con h3 span {
    color: var(--green-2);
}

.digital-text-con .generic-btn a {
    font-size: 16px;
    padding: 18px 27px;
    border-radius: 30px;
    color: var(--green-2);
    background: transparent;
    border: 2px solid var(--green-2);
}

.digital-text-con .generic-btn a:hover {
    color: var(--primary-color);
    background: var(--green-2);
}

.digital-text-con {
    padding: 31px 55px 31px 59px;
    border-radius: 0 0 20px 0;
}
.digital-text-con .desc {color: #72678f;}

.about-desc,
.welcome-desc {transition: all 0.4s ease;}
.about-desc:not(.show) p:nth-child(n+3),
.welcome-desc:not(.show) p:nth-child(n+3) {display: none;}

/* digital conference section styling end here */
/* index3 event section styling start here */
.index3-event-section {
    background: url(../images/1920x1802.jpg) no-repeat center;
    background-size: cover;
    background-position-y: bottom;
}

.index3-event-section .generic-title .small-text {
    letter-spacing: 0;
    color: var(--green-1);
}

.index3-event-section .generic-title h2 {
    font-size: 50px;
    line-height: 60px;
    color: var(--primary-color);
}

.index3-event-section .generic-title {
    margin-bottom: 80px;
}

.index3-event-date-con,
.index3-event-organizer {
    display: flex;
    gap: 25px;
    align-items: center;
}
.index3-event-date-con {}
.index3-event-organizer {
    gap: 30px;
}
.index3-event-organizer  .program-avatars {display: flex; flex-flow: row nowrap; gap: -20px; align-items: center;}
.index3-event-organizer figure {
    border-radius: 100%;
    overflow: hidden;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
}
.index3-event-organizer figure.bordered {
    border: 2px solid var(--green-2);
}
.index3-event-organizer figure img {
    width: auto;
    height: 100%;
    object-fit: cover;
}
.index3-event-organizer  .program-avatars figure:nth-child(2),
.index3-event-organizer  .program-avatars figure:nth-child(3) {transform: translateX(-10px);}

.index3-event-date {
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    color: var(--green-2);
}

.index3-event-detail {
    display: grid;
    gap: 50px;
    grid-template-columns: 20% 72%;
}

.index3-faqs h6 button {
    width: 100%;
    padding: 16px 90px 20px 38px;
    border: 0;
    position: relative;
}

.index3-faqs h6 button.btn.collapsed::after,
.index3-faqs h6 button.btn::after {
    font-weight: 800;
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.index3-faqs h6 button.btn.collapsed::after {
    content: "\f107";
}

.index3-faqs h6 button.btn::after {
    content: "\f105";
}

.index3-faqs h6 button:hover {
    background: var(--green-2);
}

.index3-faqs h6 button:hover .index3-event-date,
.index3-faqs h6 button:hover .index3-organizer-detail small span,
.index3-faqs h6 button:hover .index3-organizer-detail small a,
.index3-faqs h6 button:hover small {
    color: var(--primary-color);
}

.index3-faqs .card-header {
    border-radius: 0;
    padding: 0;
    background-color: var(--blue);
    border: 0;
}

.index3-faqs .card {
    border-radius: 0;
    border: 0;
    margin-bottom: 44px;
}

.index3-event-tabs-con .nav-tabs .nav-link:focus,
.index3-event-tabs-con .nav-tabs .nav-link:hover {
    color: var(--green-2);
    border-color: transparent;
}

.index3-event-tabs-con .nav-tabs .nav-link:hover {
    cursor: pointer;
}

.index3-event-tabs-con .nav-tabs {
    border-bottom: 2px solid var(--blue);
    margin-bottom: 80px;
    padding-left: 30px;
}
.index3-event-tabs-con .nav-tabs.bottom {
    border-top: 2px solid var(--blue);
    border-bottom: 0;
    margin-top: 80px;
    margin-bottom: 0;
    padding-left: 30px;
}

.index3-event-tabs-con .nav-tabs .nav-link.active,
.index3-event-tabs-con .nav-tabs .nav-link {
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    padding: 20px 40px 16px 40px;
}

.index3-event-tabs-con .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border: 2px solid var(--blue);
    background-color: var(--green-2-20);
    border-radius: 0;
    border-bottom: 0;
}

.index3-event-tabs-con .nav-tabs .nav-link:focus {
    outline: none;
}

.index3-event-month span {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.index3-event-month small {
    font-size: 14px;
    line-height: 16px;
    color: #bfbdd2;
}

.index3-faqs .btn-link:hover,
.index3-faqs .btn-link:focus {
    text-decoration: none;
}

.index3-organizer-detail > span {
    font-size: 22px;
    line-height: 24px;
    font-weight: 800;
    color: var(--primary-color);
    white-space: wrap;
}

.index3-organizer-detail small {
    font-size: 16px;
    line-height: 20px;
    color: #bfbdd2;
    white-space: wrap;
}
.index3-organizer-detail small a {
    color: #bfbdd2;
}
.index3-organizer-detail small a:hover {
    color: var(--primary-color);
}

.index3-organizer-detail small span {
    color: var(--green-2);
}

.index3-organizer-detail {
    text-align: left;
    display: flex;
    flex-flow: column;
    gap: 13px;
}

.index3-faqs .card-body {
    background-color: var(--blue);
    padding: 34px 120px 35px 93px;
}

.index3-faqs .card-body p,
.index3-faqs .card-body span {
    font-size: 18px;
    line-height: 30px;
}

.index3-faqs .card-body p {
    color: #e6e5ee;
    margin-bottom: 24px;
}
.index3-faqs .card-body .desc {
    color: #e6e5ee;
    margin-bottom: 24px;
}

.index3-faqs .card-body span {
    color: var(--green-2);
}

.index3-faqs .card-body span i {
    margin-right: 3px;
}

.index3-faqs .card:last-child {
    margin-bottom: 0;
}

.index3-faqs {
    margin-bottom: 95px;
}

.index3-faq-btn-con p {
    color: #bfbdd2;
    margin-bottom: 34px;
}

.index3-faq-btn-con .generic-btn a {
    padding: 20px 45px 20px 44px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--green-2);
    border-radius: 30px;
}

/* index3 event section styling end here */
/* index3 event info section styling start here */
.index3-event-info-zone {
    background: #e9e7f0;
}

.index3-event-info-zone .generic-title2 span {
    color: var(--green-2);
}

.index3-event-info-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}

.index3-event-zone {
    background-color: var(--blue);
    padding: 50px 65px 42px 50px;
    border-radius: 20px 0 20px 0;
    position: relative;
    transition: all 0.35s ease-in-out;
}

.index3-event-zone h3 {
    font-size: 30px;
    line-height: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 17px;
}

.index3-event-zone p {
    font-size: 18px;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.index3-event-zone figure {
    margin-bottom: 36px;
}
.index3-event-zone figure img {
    height: 77px;
    width: auto;
}

.index3-event-zone figure::before {
    content: "";
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    display: none;
    transition: .4s ease-in-out;
}

.index3-event-zone:hover {
    background: var(--green-2);
    box-shadow: 20px 20px 100px var(--green-2-40);
}

.index3-event-zone:hover figure::before {
    display: block;
}

.index3-event-zone:hover figure img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(32deg) brightness(110%) contrast(101%);
}

/* index3 event info section styling end here */
/* index3 speakers section styling start here */
.index3-speakers-section {
    background: url(../images/1920x1061.jpg) no-repeat center;
    background-size: cover;
}

.index3-speakers-section .generic-title2 span {
    color: var(--green-1);
}

.index3-speakers-section .generic-title2 h2 {
    color: var(--primary-color);
}

.speakers-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.speakers-grid .item {
    width: 33.33%;
    height: 370px;
    padding: 15px;
}

.index3-speaker-box {
    padding: 7px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--green-2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.index3-speaker-detail-con {
    border-radius: 15px;
    background: var(--green-2-50);
    padding: 15px;
    width: 100%;
    transition: all 0.4s ease;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.index3-speaker-detail-con .bio:not(.show) {display: none;}

.index3-speaker-detail-con ul li {
    margin: 0 5px;
}

.index3-speaker-detail-con ul li a i {
    font-size: 18px;
    line-height: 20px;
    color: var(--text-color);
}

.index3-speaker-detail-con:hover {
    background: var(--green-2);
}

.index3-speaker-detail-con ul {
    margin-bottom: 8px;
}

.index3-speaker-detail-con span {
    font-size: 14px;
    line-height: 16px;
    color: var(--green-2);
}

.index3-speaker-detail-con h5 {
    /*margin-bottom: 12px;*/
    margin-bottom: 0;
    font-size: 16px;
    color: var(--white);
}

.index3-speaker-detail-con:hover h5,
.index3-speaker-detail-con:hover span,
.index3-speaker-detail-con:hover ul li i {
    color: var(--primary-color);
}

.index3-speaker-box::before {
    content: "";
    background-color: var(--green-2);
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    border-radius: 100%;
    display: none;
}

.index3-speaker-box figure {
    display: none;
    width: 100%;
    max-height: 310px;
}

.index3-speaker-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index3-speakers-section .generic-title2 {
    margin-bottom: 50px;
}
.bio-toggle-btn {
    background-color: var(--green-2);
    padding: 1px 10px;
    border-radius: 5px;
    color: var(--primary-color);
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 16px;
}
.bio-toggle-btn:hover {
    text-decoration: none;
    color: var(--green-2);
    background-color: var(--primary-color);
}
.modal-speaker-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--green-2);
}

/*
.index3-speakers-section .owl-carousel .owl-nav button.owl-prev,
.index3-speakers-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: var(--blue);
    border-radius: 100%;
    background-color: var(--green-1);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.index3-speakers-section .owl-carousel .owl-nav button.owl-prev:hover,
.index3-speakers-section .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--green-2);
}

.index3-speakers-section .owl-carousel .owl-nav button.owl-prev {
    left: -70px;
}

.index3-speakers-section .owl-carousel .owl-nav button.owl-next {
    right: -70px;
}

.index3-speakers-section .owl-carousel .owl-nav button.owl-prev:focus,
.index3-speakers-section .owl-carousel .owl-nav button.owl-next:focus {
    outline: none;
}

.index3-speakers-section .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -71px;
}

.index3-speakers-section .owl-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--green-2);
    margin: 0 3px;
    opacity: .4;
}

.index3-speakers-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

.index3-speakers-section .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}
*/

/* index3 speakers section styling end here */
/* index3 plans section styling start here */
.index3-pricing-plans-section {
    background: #e9e7f0;
}

.index3-pricing-plans-section .generic-title2 span {
    color: var(--green-2);
}

.index3-plan-inner-con {
    display: grid;
    gap: 0;
    margin-bottom: 30px;
    grid-template-columns: 31.3% 37% 31.3%;
}

.index3-plan-inner-con .gold-ticket-details {
    width: 100%;
    position: relative;
    background-color: var(--blue);
}

.index3-plan-inner-con .ticket-details h3 {
    font-size: 30px;
    line-height: 32px;
    color: var(--blue);
}
.index3-plan-inner-con .ticket-details .small-sub-title {font-size: 14px;}

.index3-plan-inner-con .ticket-details .price {
    color: var(--green-2);
}

.index3-plan-inner-con .ticket-details ul li::before {
    content: "\f058";
    color: var(--green-2);
    font-weight: 400;
}

.index3-plan-inner-con .ticket-details .generic-btn a {
    border-radius: 30px;
    color: var(--green-2);
    border-color: var(--green-2);
}

.recomended-box {
    font-size: 14px;
    line-height: 24px;
    padding: 0px 10px;
    color: var(--primary-color);
    background: var(--green-2);
    border-radius: 12px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.index3-plan-inner-con .gold-ticket-details h3,
.index3-plan-inner-con .gold-ticket-details .small-sub-title,
.index3-plan-inner-con .gold-ticket-details p,
.index3-plan-inner-con .gold-ticket-details span,
.index3-plan-inner-con .gold-ticket-details .price,
.index3-plan-inner-con .gold-ticket-details ul li,
.index3-plan-inner-con .gold-ticket-details ul li::before,
.index3-plan-inner-con .gold-ticket-details .generic-btn a {
    color: var(--primary-color);
}

.index3-plan-inner-con .gold-ticket-details .generic-btn a {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--blue);
}

.index3-plan-inner-con .silver-ticket-details {
    border-radius: 10px 0 0 10px;
}

.index3-plan-inner-con .premium-ticket-details {
    border-radius: 0 10px 10px 0;
}

.index3-plan-inner-con .ticket-details {
    height: auto;
    margin: 30px 0;
    padding: 50px 45px 45px;
}

.index3-plan-inner-con .ticket-details ul li {
    padding-left: 23px;
}

.index3-plan-inner-con .gold-ticket-details {
    height: auto;
    margin: 0;
    padding: 79px 75px 50px;
}

.index3-plan-btn p {
    color: var(--blue);
    margin-bottom: 12px;
}
.index3-plan-btn p a {
    color: var(--green-3);
    text-decoration: none;
}
.index3-plan-btn p a:hover {
    text-decoration: underline;
}

.index3-plan-btn .generic-btn a {
    font-size: 16px;
    line-height: 18px;
    border-radius: 30px;
    padding: 19px 46px;
    background: var(--green-2);
    border: 1px solid var(--green-2);
}

.index3-plan-btn .generic-btn a:hover {
    color: var(--green-2);
    border-color: var(--green-2);
    background: var(--primary-color);
}

.index3-plan-inner-con .ticket-details .generic-btn a:hover {
    color: var(--primary-color);
    background: var(--green-2);
    border-color: var(--green-2);
}

/* index3 plans section styling end here */
/* index3 registration section styling start here */
.index3-registration-section {
    background: url(../images/index3-registration-bg-img.jpg) no-repeat center;
    background-size: cover;
    height: 594px;
}

.index3-registration-left-con h2 {
    font-size: 50px;
    line-height: 60px;
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin-bottom: 32px;
}

.index3-registration-left-con p {
    margin-bottom: 35px;
    color: var(--primary-color);
}

.index3-registration-inner-con {
    display: grid;
    gap: 0;
    grid-template-columns: 60% 40%;
    align-items: center;
}

.index3-registration-right-con figure {
    margin-top: -63px;
}

.index3-registration-left-con .generic-btn a {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    padding: 19px 56px;
    background: var(--green-2);
    border-radius: 30px;
    border: 1px solid var(--green-2);
}

.index3-registration-left-con .generic-btn a:hover {
    color: var(--green-2);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* index3 registration section styling end here */
/* index3 top experts section styling start here */
.index3-top-experts-inner-section {
    display: grid;
    grid-template-columns: 48.8% 48.8%;
    gap: 30px;
    justify-content: center;
}

.index3-experts-left-con {
    display: grid;
    grid-template-columns: 48.2% 48.6%;
    gap: 30px;
}

.index3-experts-right-con {
    display: grid;
    grid-template-columns: 48.5% 49%;
    gap: 30px;
}

.index3-top-experts-section .container-fluid {
    padding: 0 15px;
}

.index3-expert-con1 {
    grid-column: 1/-1;
}

.index3-expert-right-bottom-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 122% 78%;
}

.index3-top-experts-section .generic-title2 span {
    color: var(--green-2);
}

.index3-top-experts-section {
    background: #e9e7f0;
}

.index3-top-experts-inner-section .container__img-holder::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--green-2-40) 46%, var(--green-1) 100%);
    opacity: 0.7;
    display: none;
}

.index3-top-experts-inner-section .container__img-holder:hover::after {
    display: block;
}

.index3-top-experts-inner-section .container__img-holder {
    border-radius: 0;
}

.index3-top-experts-inner-section .search-icon-con i {
    color: var(--green-2);
}

.index3-top-experts-inner-section .search-icon-con::before {
    content: "";
    background: transparent;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 3px solid var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* index3 top experts section styling end here */
/* index3 testimonial section styling start here */
.index3-testimonial-section {
    background: url(../images/1920x894.jpg) no-repeat center;
    background-size: cover;
}

.index3-testimonial-section .generic-title2 span {
    color: var(--green-1);
}

.index3-testimonial-section .generic-title2 h2 {
    color: var(--primary-color);
}

.index3-testimonial-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--blue);
    margin-top: 10px;
    margin-bottom: 20px;

    flex: 1;
}

.index3-testimonial-box small {
    font-size: 13px;
    line-height: 13px;
    color: var(--blue);
    display: block;
}
.index3-testimonial-box h6 span {
    color: var(--blue);
    font-weight: normal;
    font-size: 90%;
}

.index3-testimonial-box h6 {
    color: var(--green-2);
    margin-bottom: 7px;
    line-height: 20px;
}

.index3-testimonial-box h6 a {
    color: var(--green-2);
    text-decoration: none;
    transition: all 0.4s ease;
}
.index3-testimonial-box h6 a:hover {
    color: var(--green-3);
    text-decoration: underline;
}

/*.index3-testimonial-inner-con .owl-carousel .owl-item img {width: auto;}*/

.index3-testimonial-box {
    border-radius: 10px;
    padding: 30px 40px 38px;
    background: var(--primary-color);
    height: 100%;
    display: flex;
    flex-flow: column;
}

.index3-testimonial-inner-con .owl-carousel.owl-drag .owl-item .item {
    padding: 40px 0 0;
}

.index3-quote-con {
    position: absolute;
    right: 25px;
    top: -26px;
}

.index3-testimonial-box>figure {
    display: block;
    width: 70px;
    height: 70px;
    background: transparent;
    padding: 0;
    border: 3px solid var(--green-2);
    border-radius: 100%;
    overflow: hidden;
}

.index3-testimonial-inner-con .index3-testimonial-box > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index3-testimonial-section .owl-carousel .owl-nav button.owl-prev,
.index3-testimonial-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: var(--blue);
    border-radius: 100%;
    background-color: var(--green-1);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.index3-testimonial-section .owl-carousel .owl-nav button.owl-next {
    right: -70px;
}

.index3-testimonial-section .owl-carousel .owl-nav button.owl-prev {
    left: -70px;
}

.index3-testimonial-section .owl-carousel .owl-nav button.owl-next:hover,
.index3-testimonial-section .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--green-2);
}

.index3-testimonial-section .owl-carousel .owl-nav button.owl-next:focus,
.index3-testimonial-section .owl-carousel .owl-nav button.owl-prev:focus {
    outline: none;
}

.index3-testimonial-section .owl-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--green-2);
    margin: 0 3px;
    opacity: .4;
}

.index3-testimonial-section .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}

.index3-testimonial-section .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -71px;
}

.index3-testimonial-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

.testimonials-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -15px;
}
.testimonials-grid .item {
    width: 33.33%;
    padding: 30px 15px;
}


/* index3 testimonial section styling end here */
/* index3 blog section styling start here */
.index3-blog-section {
    background: #e9e7f0;
}

.index3-blog-section .generic-title2 span {
    color: var(--green-2);
}

.index3-blog-section .blog-img span {
    background: var(--green-2);
}

.index3-blog-section .blog-text h6::before {
    background: var(--green-2);
}

/* index3 blog section styling end here */
/* index3 sponsors section styling start here */
.index3-sponsors-main-section {
    background: var(--primary-color);
    height: 150px;
    padding: 45px 0;
    box-shadow: 50px 50px 100px rgb(35 23 105 / 10%);
    z-index: 1;
    position: relative;
}

.index3-location .map {/*height: 600px;*/}

.index3-hotel {
    background: #e9e7f0 url(../images/daniel-hotel-big.jpg) no-repeat center top 30%;
    background-size: cover;
    padding: 80px 0;
    min-height: 80vh;
}
.index3-hotel .content {
    position: relative;
    padding: 0 15px;
}
.index3-hotel.overlay:before {
    display: none;

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to bottom, var(--blue) 0%, var(--green-2-40) 46%, var(--green-1) 100%);
}
/*.index3-hotel .info-container {
    flex: 0 0 600px;
    max-width: 600px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
}*/
.index3-hotel h2 {color: var(--primary-color);}
.index3-hotel figure {
    overflow: hidden;
    border-radius: 10px 10px 10px 0;
}
.index3-hotel .generic-title2 {margin-bottom: 30px;}
.index3-hotel .generic-title2 .small-text {font-weight: 500; color: var(--primary-color); margin: 0;}
.hotel-content-box {
    position: relative;
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary-color);
	max-width: 380px;
	background-color: rgba(46, 160, 223, 0.15);
	padding: 30px;
	border-radius: 0 10px 10px 10px;
    margin: auto auto auto 10%;
}
.hotel-content-box:before {
	content: "";
	background: var(--blue);
	width: 50px;
	height: 50px;
	position: absolute;
	top: 15px;
	transition: .4s ease-in-out;
    left: 15px;
    clip-path: polygon(0 100%, 100% 0, 0 0);
}
.hotel-content-box p {
    /*font-size: 14px;*/
    /*line-height: 1.5;*/
}
.hotel-content-box p:last-child {margin: 0;}
.hotel-content-box h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--blue);
}
.hotel-content-box h3,
.hotel-content-box p {
    color: var(--blue);
}
.hotel-content-box .generic-btn a {
	font-size: 16px;
	padding: 18px 27px;
	border-radius: 30px;
	color: var(--blue);
	background: transparent;
	border: 2px solid var(--blue);
}
.map-frame {
	border: 3px solid var(--green-2-50);
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	outline: 10px solid var(--green-1-30);
}

.media-coverage-section {
	background-color: #e9e7f0;
}


.contact-section {
	background: url(../images/1920x1802.jpg) no-repeat center bottom;
	background-size: cover;
}
.contact-section .generic-title {
	margin-bottom: 40px;
}
.contact-section .generic-title .small-text {
	letter-spacing: 0;
	color: var(--green-1);
	font-weight: normal;
    line-height: 1.4;
    margin-bottom: 0;
}
.contact-section .generic-title .small-text:not(:last-child) {
    margin-bottom: 20px;
}
.contact-section .generic-title h2 {
	/*font-size: 50px;*/
	/*line-height: 60px;*/
	color: var(--primary-color);
    margin-bottom: 20px;
}
.contact-section .generic-btn button {
	font-size: 16px;
	padding: 20px 40px;
	border-radius: 30px;
	color: var(--blue);
	background: var(--primary-color);
}
.contact-message {
	font-size: 16px;
	padding: 20px 40px;
	border-radius: 10px;
	color: var(--green-3);
    background: var(--primary-color);
}
.contact-message.error {color: var(--pink-color);}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="tel"],
form input[type="color"],
form input[type="number"],
form select,
form textarea {
    border: 0 solid var(--primary-color);
    background-color: transparent;
    display: block;
    width: 100%;
    padding: 15px;
    color: var(--blue);
    border-radius: 10px;
}
form input:focus,
form select:focus,
form textarea:focus {
    outline: 0;
}
.field-outer {
    border-radius: 10px 10px 0 10px;
    background-color: var(--white);
}
.field-outer:before {
	content: "";
	background: var(--blue);
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 10px;
    right: 10px;
	transition: .4s ease-in-out;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* index3 sponsors section styling end here */
/* index3 footer section styling start here */
.index3-footer-main-section {
    padding-top: 95px;
    padding-bottom: 77px;
    margin-top: 0;
}

.index3-footer-main-section .footer-social-links ul li a {
    border-radius: 10px;
    background: var(--green-2-10);
}

.index3-footer-main-section .footer-social-links ul li a:hover {
    background: var(--green-2);
}

.index3-footer-main-section .footer-social-links ul li a:hover i {
    color: var(--primary-color);
}

.index3-footer-main-section .footer-call-btn i,
.index3-footer-main-section .footer-call-btn small,
.index3-footer-main-section .footer-box ul li small,
.index3-footer-main-section .footer-social-links ul li a i,
.index3-footer-main-section .footer-box.footer-contact ul li span {
    color: var(--green-2);
}

.index3-footer-main-section .footer-navigation ul li::before {
    content: "";
    background: var(--green-2);
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.index3-footer-main-section .footer-navigation ul li::before {
    width: 7px;
    height: 7px;
    top: 54%;
    background: var(--primary-color);
    border: 2px solid var(--green-2);
}

.index3-footer-main-section .footer-box.footer-navigation ul li a:hover {
    color: var(--green-2);
}

.index3-footer-main-section .footer-box.footer-contact ul li a:hover {
    color: var(--green-2);
}

.index3-footer-main-section .footer-logo {
    width: 250px;
    height: auto;
}

/* index3 footer section styling end here */
/* index3 page styling end here */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--button-color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/
/* bottom to top button */
#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    cursor: pointer;
}

#button {
    background-color: var(--green-1);
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 26px;
    line-height: 50px;
    color: var(--blue);
    font-weight: 600;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 var(--green-1-99);
    }

    to {
        box-shadow: 0 0 0 25px var(--green-1-01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 var(--green-1-99)
    }

    to {
        box-shadow: 0 0 0 25px var(--green-1-01)
    }
}

/* bottom to top button */

.custom-check {
    flex: 0 0 100%;
    margin: 0;
    font-size: 14px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}
.custom-check input[type="radio"],
.custom-check input[type="checkbox"] {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    appearance: none;
    outline: 0;
}
.custom-check input[type="radio"] {
    border-radius: 10px;
}
.custom-check input[type="radio"]:checked,
.custom-check input[type="checkbox"]:checked {
    background: url(../../icons/check-green.svg) no-repeat center;
    background-size: cover;
}
