* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #232020;
	overflow: hidden;
    transition: all .3s ease-out;
    padding: 0!important;
}

a {
    text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    font-size: 15px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background-color: #e2662d;
}

textarea.form-control {
    resize: none;
    height: 68px;
}

.form-control:focus, button:visited, button.active, button:hover, button:focus {
    outline: none !important;
    text-decoration: none;
    border-color: #c2d0e8;
    box-shadow: 0 0 4px 3px #31009114;
}

a:hover, a:focus, a:visited, a.active {
    outline: none !important;
    text-decoration: none;
}

.btn-light.focus, .btn-light:focus {
    box-shadow: none !important;
}

:focus {
    outline: none !important;
}

/* Change the white to any color */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #4c1618 inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: white !important;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle, .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.dropdown-menu {
    transform: translate3d(0px, 0px, 0px);
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    background: #862125;
}

.form-control:focus, button:visited, button.active, button:hover, button:focus {
    outline: none;
    text-decoration: none;
}

.form-control {
    outline: none;
    box-shadow: 0 0 4px 2px #00000026;
    border-radius: 4px;
    font-size: 15px;
    color: #ffffff;
    padding: 8px 14px !important;
    background: #4c1618;
    border: none;
}

.form-control:focus {
    box-shadow: 0 0 4px 3px #31009114;
    background: #842124;
    color: #fff;
}

.dropdown.bootstrap-select.form-control {
    padding: 0 !important;
    background: transparent;
    height: calc(1.5em + 0.75rem + 2px);
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef !important;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    background: #862125;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #4c1618;
}

.btn-light {
    background-color: #4c1618;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    color: #fff !important;
    padding: 7px 14px !important;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle, .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    background: #862125;
}

.btn-light:hover {
    background-color: #862124;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #c2d95e;
    background-color: #c2d95e;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #ffffff !important;
    text-decoration: none;
    background-color: #862125;
}

.bootstrap-select .bs-ok-default:after {
    border-width: 0 0.2em 0.2em 0;
}

.dropdown-menu {
    padding: 0;
    margin: 0.125rem 0 0;
    font-size: 14px;
    border-radius: 0;
    z-index: 99999;
}

/****modal****/
.modal-backdrop {
    z-index: 999999;
}

.modal {
    z-index: 9999999;
}

.modal-open {
    padding: 0 !important;
    overflow: hidden !important;
}

.modal-body {
    padding: 0;
}

/***********go-top****/
#button {
    display: inline-block;
    background-color: #e2662d;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f117";
    font-family: uicons-solid-rounded !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    font-size: 30px;
    line-height: 50px;
    color: #ffffff;
}

#button:hover {
    cursor: pointer;
    background-color: #050605;
}

#button:active {
    background-color: #262525;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover::after {
    color: #fff;
}

/******custom-button****/
.btncustom {
    z-index: 1;
    overflow: hidden;
    background: #ddba40;
    position: relative;
    padding: 10px 16px;
    border-radius: 5px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #441d1e !important;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    display: flex;
    align-items: stretch;
    font-size: 15px;
}

.btncustom.yellow:before {
    /* content: ""; */
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #c76634;
    color: #fff;
    z-index: -1;
    transition: all 0.2s ease;
}

.btncustom.yellow:hover {
    background: #c76634;
    transition: all 0.2s ease;
    color: #fff !important;
}

.btncustom.yellow:hover:before {
    width: 100%;
    transition: all 0.2s ease;
}

.btncustom.dark {
    background: #ddba40;
    color: #641213 !important;
    display: inline-flex;
    padding: 9px 23px;
    font-size: 18px;
    margin-top: 13px;
    align-items: flex-start;
}

.btncustom.dark:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #c76634;
    color: #fff;
    z-index: -1;
    transition: all 0.2s ease;
}

.btncustom.dark:hover {
    background: #c76634;
    transition: all 0.2s ease;
    color: #fff !important;
}

