/* =========fonts-css-start ============= */

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Black.woff2') format('woff2'), 
        url('../fonts/Exo-Black.woff') format('woff'), 
        url('../fonts/Exo-Black.svg#Exo-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Thin.woff2') format('woff2'), 
        url('../fonts/Exo-Thin.woff') format('woff'), 
        url('../fonts/Exo-Thin.svg#Exo-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-SemiBold.woff2') format('woff2'), 
      url('../fonts/Exo-SemiBold.woff') format('woff'), 
      url('../fonts/Exo-SemiBold.svg#Exo-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Regular.woff2') format('woff2'), 
      url('../fonts/Exo-Regular.woff') format('woff'), 
       url('../fonts/Exo-Regular.svg#Exo-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-ExtraBold.woff2') format('woff2'), 
      url('../fonts/Exo-ExtraBold.woff') format('woff'), 
      url('../fonts/Exo-ExtraBold.svg#Exo-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Medium.woff2') format('woff2'), 
      url('../fonts/Exo-Medium.woff') format('woff'), 
      url('../fonts/Exo-Medium.svg#Exo-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Bold.woff2') format('woff2'), 
      url('../fonts/Exo-Bold.woff') format('woff'), 
      url('../fonts/Exo-Bold.svg#Exo-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Light.woff2') format('woff2'), 
      url('../fonts/Exo-Light.woff') format('woff'), 
      url('../fonts/Exo-Light.svg#Exo-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-ExtraLight.woff2') format('woff2'), 
      url('../fonts/Exo-ExtraLight.woff') format('woff'), 
      url('../fonts/Exo-ExtraLight.svg#Exo-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


/* ================common-css-start ============ */

:root {
    --primary-color: #0FB4A4;
    --secondary-color: #056B64;
    --submenu-bg: #042F2A;
    --border-color: #C1E9E1;
    --black-bg: #000000;
    --text-color: #000000;
    --hover-color: #d3b892ba;
    --primary-font: 'Exo', sans-serif;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 16px;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

ul,
li {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

.btn {
    display: inline-block;
    text-align: center;
    width: auto;
    padding: 8px 20px;
    font-size: 16px;
    min-height: 28px;
    line-height: 28px;
    color: #fff;
    letter-spacing: 0.4px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    min-width: 100px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
}

.btn:hover,
.btn-white:hover {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-sec {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-sec:hover {
    background-color: var(--primary-color);
    color: #FFF;
}

.btn,
a {
    transition: all .3s ease-in-out;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
}

.hyperlink:hover {
    text-decoration: underline;
}

.btn:focus,
button:focus {
    box-shadow: none;
    outline: none;
}

.section-space {
    padding: 90px 0;
}

.custom-navbar .navbar-nav .nav-item .dropdown-menu {
    background-color: var(--submenu-bg);
    padding: 0;
    border: 0 none;
    border-radius: 0;
}

.custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    padding: 10px 12px;
    text-transform: capitalize;
}

.custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid var(--secondary-color);
}
.custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover, 
.custom-navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    background-color: var(--primary-color);
}

/* ========= Header css start ========== */

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background-color: var(--black-bg);
}
.admin-bar .header {
    top: 32px;
}
.navbar.custom-navbar {
    padding: 16px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-menu {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
}

.navbar-nav .nav-item .nav-link {
    padding: 10px 22px;
    letter-spacing: 0.4px;
    font-size: 16px;
    color: var(--primary-color);
    position: relative;
    outline: none;
    font-size: 14px;
    line-height: 18px;
}

.navbar-toggler {
    outline: none;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

.nav-btn.btn {
    min-height: 38px;
    line-height: 38px;
    padding: 0 20px;
    color: var(--border-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================== header css end ==================== */


/* ===================== Banner css Start ==================== */

.homeTopVideoBG {
    width: 100%;
    position: absolute;
}
.homeTopVideoBG::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007a;
}
.left-shape {
    display: inline-block;
    width: 120px;
    height: 40px;
    background-color: var(--submenu-bg);
    position: absolute;
    left: -12px;
    top: 120px;
    z-index: 1;
}
.shape-outer {
    position: absolute;
    top: 120px;
    right: 0;
    display: flex;
    align-items: center;
}
.right-shape {
    display: inline-block;
    width: 120px;
    height: 40px;
    background-color: #92D3C7;
    z-index: 1;
}
.small-shape {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--submenu-bg);
}
.banner-sec {
    padding: 90px 0 0;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
}
.red-shape {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #FF4A50;
    position: absolute;
    right: 40px;
    top: 40%;
}
.session-text {
    border: 0px solid #fff;
    margin: 52px 0;
    margin-left: auto;
    max-width: 480px;
    position: relative;
}

.session-text .session-inner {
    padding: 15px;
    background: var(--text-color);
    position: relative;
}
.session-text .session-inner::before {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
}
.session-text .btn {
    background-color: var(--secondary-color);
    border-radius: 0;
    border: 0 none;
}

.blue-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    margin: 15px 0;
}

.session-text h3 {
    font-size: 28px;
    line-height: 37px;
    color: #fff;
}

.session-text .session-time {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.session-text .read-more {
    float: right;
    font-size: 16px;
    line-height: 22px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.shape-outer.left {
    top: auto;
    left: 0;
    bottom: 30px;
}
.shape-outer.left .small-shape {
    width: 120px;
}
.shape-outer.left .right-shape {
    width: 40px;
}


/* ===================== Banner css End ==================== */


/* ===================== Decision makers css Start ==================== */

.decision-sec {
    background-color: var(--secondary-color);
    position: relative;
}

.decision-sec::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 40px;
    background: var(--primary-color);
}

.decision-sec::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #FF4A50;
}

.section-heading-box {
    margin-bottom: 35px;
}

.section-heading {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    text-transform: uppercase;
}

.balck-text {
    color: var(--text-color);
}

.show-btn {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    vertical-align: middle;
    margin-left: 35px;
}

.decision-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.decision-item {
    padding: 0px 15px;
    min-width: 20%;
    flex-grow: 1;
    width: 20%;
    margin: 0px 0px;
}

.decision-item figure {
    margin: 0 0 8px;
    position: relative;
}
.decision-item>figure::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    background: url('../images/img-shape.svg')no-repeat;
    width: 175px;
    height: 180px;
}
#collapse-D .decision-item img{max-width: 100%;
    object-fit: cover;
    min-height: 225px;}
.decision-item figure .pluse-icon {
    display: block;
    width: 20px;
    height: 20px;
    background: #FF4A50;
    text-align: center;
    line-height: 17px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.decision-item h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    color: #fff;
    margin: 4px 0;
}

.decision-item p {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: normal;
    margin: 4px 0;
}

.decision-item span {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--border-color);
    margin: 4px 0px;
}

.decision_slider {
    overflow: hidden;
}
.decision_slider .owl-stage {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.decision_slider .owl-stage .decision-item {
    min-width: 100%;
    width: 100%;
}
.decision_slider .owl-stage .decision-item p {
    max-width: 240px;
}
.decision_slider .owl-nav.disabled {
    display: none;
}


/* ===================== Decision makers css End ==================== */

/* ===================== PROJECTS css Start ==================== */

.bg-black {
    background-color: var(--black-bg);
}

.projects-text {
    text-align: center;
}

/* ===================== PROJECTS css End ==================== */

/* ===================== INDUSTRY SESSION css Start ==================== */

.industry-sec {
    background-color: var(--submenu-bg);
}

.industry-sec .section-heading-box {
    margin-bottom: 60px;
}
.multi-item-slick .owl-stage {
    padding-left: 0 !important;
}
.multi-item-slick .slide-content {
    display: flex;
    
    justify-content: flex-start;
    width: 100%;
    height: 450px;
    background-color: var(--black-bg);
    /* min-width: 1120px; */
}

.multi-item-slick .slide-content .boxone-inner {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 435px);
}
.multi-item-slick .slick-slide img {
    display: block;
    height: 100%;
    object-fit: cover;
}
.boxone-inner .inner-content {
    padding: 16px;
}
.boxone-inner h3 {
    font-size: 28px;
    line-height: 37px;
    color: #fff;
    font-weight: normal;
    margin: 8px 0px;
}
.boxone-inner p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 6px 0;
}
.time-text {
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #fff;
    margin: 4px 0;
}
.register-btn {
    float: right;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-color);position: absolute;
    right: 15px;
    bottom: 15px;
}
.register-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.industry-sec {
    background-image: url('../images/industry-shapes.png');
    background-size: contain;
    height: 670px;
    display: flex;
    background-position: center;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
}

.industry-sec .multi-item-slick .owl-nav button {
    text-indent: -999px;
    width: 60px;
    height: 60px;
    background: var(--primary-color) !important;
    border: 0 none;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 0;
    z-index: 1;
}