.btncustom.dark:hover:before {
    width: 100%;
    transition: all 0.2s ease;
}

.btncustom i {
    line-height: 1;
    color: #441d1e;
    margin-right: 5px;
    font-size: 19px;
}

.btncustom.dark i {
    color: #641213;
    font-size: 23px;
}

.btncustom:hover i {
    color: #fff;
}

.btncustom.dark:hover i {
    color: #fff;
}

/****header*****/
header {
    background: linear-gradient( 180deg, rgba(156, 22, 29, 1) 0%, rgba(147, 22, 26, 1) 100% );
}

.header_top_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 25px;
}

.top_contact ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.top_contact ul li:nth-last-child(-n + 2) {
    margin: 0;
}

.top_contact ul li a {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #441d1e;
    font-weight: 600;
}

.top_contact ul li a i {
    display: inline-block;
    line-height: 0;
    font-size: 22px;
    color: #ddba40;
    margin-right: 10px;
    background: #441d1e;
    padding: 10px;
    border-radius: 26px;
}

.top_contact ul li span {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #441d1e;
    font-weight: 600;
}

.top_contact ul li span i {
    display: inline-block;
    line-height: 0;
    font-size: 22px;
    color: #ddba40;
    margin-right: 10px;
    background: #441d1e;
    padding: 10px;
    border-radius: 26px;
}

.top_contact ul li {
    width: 33.33%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.logo {
    margin-right: 30px;
    position: relative;
}

.top_contact ul li:nth-last-child(2) {
    margin-right: 30px;
}

.logocii img {
    width: 249px;
}

.logoazad img {
    width: 260px;
}

.logo span {
    display: block;
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 69px;
    bottom: -14px;
}

/*****nav****/
nav.navbar {
    padding: 0;
}

.nav_bar {
    background: #641213;
    padding: 10px 0;
    position: sticky;
    top: 0;
    box-shadow: 0px 3px 4px 2px #00000087;
    z-index: 99;
}

nav.navbar a.nav-link {
    color: #debc40 !important;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

nav.navbar li.active a.nav-link {
    color: #fff !important;
    transition: all 0.2s ease;
}

nav.navbar ul li:not(:last-child) {
    margin-right: 5px;
}

nav.navbar a.nav-link:hover {
    color: #fff !important;
}

.reg_button {
    display: flex;
}

/****banner****/
.banner {
    position: relative;
    background: #fdfbe4;
    overflow: hidden;
    height: 1430px;
}

.banner .bx-wrapper {
    border: none;
    margin: 0;
}

.banner .bx-wrapper .banner_image img {
    width: 100%;
    height: 950px;
}

.banner_image {
    width: 100%;
    padding: 5px;
    background: #fdfbe4;
    border-radius: 5px;
}

.banner_image img {
    width: 100%;
}

.banner_content {
    position: absolute;
    bottom: 106px;
    width: 50%;
    left: 4%;
}

.banner_content h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 100px;
    text-transform: uppercase;
}

.banner_content span {
    display: block;
    line-height: 1;
    font-size: 69px;
    font-weight: 600;
    margin: 4px 0;
    color: #fff;
}

.banner_content strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 78px;
    line-height: 1;
    display: block;
}

.banner_content a {
    padding: 14px 23px !important;
    font-size: 25px !important;
}

.banner_content a i {
    font-size: 33px !important;
}

/*****about*****/
.about {
    padding: 90px 0;
    background: #fdfbe4;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.about:before {
    content: "";
    position: absolute;
    background: url(../image/pecowater.png);
    width: 426px;
    height: 428px;
    left: 0;
    bottom: -10px;
    background-size: 100% 100%;
    z-index: -9;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.09;
}

.cii_about:before {
    background: url(../image/pecowater2.png);
    width: 411px;
    height: 492px;
    bottom: 0;
    right: 0;
    left: unset;
    opacity: 0.3;
}