.industry-sec .multi-item-slick .owl-prev {
    left: -30px;
}

.industry-sec .owl-next {
    right: -30px;
}

.industry-sec .owl-prev::after,
.industry-sec .owl-next::after {
    content: "\f053";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 24px;
    z-index: 99;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    text-indent: 0;
    font-weight: 600;
    line-height: normal;
    transform: translate(-50%, -50%);
}

.industry-sec .owl-next::after {
    content: "\f054";
}

.industry-sec .slick-dots li button {
    display: none;
}


/* ===================== INDUSTRY SESSION css End ==================== */


/* ===================== SCHEDULE css Start ==================== */

.schedule-card-item {
    display: flex;
    min-height: auto;
    border: 1px solid var(--submenu-bg);
    overflow: hidden;
    max-width: 805px;
    margin: 0 auto;
    margin-bottom: 40px;
    transition: .3s ease-in;
}

.schedule-card-content:not(:last-child) {
    border-bottom: 1px solid var(--submenu-bg);
}

.schedule-card-header {
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-color: var(--submenu-bg);
    width: 10%;
}

.schedule-card-header h3 {
    font-size: 16px;
    line-height: normal;
    color: #fff;
    font-weight: normal;
    margin: 0;
    transform: rotate(-90deg);
}

.schedule-card-header h3 span {
    display: block;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
}

.schedule-card-content {
    padding: 16px 20px;
    width: 680px; overflow: hidden;
}

.schedule-card-content p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    margin: 4px 0px 10px;
    color: #fff;
}

.schedule-card-content .light-text {
    color: #8C8C8C;
}

.schedule-card-content h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: var(--primary-color);
    margin: 4px 0;
    text-transform: capitalize;
}

.content-pahar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blue-btn {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-left: 6px;
    white-space: nowrap;
}

a.blue-btn:hover {
    background: #0fb4a4;
    color: #fff;
    transition: all .3s ease;
}

#moreless-button {
    display: block;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 999;
    margin-top: 100px;
}
#showmore {
       display: block;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 999;
    position: absolute;
    bottom: 0;
    left: 50%;
}

.box-last {
    position: relative;
}

.box-last:after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 44.27%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
}

/* ===================== SCHEDULE css End ==================== */

/*=============== banner-bottom css start here ================*/

.banner-bottom {
    border-bottom: 1px solid var(--submenu-bg);
}
.ind-sess-box{padding-bottom: 50px;}
.banner-inner{padding-top:50px;}
.banner-bottom .container .foot-red {
    height: 200px;
    background: #97373E;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.banner-bottom .foot-red h1 {
    color: #000;
    text-align: center;
    margin-bottom: 0;
}

/*================== banner-bottom css ends here ================= */

/* ===================== Footer css start ===================== */

.footer {
    padding: 134px 0 173px;
    background: #000000;
    text-align: center;
}

.footer h1 {
    text-align: center;
    color: #fff;
}

/* ===================== footer css end ===================== */

/* ===================== COPRO 23 // DECISION MAKE css Start ==================== */
.margin-top-8 {
    margin-top: 80px;
}
.blue-bg {
    background-color: var(--secondary-color);
}
.tabsouter-box {
    background-color: var(--black-bg);
}
.decision-tab-sec {
    padding: 80px 0 0;
}
.section-heading .blue-text {
    font-size: inherit;
}
.tabs-content-inner {
    padding: 40px 0px 110px;
}   
.tabs-content-inner .row {gap:15px; margin-left:0; margin-right:0;}
	.tabs-content-inner .col-md-3.col-sm-7.col-12.boxx,  .pro-search .col-md-3.col-sm-7.col-12.boxx{padding:0; max-width:23%; background:#000;}
.Decision-tabs {
    border: 0 none;
}
.Decision-tabs .nav-item .nav-link, .tabs-outer .tab-content .card .card-header a {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    font-family: 'Exo';
    padding: 18px 40px;
    border-radius: 0;
    color: #fff;
    border: 0 none;
}
.Decision-tabs .nav-item .nav-link img, 
.tabs-outer .tab-content .card .card-header a img {
    max-width: 80px;
}
.Decision-tabs .nav-item .nav-link.active {
    background-color: var(--secondary-color);
}

.tabs-outer .tab-content .card {
    background: transparent;
    border: 0 none;
}
.tabs-content-inner .decision-item {
    margin-bottom: 35px;
    flex-grow: inherit;
}
.tabs-content-inner .decision-item p {
    max-width: 240px;
}
.tabs-content-inner .tabs-heading {
    display: inline-block;
    margin: 0 15px;
    padding: 9px;
    background-color: var(--border-color);
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: var(--submenu-bg);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.nav-tabs {
    display:none;
}
/* ===================== COPRO 23 // FILMMAKERS css Start ==================== */
.filmmakers-sec.blue-bg.tabs-content-inner {
    padding-left: 0;
    padding-right: 0;
}

/*------project start here-----*/

.project-tabs .card-header {
    padding: 0;
    background: transparent;
    border: none;
}
.project-tabs .tabs-cont-outer-box {
    background: var(--submenu-bg);
}
.project-tabs .tab-content {
    padding-top: 40px;
}

.project-tabs .projects-text {
    color: #fff;
    border-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.project-tabs .projects-text img {
    max-width: 90px;
}

.has-search .form-control {
    padding-left: 2.375rem;
    height: 48px;
    border-radius: 0;
    border: none;
    letter-spacing: 2px;
}

.searchouter .has-search .form-control:focus {
    box-shadow: none;
    outline: none;
}

.searchouter.form-group.has-search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.searchouter input.form-control::placeholder {
    color: #8C8C8C !important;
}

.searchouter .has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 3rem;
    text-align: center;
    pointer-events: none;
    color: #0fb2a3;
}
.port-inner-img {position:relative; overflow:hidden; height:242px;}
.port-inner-img img{ height:242px; width: 100%; }

.spotlight-port-inner-img {position:relative; overflow:hidden; height:212px;}
.spotlight-port-inner-img img{ height:auto; width: 100%; }
.port-inner-img.sneakPeek img{     width: 100%;
    object-fit: cover;
    min-height: 314px; }
.spotlightBtn{
	    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: 0;
    border-radius: 0;    padding: 5px 20px;
}
.mb-30{margin-bottom: 30px;}
.hover-box {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;
}
.port-inner-img:hover .hover-box {
    bottom: 0;
}
.hover-box p {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 5px;
    color: #fff;
}
.project-tabs .content {
    padding: 8px 8px;
    background: #000;
    margin: 0 0px 0;
    color: #fff;    position: relative;
    /* max-width: 440px; */
}

.project-tabs .content h5.name {
    font-weight: bold;
    text-transform: capitalize;
    margin: 0 0 5px;
    line-height: 22px;
    font-size: 20px;
}

.project-tabs .content span.designation {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 4px 0px;
    line-height: 18px;
    display: inline-block;
}

.project-tabs .content h6 {
    margin: 4px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
	max-width:50%;
}

/* .project-tabs .port-inner-img img {
    height: 200px;
} */

.project-tabs .card {
    border: none;
    padding: 0;
}

.project-tabs .card-body {
    padding: 0;
}

.project-tabs .content a.blue-btn {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
	    float: right;
    position: absolute;
    top: 41px;
    right: 14px;
}
.project-tabs .nav-item .nav-link {
    padding: 0px 40px;
}
.project-tabs .nav-item .nav-link, 
.project-tabs .tab-content .card .card-header a {
    padding: 0px 25px;
}
.project-tabs .nav-item .nav-link.active {
    background-color: var(--submenu-bg);
}

/*------project ends here-------*/

/*------all decision makers Start here-------*/

.deci-details-inner {
    padding: 80px 0;
    max-width: 810px;
    margin: 0 auto;
}
.back-btn {
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.deci-details-inner .media {
    margin-top: 16px;
}
.deci-details-inner .media .media-body {
    padding: 0 20px;
}
.deci-details-inner .user-content h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 38px;
    margin: 0;
    color: var(--text-color);
}
.deci-details-inner .user-content p {
    font-weight: normal;
    font-size: 28px;
    line-height: normal;
    margin: 8px 0px;
    color: var(--text-color);
}
.deci-details-inner .user-content p.blue-text{
    color: var(--primary-color);
}
.deci-details-inner .user-content figure {
    margin: 0;
}
.deci-details-inner .heading-bg {
    background-color: #F5F5F5;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}
.deci-details-inner .heading-bg h3 {
    font-weight: normal;
    font-size: 28px;
    line-height: 40px;
    margin: 0; max-width: 70%;
}
.deci-details-inner .heading-bg .dot-shapes {
    position: absolute;
    top: 0;
    right: 0;
}

.deci-details-inner .info-box p {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: var(--text-color);
}
.deci-details-inner .info-box a {
    font-weight: bold;
}
.bottom-content h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    margin: 20px 0px;
    color: var(--text-color);
}
.bottom-content .listing li {
    list-style: disc;
    list-style-position: inside;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 3px;
}
.looking-inner {
    margin-bottom: 20px;
}
.looking-inner h5 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}
.conta-form label {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-color);
}
.conta-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 16px 17px 16px 8px;
    font-size: 16px;
    line-height: 24px;
    color: #8C8C8C;
    min-height: 160px;
    margin: 12px 0 20px;
}
.conta-form .blue-btn {
    margin: 0;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: #fff;
}
.conta-form .blue-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/*========== all decision makers End here ==========*/