div#v-pills-tab {
    justify-content: center;
    margin-bottom: 30px;
}

.about_box_content h2 {
    font-weight: 700;
    color: #441d1e;
    margin-bottom: 10px;
    /* font-family: "PT Serif", serif; */
}

.about_box_content p {
    color: #000;
    font-size: 17px;
    text-align: justify;
}

.about_box_content p:not(:last-child) {
    margin-bottom: 17px;
}

.about_box_content_image {
    position: sticky;
    top: 70px;
}

div#v-pills-tab a.active {
    background: #c76634;
    color: #fff !important;
}

div#v-pills-tab a.active i {
    color: #fff;
}

div#v-pills-tab a:not(:last-child) {
    margin-right: 79px;
}

.about_box_content_image ul {
    margin-top: 8px;
    border-right: 1px solid #ddba40;
    padding-right: 5px;
}

.about_box_content_image ul li {
    color: #000;
    font-size: 16px;
    position: relative;
    margin-left: 17px;
}

.about_box_content_image ul li:not(:last-child) {
    margin-bottom: 6px;
}

.about_box_content_image span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    display: block;
    margin-top: 20px;
    border-bottom: 1px solid #ddba40;
    font-family: "PT Serif", serif;
}

.about_box_content_image ul li:before {
    content: "";
    position: absolute;
    background: #441d1e;
    height: 8px;
    width: 8px;
    left: -17px;
    top: 7px;
    border-radius: 30px;
}

/*****register-now****/
.register_now {
    padding: 65px 0;
    text-align: center;
    background: linear-gradient(180deg, rgb(100 18 19) 0%, rgb(100 18 19) 100%);
}

.register_now_box {
    width: 100%;
}

.register_now_box h3 {
    font-size: 46px;
    text-transform: uppercase;
    color: #ddba40;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 22px;
}

.register_now_box span {
    display: block;
    color: #ffffff;
    font-size: 23px;
}

/*****commete-member****/
.committee_members_title {
    text-align: center;
    color: #641213;
}

.committee_members_title h4 {
    font-weight: 700;
    /* font-family: "PT Serif", serif; */
    line-height: 1;
    font-size: 34px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.committee_members_title span {
    color: #000;
    font-size: 23px;
    display: block;
    margin-bottom: 7px;
}

.committee_members_title {
    margin-bottom: 35px;
    border-bottom: 2px solid #641213;
    line-height: 1;
    padding-bottom: 26px;
}

.committee_members_title img {
    width: 60px;
    margin-bottom: 15px;
}

.committee_members {
    padding: 90px 0;
    background: #fdfbe4;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.committee_members:before {
    content: "";
    position: absolute;
    background: url(../image/pecowater.png);
    width: 426px;
    height: 428px;
    left: 0;
    bottom: -7px;
    background-size: 100% 100%;
    z-index: -9;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.09;
}

.committee_members:after {
    content: "";
    position: absolute;
    background: url(../image/pecowater.png);
    width: 426px;
    height: 428px;
    right: 0;
    bottom: -7px;
    background-size: 100% 100%;
    z-index: -9;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.09;
    transform: rotateY(180deg);
}

.committee_members_box_image {
    margin: 0 auto 20px;
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 200px;
    height: 200px;
    background: #ffffffa6;
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 14%);
    position: relative;
    border: 3px solid #c59a40;
    border-radius: 118px;
	z-index: 9;
}

.committee_members_box_image img {
    width: 109%;
    margin-bottom: -7px;
    z-index: 9;
}

.committee_members_box {
    text-align: center;
    position: relative;
    height: 100%;
}

.committee_members_box_item {
    align-items: center;
    height: 100%;
}

.committee_members_box_image:before {
    content: "";
    grid-area: card;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 4rem 1rem rgb(0 0 0 / 15%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.committee_members_box_name span {
    /* text-transform: uppercase; */
    font-weight: 700;
    /* font-family: "PT Serif", serif; */
    line-height: 1;
    font-size: 18px;
    display: block;
    color: #641213;
}

.committee_members_box_name {
    margin-bottom: 5px;
}

.committee_members_box_designation span {
    color: #441d1e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    width: 80%;
    margin: auto;
}

.committee_members_box_designation {
    margin-bottom: 10px;
}

.committee_members_box_organisation span {
    color: #e2662d;
    font-weight: 700;
    font-size: 18px;
}

.committee_members_box_social {
    position: absolute;
    right: 89px;
    top: 154px;
    z-index: 9;
}

.committee_members_box_social a {
    color: #ffffff;
    font-size: 22px;
    background: #98161b;
    line-height: 1;
    display: flex;
    padding: 9px;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.committee_members_box_social a:hover {
    background: #ddba40;
    color: #441d1e;
    transition: all 0.2s ease;
}

/*****speakers*****/
.agenda {
    padding: 90px 0;
    background: linear-gradient( 180deg, rgba(156, 22, 29, 1) 0%, rgba(147, 22, 26, 1) 100% );
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.agenda .agenda_box_content:after {
    content: "";
    position: absolute;
    background: url(../image/pecowater2.png);
    width: 426px;
    height: 428px;
    right: 0;
    bottom: 0;
    background-size: 100% 100%;
    z-index: -9;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.agenda .committee_members_title h4 {
    color: #fdfbe4;
}

.agenda .committee_members_title {
    border-color: #fdfbe4;
}

.agenda .committee_members_title h4 span {
    display: inline-block;
    font-size: 39px;
    color: #fdfbe4;
}

/****aganda*****/
.nav-pills a {
    border-radius: 0 !important;
    background: #3a3a3a47 !important;
    border: 1px solid #641213;
    padding: 12px 90px;
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    /* font-family: "PT Serif", serif; */
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
}

.nav-pills a:not(:last-child) {
    border-right: none;
}

.nav-pills {
    justify-content: center;
}

.nav-pills a span {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-top: 9px;
    color: #ffffff;
}

.nav-pills a span i {
    line-height: 0;
    display: inline-block;
    margin-right: 6px;
}

.nav-pills a.active {
    background: #641213 !important;
    color: #fff !important;
}

.nav-pills a.active span {
    color: #fff;
}

.agenda_box_content {
    background: #fff;
    padding: 48px 46px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 38%);
    position: relative;
    overflow: hidden;
}

.agenda_box_content ul li {
    /* display: flex; */
    /* align-items: center; */
    margin-bottom: 18px;
    position: relative;
    z-index: 9;
}

.agenda_box_content ul li span i {
    line-height: 0;
    display: inline-block;
    margin-right: 5px;
}

.agenda_box_content ul li span:first-child {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-right: 20px;
    font-size: 18px;
    text-transform: capitalize !important;
    position: relative;
    margin-bottom: 6px;
    line-height: 1;
    color: #fff;
}

.agenda_box_content ul ul {
    padding-left: 57px;
    height: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
    transition: all 0.2s ease;
}

.agenda_box_content ul ul.showfull {
    height: auto;
    overflow: unset;
    position: relative;
    visibility: visible;
    transition: all 0.2s ease;
    z-index: 99;
}

.agenda_box_content ul ul li:not(:last-child) {
    margin-bottom: 50px;
}

.agenda_box_content ul ul li {
    margin-bottom: 0;
}

.agenda_box_content ul ul li p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #a58000;
}

.agenda_box_content ul ul li p span {
    font-family: "Nunito", sans-serif;
    font-weight: 400 !important;
    font-size: 16px !important;
    margin: 0;
    margin-top: 7px;
}

.agenda_box_content ul ul li span {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    color: #96161b !important;
}

.agenda_box_content ul li span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.agenda_box_content ul li:before {
    content: "";
    position: absolute;
    background: #000;
    height: 100%;
    width: 2px;
    left: -41px;
    top: 0;
    margin: auto;
}

.agenda_box_content ul ul li span:before {
    height: 44px !important;
}

.agenda_box_content ul ul li p span:before {
    content: none !important;
}

.agenda_box_content ul ul li strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    color: #441d1e;
    padding-top: 7px;
    text-transform: uppercase;
    font-family: "PT Serif", serif;
}

.agenda_box_content ul.showfull {
    position: relative;
}

.agenda_box_content ul.showfull:before {
    content: "";
    position: absolute;
    background: #000;
    height: 100%;
    width: 2px;
    left: 16px;
    top: -19px;
}

.agenda_box_content ul.showfull:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 2px;
    left: 16px;
    bottom: 0;
    z-index: 9;
}

.agenda_box_content ul li:after {
    content: "";
    position: absolute;
    background: #000;
    height: 2px;
    width: 27px;
    left: -40px;
    top: 0;
    bottom: 0;
    margin: auto;
}

li.top_li:before {
    content: none !important;
}

.agenda_box_content:before {
    content: "";
    grid-area: card;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 7rem 0px rgb(0 0 0 / 9%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.agenda_box_content_first_half {
    z-index: 9;
}

.agenda_box_content ul.top_ul:not(:last-child) {
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 25px;
}

ul.top_ul.no_line:before, ul.top_ul.no_line_fixed:before {
    content: none !important;
}

.agenda_box_content ul li span:last-child strong {
    font-size: 15px !important;
    color: #ddba40;
}

.agenda_box_content ul ul li p:not(:last-child) {
    margin-bottom: 15px;
}

ul.top_ul.no_line li, ul.top_ul.no_line_fixed li {
    margin-bottom: 0 !important;
}

ul.top_ul li.top_li:after {
    content: "\f10c";
    font-family: uicons-solid-rounded !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    font-size: 26px;
    line-height: 27px;
    animation: bouncee 2s infinite;
    -webkit-animation: bouncee 2s infinite;
    -moz-animation: bouncee 2s infinite;
    -o-animation: bouncee 2s infinite;
    color: #fff;
    background: transparent;
    height: auto;
    width: auto;
    top: 0;
    bottom: 0;
    left: unset;
    right: 23px;
    height: 27px;
}

ul.top_ul.no_line li.top_li:after {
    content: "\f109";
}

@-webkit-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-3px);
    }

    60% {
        -webkit-transform: translateY(-2px);
    }
}