/*========== Project Search page Start here ==========*/
.pro-search {
    background-color: var(--submenu-bg);
}
.section-heading sub {
    font-size: 16px;
    line-height: normal; bottom: 0;
}
.pro-search .port-inner-img {
    position: relative;
}
.pro-search .port-inner-img .blue-bg {
    display: inline-block;
    padding: 10px 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

/*========== Project Search page End here ==========*/

/*========== About page Start here ==========*/

.light-bg {
    background-color: var(--border-color);
}
.black-text {
    color: var(--text-color);
}
.about-tabs .Decision-tabs .nav-item .nav-link {
    color: var(--text-color);
}
.about-tabs .Decision-tabs .nav-item .nav-link.active {
    background-color: #fff;
}
.sub-item-box {
    display: grid;
    grid-template-columns: 1fr 3fr;
    max-width: 980px;
    margin: auto;
    gap: 40px;
}
.sub-item-box:not(:last-child) {
    border-bottom: 1px solid #8C8C8C;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.sub-item-content .card-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 5px;
}
.sub-item-content .card-description {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}
.sub-item-content .card-description span {
    display: block;
    margin-bottom: 10px;
}
.sub-item-content .logo-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.sub-item-content .logo-list li {
    /* max-width: 20%;
    width: 20%; */
    padding-right: 27px;
    margin-bottom: 10px;
}
.sub-item-content .logo-list li:nth-child(5n+5) {
    padding: 0;
}

.docu-cont {
    max-width: 850px;
    margin: auto;
}
.docu-cont .sub-item-content figure {
    text-align: center;
    margin: 20px 0px 60px;
}

.tabs-content-inner.staff-box figure {
    background-color: var(--submenu-bg);
}
.tabs-content-inner.staff-box .decision-item>figure::before{
    content: none;
}
.heaings {
    font-weight: normal;
    font-size: 28px;
    line-height: 37px;
    color: var(--text-color);
    margin: 0px 15px 15px;
}
.decision-text.black-text p, .decision-text.black-text h3 {
    color: var(--black-bg);
}
.decision-text.black-text span {
    color: #8C8C8C;
}
.members {
    padding: 0 15px;
}
.members h3 {
    font-weight: normal;
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.members .member-list li {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.logobox {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 160px;
}
.logobox figure {
    margin: 0;
}

.thankyou-content {
    max-width: 960px;
    margin: auto;
}
.thankyou-content h4 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 5px;
}
.thankyou-content h4:not(:first-child) {
    margin-top: 40px;
}

.thankyou-content p {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/*========== About page End here ==========*/

/*========== Purchase page Start here ==========*/
.ind-regi-sec {
    position: relative;
}
.ind-regi-sec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 40px;
    background-color: var(--border-color);
}
.ind-regi-sec .section-heading-box .back-btn {
    margin-bottom: 5px;
}
.ind-regi-sec .section-heading {
    position: relative;
}
.ind-regi-sec .section-heading::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #FF4A50;
}
.purchase-sec {
    position: relative;
    padding-bottom: 250px;
}
.purchase-sec::before {
    content: "";
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--submenu-bg);
}
.purchase-sec::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 0px;
    width: 80px;
    height: 40px;
    background-color: var(--primary-color );
}
.pur-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    background-color: var(--black-bg); position: relative;
}
.pur-content:not(:last-child){
    margin-bottom: 30px;
}
.pur-content .left-panel {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}
.pur-content .boxone-inner {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.pur-content .boxone-inner h3 {
    line-height: normal;
    margin: 0;
}
.add-btn {
    display: inline-block;
    background: rgba(1, 31, 28, 0.3);
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 8px 18px;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 5px;
}
.add-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.fees-outer {
    background-color: #F5F5F5;
    padding: 40px;
    padding-left: 60px;
    position: relative;
}

.fees-outer h3 {
    font-weight: normal;
    font-size: 28px;
    line-height: normal;
    color: var(--text-color);
    position: relative;
}
.fees-outer h3::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--submenu-bg);
}
.fees-outer h3.red::before {
    background-color: #FF4A50;
}
.fees-outer h3.totle-price::before {
    background-color: var(--border-color);
}
.events-box {
    padding: 10px 0 20px;
}
.events-box span {
    font-weight: normal;
    font-size: 40px;
    display: inline-block;
    color: var(--primary-color);
}
.events-box span:not(:last-child) {
    margin-right: 40px;
}
.events-box span small {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}
.your-events li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}
.your-events li .blue-text {
    margin: 0 0 0 8px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fees-outer h3.totle-price .blue-text {
    font-size: inherit;
    font-weight: bold;
}

.chekcout-btn {
    display: inline-block;
    background: var(--primary-color);
    border-radius: 4px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    color: #fff;
}
footer.footer.border-top {
    border-top-color: var(--submenu-bg) !important;
}

/*========== Purchase page End here ==========*/

/*========== Spotlight page Start here ==========*/
.inner-bnr {
    align-items: baseline;
    min-height: 500px;
}
.spot-bnr {
    /*background-image: url('../images/spot-bnr.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sneak-bnr {
    /*background-image: url('../images/sneak-bnr.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.collaboration-sec .deci-details-inner {
    padding: 0px 0 40px;
}
.w-80 {
    max-width: 810px;
    margin: 0 auto;
}
.collab-box {
    margin-bottom: 50px; margin-top: 30px;
}
.collab-box>span {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    display: inline-block;
}
.logo-wrapper {
    display: inline-block;
    margin-left: 20px;
    clear: both;
    vertical-align: middle;
}
.logo-wrapper li {
    float: left;
}
.logo-wrapper li:not(:last-child) {
    margin-right: 20px;
}
.logo-wrapper li .logo-outer {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    padding: 9px;
    color: #808080;
}
.space {
    display: inline-block;
    padding: 1px;
    width: 100%;
}
.banner-bottom.p-bottom {
    padding-bottom: 60px;
}
/*========== Spotlight page End here ==========*/

/*========== SpeedDating page Start here ==========*/
.speeddating-bnr {
   /*background: url('../images/speed-dating-bnr.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.speeddating-sec .deci-details-inner {
    padding: 40px 0 30px;
}
.decision-listing.speeddating-list {
    padding: 40px 0 20px    ;
}
.decision-listing.speeddating-list .decision-item {
    min-width: 200px;
    width: 200px;
    padding: 0;
    max-width: 200px;
    margin-bottom: 40px;
}

.decision-listing.speeddating-list .decision-item:nth-child(3n+2) {
    margin: 0 100px;
}
/*========== SpeedDating page End here ==========*/

/*========== Industry Session page Start here ==========*/
.dark-bg {
    background-color: var(--submenu-bg);
}
.ind-cont-outer {
    max-width: 1100px;
    margin: 0 auto;
}
.ind-cont-outer p {
    color: #fff;
}
.ind-cont-outer .pur-content .boxone-inner h3 {
    margin-bottom: 16px;
}
.ind-cont-outer .pur-content .boxone-inner p {
    margin-bottom: 12px;
}

/*========== Industry Session page End here ==========*/

/*========== Meeting Point page Start here ==========*/
.lobbybox-wrapper .container {
    position: relative;
}
.lobbybox-wrapper .container::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
}
.lobbybox-wrapper .row .col-md-12::before {
    content: "";
    position: absolute;
    top: 0;
    right: 170px;
    background: url('../images/meet-righttop.svg')no-repeat center / contain;
    width: 120px;
    height: 80px;
}
.lobbybox-wrapper .row .col-md-12::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 20px;
    background: url('../images/meet-leftbot.svg')no-repeat center / contain;
    width: 120px;
    height: 80px;
}
.lobbybox-wrapper {
    min-height: 435px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lobbybox-wrapper::after {
    content: "";
    position: absolute;
    bottom: 35px;
    right: 0;
    background: url('../images/meet-rightbott.svg')no-repeat center / contain;
    width: 120px;
    height: 80px;
}
.lobby-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 24px 24px;
    max-width: 370px;
    border: 1px solid #0FB4A4;
    border-radius: 4px;
    margin: auto;
    text-align: center;
}
.lobby-box .h4 {
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin: 12px 0;
}
.lobby-box small {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #fff;
    text-align: center;
}

.lobby-popup {
    padding: 60px;
    border: 2px solid #0FB4A4;
    clear: both;
}

.lobbyimg {
    position: relative;
    border: 2px solid transparent;
}
.lobbyimg.active, .lobbyimg:hover {
    border-color: #c6d962;
}
.lobbyimg .user-name {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 8px;
    background-color: #322e2b;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.48px;
}

.exit-btn {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    float: right;
    cursor: pointer;
}

.hidden {
    display: none;
}
/*========== Meeting Point page End here ==========*/

/*========== SCHEDULE page Start here ==========*/
.section-heading-box.m-0 .section-heading { margin: 0; }
.not-after::after{ content: none; }




/*========== SCHEDULE page End here ==========*/


/* sks custom style  added on 210822 */
.filmmaker-page-content {}
.filmmaker-page-columns {display:flex; flex-wrap:wrap; justify-content:center; background:#fff;}
	.filmmaker-page-head {}
		.filmmaker-page-head h1 {color:#000;}
			.title-grey-bg {}
				.title-grey-bg h2 {color:#000;}
		.left-column-content {}
			.filmmaker-page-columns .w-col {float:none;}
		.about-filmmaker-text {color:#000;}
			.about-filmmaker-text p {line-height:1.4em; font-size:18px;}
.film-list-info {color:#000;}
.collections-template-default {color:#000;}
	.collections-template-default .category-strip > .w-row {display:flex; flex-wrap:wrap; gap:10px;}
		.collections-template-default .w-row .card {width:calc(25% - 15px); padding:0;}
			.collections-template-default .w-row .card a {}
				.collections-template-default .w-row .card a h2 {padding:.5em; height:auto;}
				.collections-template-default .w-row .card a > * {color:#000;}
				.collections-template-default .w-row .card a.button._2 {color:#fff; background:#000; padding:0.2em .5em}
				.collections-template-default .w-row .card a.button._2 .secondary-btn-text {color:#fff}

			.card-info-columns.w-row {display:flex; flex-wrap:wrap; align-items:flex-end; padding:0 0 1em;}
				.card-info-columns.w-row > * {color:#fff;}
				.card-info-columns.w-row > div {padding:0 .5em;}
				.card-info-columns.w-row .film-page-btn {display:flex; justify-content:space-between; width:100%; margin-top:15px;}
					.card-info-columns.w-row .card-director-line {height:auto;}
					.card-info-columns.w-row .sks-custom-width {width:55%;}
						.CapDetails {}
						.card-details {color:#000}
	
.woocommerce-page label, .woocommerce-page h3, .woocommerce-page h2, .woocommerce-page table.shop_table {color:#000!important;}
	


/* login page */
.sks-are-squire {position:absolute; }
.squire-1 {top:25vh; left:0;}
.squire-2 {left:119px; top:65vh;}
.squire-2-2 {left:159px; top:calc(65vh - 40px)}
.squire-3 {left:119px; top:calc(25vh + 40px)}
.squire-4 {left:0; top:90vh;}
.squire-5 {left:0; top:65vh;}
.squire-6 {right:0; top:25vh;}
.squire-7 {right:119px; top:25vh;}
.squire-7-7 {right:calc(5vw + 40px); top:calc(75vh - 40px)}
.squire-8 {right:10vw; top:50vh;}
.squire-9 {right:5vw; top:75vh;}
.modal-background {background-color:#042F2A!important;}

/**/
.gform_confirmation_message_1.gform_confirmation_message {color:#fff;}
/* slider */
.sks-wrapper {}
	.sks-wrapper h1.slider-title, .sks-wrapper .slider-date, .sks-wrapper .slider-description {color:#000; }

@media all and (max-width:768px){
	.collections-template-default .w-row .card {width:32%;}
	.schedule-card-content {
    width: 100%; 
}
}

@media all and (max-width:650px){
	.single .category-strip-head h1 {line-height:1.4em!important; margin-top:35px}
	.collections-template-default .w-row .card {width:47%;}
}

@media all and (max-width:450px){
	.collections-template-default .w-row .card {width:95%;}
}