@-moz-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-3px);
    }

    60% {
        -moz-transform: translateY(-2px);
    }
}

@-o-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateX(0);
    }

    40% {
        -o-transform: translateY(-3px);
    }

    60% {
        -o-transform: translateY(-2px);
    }
}

@keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-2px);
    }
}

li.top_li {
    background: #9b161c;
    padding: 8px 26px;
    border-radius: 7px;
    cursor: pointer;
}

ul.top_ul.no_line:after {
    height: 0;
}

ul.top_ul.no_line_fixed li.top_li:after {
    content: none !important;
}

ul.top_ul.no_line_fixed:after {
    content: none;
}
.agenda_box_content ul li.start_agenda span {
    margin: 0 !important;
    text-transform: uppercase !important;
}
/***sponser****/
.sponsors {
    padding: 90px 0;
    background: #ffffff;
    border-bottom: 2px solid #e5e5e573;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.sponsors_title h4 {
    text-align: center;
    color: #93161a;
    font-weight: 500;
    font-size: 29px;
    text-transform: uppercase;
}

.sponsors_item {
    /* background: #fff; */
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    /* box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 17%); */
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors_item a {
    z-index: 9;
    width: 100%;
}

.sponsors_item img {
    z-index: 9;
    width: 178px;
}

.sponsors_item:before {
    content: "";
    grid-area: card;
    width: 100%;
    height: 100%;
    /* box-shadow: inset 0 0 7rem 0px rgb(0 0 0 / 2%); */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.sponsors_title {
    margin-bottom: 25px;
}

/******footer*****/
footer {
    background: #232020;
    color: #e3e3e3;
    padding: 60px 0px 0px;
    position: relative;
    z-index: 9;
}

h3.footer_address_content_box_title {
    font-size: 17px;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    color: #ddba40;
    font-weight: 500;
    line-height: 1;
}

h3.footer_address_content_box_title span {
    margin-right: 8px;
    font-size: 18px;
    color: #ddba40;
    display: inline-block;
    line-height: 0;
}

ul.footer_address_content_box_address li span {
    margin-right: 9px;
    font-size: 18px;
    color: #ddba40;
    display: inline-block;
    line-height: 0;
}

ul.footer_address_content_box_address li strong {
    display: inline-block;
    margin-right: 127px;
}

ul.footer_address_content_box_address {
    margin-bottom: 9px;
}

ul.footer_address_content_box_address li:not(:last-child) {
    margin-bottom: 8px;
}

ul.footer_address_content_box_phone li span {
    margin-right: 9px;
    font-size: 17px;
    color: #ddba40;
    display: inline-block;
    line-height: 0;
}

ul.footer_address_content_box_phone li a {
    color: #e3e3e3;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

ul.footer_address_content_box_phone li:not(:last-child) {
    margin-bottom: 4px;
}

ul.footer_address_content_box_phone {
    margin-top: 10px;
}

ul.footer_address_content_box_email li span {
    margin-right: 9px;
    font-size: 17px;
    color: #ddba40;
    display: inline-block;
    line-height: 0;
}

ul.footer_address_content_box_email li a {
    color: #e3e3e3;
    font-size: 17px;
}

ul.footer_address_content_box_email {
    margin-top: 5px;
}

.footer_address_content .footer_address_content_box:not(:last-child) {
    margin-bottom: 24px;
}

.footer_address_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer_top_part {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_links_content span {
    display: block;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 18px;
    color: #ddba40;
    font-weight: 500;
    line-height: 1.2;
}

.footer_links_content ul li a {
    color: #e3e3e3;
    font-size: 15px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.footer_links_content ul li {
    line-height: 1;
    position: relative;
    margin-left: 17px;
}

.footer_links_content ul li::after {
    content: "\f117";
    font-family: uicons-solid-rounded !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    font-weight: 600;
    color: #ddba40;
    position: absolute;
    left: -17px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(90deg);
}

.footer_links_content ul li:not(:last-child) {
    margin-bottom: 11px;
}

footer a:hover {
    color: #ddba40 !important;
    transition: all 0.3s ease-in-out;
}

.footer_copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #ffffff70;
    padding: 20px 0 20px;
}

.footer_copyright_content p span {
    display: inline-block;
    margin: 0 4px;
}

.footer_copyright_content p {
    font-size: 15px;
}

.footer_copyright_link ul {
    display: flex;
    align-items: center;
}

.footer_copyright_link ul li a {
    color: #e3e3e3;
    font-size: 15px;
    line-height: 1;
}

.footer_copyright_link ul li:not(:last-child) {
    border-right: 2px solid #ddba40;
    line-height: 1;
    margin-right: 9px;
    padding-right: 9px;
}

.footer_social span.footer_social_title {
    display: block;
    font-size: 17px;
    margin-bottom: 16px;
    color: #ddba40;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer_social ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer_social ul li a {
    background: #ddba40;
    color: #232020;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 29px;
    border: 1px solid #232020;
}

.footer_social ul li a:hover {
    color: #ffffff !important;
}

.footer_social ul li:not(:last-child) {
    margin-right: 16px;
}

.footer_copyright_content p a {
    color: #ddba40;
}

.footer_companyabout p {
    color: #ddba40;
    font-weight: 600;
    font-size: 19px;
}

.footer_address_content_box i {
    line-height: 0;
    display: inline-block;
}

.footer_address_content li {
    display: flex;
    align-items: center;
    font-size: 17px;
}

.line-one {
    display: flex;
    align-items: center;
}

.line-one div:not(:last-child) {
    margin-right: 39px;
}

/***about-cii****/
.cii_about {
    background: linear-gradient( 180deg, rgba(156, 22, 29, 1) 0%, rgba(147, 22, 26, 1) 100% );
}

.cii_about .about_box_content h2 {
    color: #fff;
}

.cii_about .about_box_content p {
    color: #fff;
}

/***fixed-social****/
#fixed-social {
    right: 0px !important;
    position: fixed;
    z-index: 9999;
    top: 210px !important;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 45px;
    position: relative;
    text-align: center;
    line-height: 53px;
    width: 45px;
    z-index: 2;
    background: #641213;
    font-size: 21px;
    transition: all 0.3s ease-out;
}

#fixed-social a span {
    left: inherit;
    line-height: 45px;
    position: absolute;
    text-align: center;
    width: 150px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
    right: 47px;
    font-size: 15px;
    background: #ffd662;
    color: #00004c;
}

#fixed-social a:hover span {
    opacity: 1;
    visibility: visible;
}

#fixed-social a:nth-child(2) span {
    width: 210px;
}

#fixed-social a:nth-child(2) {
    font-size: 23px;
}

#fixed-social a:hover {
    background: #ff1616;
    transition: all 0.3s ease-out;
}

div#fixed-social a:nth-child(1) {
    background: #00acee;
}

div#fixed-social a:nth-child(2) {
    background: #3b5998;
}

div#fixed-social a:nth-child(3) {
    background: #f09433;
    background: -moz-linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100% );
    background: -webkit-linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100% );
    background: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

section#speakers span.down {
    position: absolute;
    right: 22%;
    top: 320px;
    animation: bouncee 2s infinite;
    -webkit-animation: bouncee 2s infinite;
    -moz-animation: bouncee 2s infinite;
    -o-animation: bouncee 2s infinite;
}

section#speakers span.down i {
    color: #93161a;
    font-size: 32px;
}

@-webkit-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-5px);
    }

    60% {
        -webkit-transform: translateY(-4px);
    }
}

@-moz-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-5px);
    }

    60% {
        -moz-transform: translateY(-4px);
    }
}

@-o-keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-5px);
    }

    60% {
        -o-transform: translateY(-4px);
    }
}

@keyframes bouncee {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.sponsors_item.back_black {
    /* background: #000; */
}

.sponsors_item.back_black img {
    width: 69%;
}

.sponsors_item a span {
    display: block;
    color: #641213 !important;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
}

.sponsors_item.back_black a span {
    color: #fff;
}

#speakers #v-pills-tab-agenda a {
    background: #00000087;
}

#speakers #v-pills-tab-agenda a.active {
    background: #641213;
}

/***video-banner***/
.banner_video #myVideo {
    /* position: fixed; */
    right: 0;
    bottom: 0;
    width: 100%;
}

.banner_video {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner_video:before {
    content: "";
    position: absolute;
    background: #00000052;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.reg_button_float a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ddba40;
    color: #441d1e;
    font-size: 12px;
    border-radius: 82px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    width: 95px;
    height: 95px;
    position: relative;
    z-index: 9;
}

.reg_button_float {
    position: fixed;
    z-index: 999;
    right: 23px;
    bottom: 106px;
}

.reg_button_float a i {
    display: block;
    line-height: 1;
    font-size: 38px;
    margin-bottom: 3px;
}

.waves:before {
    position: absolute;
    background: #ddba40;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    content: "";
    display: block;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    animation: wave-animate 3s infinite ease-out;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: -9;
}

.waves:after {
    position: absolute;
    background: #ddba40;
    width: 50px;
    height: 50px;
    content: "";
    display: block;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    animation: wave-animate 3s 1.5s infinite ease-out;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -99;
}

@keyframes wave-animate {
    0% {
        transform: scale(0);
        opacity: 1;
        transform-origin: center;
    }

    100% {
        transform: scale(3);
        opacity: 0;
        transform-origin: center;
    }
}

/* MOUSE SCROLL ANIMATION */
.mouseDown {
    font-size: 0.9em;
    /* CONTROL MOUSE SIZE */
    border: 3px solid rgb(100 18 19) !important;
    display: block;
    width: 1.7em;
    height: 2.8em;
    border-radius: 0.9em;
    margin: 36px auto 0;
    text-decoration: none;
    transition: border 0.2s ease-out;
}

.mouseDown:hover {
    border: 2px solid rgba(255,255,255,0.7);
}

.mouseDown span {
    display: block;
    background: #641213;
    width: 0.5em;
    height: 0.6em;
    margin: 0.7em auto 0;
    border-radius: 32px;
}

.mouseDown span {
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
    animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    will-change: transform;
}

.mouseDown:hover span {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

@-webkit-keyframes scroll {
    0%, 20% {
        -webkit-transform: translateY(0) scaleY(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(1.2em) scaleY(1.5);
        opacity: 0.01;
    }
}

@keyframes scroll {
    0%, 20% {
        transform: translateY(0) scaleY(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(1.2em) scaleY(1.5);
        opacity: 0.01;
    }
}

.speaker_slider {
    padding: 40px 0 40px;
    text-align: center;
    background: #641213;
}


/***mobile-menu****/
.menu-btn {
    position: absolute;
    width: 33px;
    height: 28px;
    right: 4px;
    /* top: 28px; */
    border: none;
    padding: 0;
    transition: all 200ms ease-in-out;
    -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

.menu-btn__burger {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(164 170 87 / 19%);
    transition: all 200ms ease-in-out;
    -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.menu-btn__burger::before,.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(164 170 87 / 19%);
    transition: all 200ms ease-in-out;
    -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-11px);
}

.menu-btn__burger::after {
    transform: translateY(11px);
}

.menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background: 0 0;
    box-shadow: none;
   transition: all 200ms ease-in-out;
   -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px,-35px);
    transition: all 200ms ease-in-out;
    -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px,35px);
    transition: all 200ms ease-in-out;
    -webkit-transition: transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}




/****page-loader******/
.loaded {
    overflow: visible;
    transition: all .3s ease-out;
}
.preloader-wrap {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 99999;
}

.percentage {
  z-index: 100;
  border: 1px solid #ccc;
  text-align:center;
  color: #fff;
  line-height: 30px;
  font-size : 15px;
}

.loader,
.percentage{
  height: 80%;
  max-width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin : auto;
  z-index: 99;
}
.loader:after,
.percentage:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trackbar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.99;
}

.loadbar {
  width: 100%;
  height: 0;
  background: #fff; /* Stripes Background Gradient */
  position: absolute;
  top: 0;
  left: 0;
  animation: flicker 5s infinite;
  overflow: hidden;
}


.loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #641213;
}

.loader-section.section-left {
    left: 0
}

.loader-section.section-right {
    right: 0
}

.loaded .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .7s .3s cubic-bezier(.645,.045,.355,1);
    transition: all .7s .3s cubic-bezier(.645,.045,.355,1)
}

.loaded .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s .3s cubic-bezier(.645,.045,.355,1);
    transition: all .7s .3s cubic-bezier(.645,.045,.355,1)
}


.loaded .preloader-wrap {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out;
}

.loaded .loader {
    opacity: 0!important;
    z-index: -9;
    visibility: hidden;
    transition: all .3s ease-out;
}

.sponsors_item.wid-own img {
    width: auto;
}