
@font-face {
  font-family: 'Montserrat Light';
  src: url(../fonts/Montserrat-Light.ttf);
} 
@font-face {
   font-family: 'Montserrat Bold';
   src: url(../fonts/Montserrat-Bold.ttf);
 } 

body {
  font-family: 'Montserrat Light';
}



h1,h2,h3,h4{
  font-family: 'Montserrat Bold';
}

a, p{
  font-family: 'Montserrat Light';
}

h1 {
  margin: 0 0 2%;
  font-weight: bold;
  color: #fff;
  transition: all .3s ease;
  text-align: center;
  text-transform: capitalize;
}

h2 {
  margin: 5% 0;
  font-weight: bold;
  color: #1c3c91;
  transition: all .3s ease;
  text-align: center;
  text-transform: uppercase;
}

.intro p {
  text-align: justify;
}

.counting h3{
  text-transform: capitalize;
}

.counting a {
  margin-top: 4%;
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}

header a:before, header a:after, header a > span:before, header a > span:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}

.hv3 {
  display: inline-flex;
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}
.hv3:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translateX(-100%);
}
.hv3:hover:before {
  transform: translateX(0);
}

a.hv3:hover{color: #fff;}

.d-right {
  width: 45%;
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
}

.d-right a {
  margin-right: 6%; /* Space between the link and the image */
}



img{width: 100%;}

header {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5% 4%;
  width: 100%;
  box-sizing: border-box;
  color: #FFF;
  background: #00000080;
  z-index: 9;
}

.fixed-top {
  background: url('../image/header.jpg');
  background-size: cover;
  color: #fff;
  box-shadow: 0 0 8px rgb(0 0 0 / 23%), 0 6px 20px 0 rgb(0 0 0 / 23%);
}

header img {
  height: 60px;
  width: auto;
}

.lg2{
  display: none;
}

.fixed-top .lg1{
  display: none;
}

.fixed-top  .lg2{
  display: block;
}


header nav {
  width: 100%;
  padding-left: 4%;
  display: flex;
}

.logo img{
  margin-right: 10%;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  width: 55%;
}

header nav ul li {
  list-style: none;
  text-transform: capitalize;
  display: block;
  margin: 0 auto;
}

header nav ul li a {
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  display: block;
}




.fixed-top nav ul li a:hover,
.fixed-top header nav ul li a.active {
  color: #fff;
}
.menu-toggle {
  color: #fff;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  header {
    padding: 0 20px;
    position: fixed;
        z-index: 99;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 1%;
  }
  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 50px);
    background: #1c3c91;
    top: 50px;
    left: -100%;
    transition: 0.5s;
    display: block;
  }
  .d-right {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 5%;
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
    text-align: center;
    width: 100%
  }
  header nav ul li a {
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
}




/* start banner */

.banner img{
  width: 100%;
}

.abtbg {
  border-radius: 25px;  
}

.datas {
  display: grid;
  gap: 3% 5%;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 7%;
}

.atts {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 8px rgb(0 0 0 / 23%), 0 6px 20px 0 rgb(0 0 0 / 12%);
}
.atts img {
  display: block;
  width: 20%;
  margin: auto;
}
.atts p {
  font-weight: bold;
  text-transform: capitalize;
  margin-top: 2%;
  margin-bottom: 0;
}

.atts .counter {
  font-family: 'Montserrat Bold';
  font-size: 45px;
}

/* start countdown */

@layer demo, countdown;

@layer countdown{
  .countdown {
    width: fit-content;
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1rem;
    margin-top: 2%;
  }
  .countdown > .part {
    display: grid;
    gap: 0.5rem;
  }
  .countdown > .part > .number {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #f86767;
    font-size: 2.9rem;
    padding: 15px;
    position: relative
  }
  .text{
    font-size: 0.9rem;
    margin-top: -40%;
  }
  .countdown > .part.days { --num: 365 }
  .countdown > .part.hours { --num: 24 }
  .countdown > .part:where(.minutes, .seconds) { --num: 60 }
  .countdown > .part > .number::after{
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -0.5);
    border-radius: inherit;

    --degree: calc(360deg / var(--num) * (var(--num) - var(--value,0)));
    background-image: conic-gradient(#fff var(--degree), transparent calc(var(--degree) + 0.1deg));

    --border-size: 4px;  
    --mask-image: radial-gradient(100% 100%, transparent calc(50% - var(--border-size)), black calc(50% - var(--border-size) + 1px));
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
  }
  .countdown > .part > .text {
    text-align: center;
    opacity: 0.75
  }
}
@layer demo {
  * { box-sizing: border-box }
  body {
    background-color: #060D1F;
    color: #FEFEFE;
    font-family: system-ui, sans-serif;
    text-align: center;
  }
  h2 {
    margin-top: 4rem;
  }
}

.start h1 {
  margin-bottom: 9%;
}

.start {
  margin-top: -15%;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
    z-index: 9;
}

.counting{
  margin-bottom: 5%;
}

.counting .col-md-8 {
  padding: 2% 0;
  color: #fff;
  background: url(../image/bg3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  border-radius: 25px;
}
.counting .col-md-8{  
  padding: 2% 0;
  color: #fff;
  background: url('../image/bg5.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
}

/* end countdown */

/* event section */

.evesec {
  display: grid;
  gap: 6% 2%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 5%;
  margin-bottom: 5%;
}

.eveico {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 8px rgb(0 0 0 / 23%), 0 6px 20px 0 rgb(0 0 0 / 18%);
}

.eveico img {
  height: 100px;
  width: auto;
  margin-bottom: 5%;
}

.eveico h4{
  text-align: center;
  color: #113f73;
  font-size: 1rem;
}
.eveico p{
  text-align: left;
}

/* start speakers */

.carousel-wrap {
  margin: 90px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 20px;
  font-weight: normal;
  border: 2px solid #1c3c91;
  color: #1c3c91;
  padding: 10px;
  border-radius: 25px;
}

.owl-nav .owl-prev {
  left: -10%;
}

.owl-nav .owl-next {
  right: -10%;
}

.theagenda h3{
  font-size: 16px;
  color: #1c3c91;
}

.owl-carousel{
  margin-bottom: 5%;
}

.speak .speaker {
  margin-bottom: 3%;
  cursor: pointer;
}


.modal-content{
  background: url('../image/bg4.jpg');
  background-size: 100% 100% ;
  padding: 2%;
  color: #fff;
  border-radius: 25px;
}


.theclose {
  position: absolute;
  right: 5%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 99;
}

.theclose span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.theclose span::before, 
.theclose span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transform: rotate(90deg);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 4rem 1rem 1rem;
}

.modal-body .col-md-8 {
  text-align: justify;
}

.modal .fa-times {
  font-size: 40px;
  color: #fff;
  padding: 1%;
  float: right;
  cursor: pointer;
}

.modal .speaker p{color: #fff;}
.modal .speaker .title{color: #fff;}

.speaker img {
  border-radius: 50%;
  width: 80%!important;
  display: block;
  margin: auto;
  margin-bottom: 2%;
}

.speaker p,.speaker2 p{
  font-family: 'Montserrat Bold';
  font-weight: bold;
  text-transform: uppercase;
  color: #1c3c91;
  margin-bottom: 0;
}

.speaker .title, .speaker2 .title{
  color: #1c3c91;
  font-size: 15px;
}

.speaker2 {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.speaker2 img {
  width: 35%;
  margin-right: 20px; 
  border-radius: 50%;
}

.item.speaker {
  cursor: pointer;
}

.speaker2 section {
  flex-grow: 1; 
}

.theagenda{
  border: 2px solid #1c3c91;
}


.intro #more {display: none;}
.intro span{cursor: pointer;}

.hidden {
  display: none;
}
.speak input {
  min-width: 300px;
  position: relative;
  display: block;
  float: right;
  margin-bottom: 5%;
  border: none;
  border-bottom: 2px solid #1c3c91;
}
.speaker input:active{
  border: none;
}

/* end speakers */

/* start partners */

.noslid {
  text-align: center;
}

.noslid img {
  width: auto;
  height: 100px;
  margin: auto 2%;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.partners h2{
  text-transform: capitalize;
}



/* end partners */

/* start research */

.research{
  padding: 5% 0;
}

.rch{
  background: #fff;
  text-align: justify;
  padding: 5%;
  border-radius: 15px;
}

.sessions {margin-bottom: 5%;}

.thesession {
  padding: 0 10%;
}

.thesession img {
  margin-bottom: 5%;
  border-radius: 35px;
}

.thesession .name{
  color: #1c3c91;
  font-weight: bold;
}

/* end research */

/* my buttons */


.livel {
  min-width: 100px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  cursor: pointer;
  background: #e3120b;
  color: #fff;
  font-family: 'Montserrat Bold';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  z-index: 0;
  border: 3px solid #e3120b;
  border-radius: 25px;
}

.livel:hover:before {
  transform: scaleX(1);
}
.livel:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  color: #f04847;
  background: #113f73;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s ease-out;
}
a.livel:hover {
  color: #fff;
}

.btn1 {
  display: inline-block;
  position: relative;
  padding: 1% 5%;
  cursor: pointer;
  background: #1c3c91;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  z-index: 0;
  border: 3px solid #1c3c91;
  border-radius: 25px;
}

.btn1:hover:before {
  transform: scaleX(1);
}
.btn1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s ease-out;
}


.btn2 {
  display: inline-block;
  position: relative;
  padding: 1% 5%;
  cursor: pointer;
  background: #fff;
  color: #1c3c91;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  z-index: 0;
  border: 3px solid #fff;
  border-radius: 25px;
}

.btn2:hover:before {
  transform: scaleX(1);
}
.btn2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  color: #fff;
  background: #1c3c91;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s ease-out;
}
a.btn2:hover {
  color: #fff;
}

.btn3 {
  display: inline-block;
  position: relative;
  padding: 3% 5%;
  cursor: pointer;
  background: #fff;
  color: #1c3c91;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  z-index: 0;
  border: 2px solid #1c3c91;
  border-radius: 25px;
}

.btn3:hover:before {
  transform: scaleX(1);
}
.btn3:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  color: #fff;
  background: #1c3c91;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s ease-out;
}
a.btn3:hover {
  color: #fff;
}

.research{
  background: url('../image/bg1.png');
  background-size: 100% 100%;
}

.research h2{
  color: #fff;
}

.speech{
  background: url('../image/bg2.png');
  background-size: 100% 100%;
  text-align: center;
  color: #fff;
  padding: 6% 0 4%;
  margin-bottom: 4%;
}

.faqs {
  margin-bottom: 5%;
}

.faqs h2{
  margin: 0;
}

.accordion-item {
  border: none;
}

.accordion-button::after {
  margin-left: 3%;
}

/* start tabs */

.nav-tabs .nav-item{
  width: 50%;
}
.nav-item .nav-link{
  width: 100%;
  border: none;
  isolation: isolate;
  padding: 4% 0;
  color: #1c3c91;
}



.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #ffffff;
  box-shadow: none;
}

.theagenda .accordion-item {
  border-bottom: 1px solid black;
}


.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
}

 .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #1c3c91;
  color: #fff;
}

.nav-tabs {
  border-bottom: none;
}

.theagenda ul{
margin-bottom: 3%;
}

.tab-content li{
  list-style: none;
  display: inline;
  margin-right: 4%;
  color: #1c3c91;
  font-family: 'Montserrat Bold';
}

.tab-content ul img{
  width: 4%;
  margin-right: 2%;
}

li.sess {
  color: #fff;
  background: #d84140;
  padding: 5px 10px;
  border-radius: 15px;
}

li.cale {
  position: relative;
  float: right;
  text-align: right;
  margin-right: 1%;
  font-family: 'Montserrat light';
}
.cale img {
  width: 15%!important;
  margin-right: 0%;
  margin-left: 5%;
}

ul#myTab {
  margin-bottom: 2%;
  border-bottom: 2px solid #1c3c91;
}
.agenda {
  margin-bottom: 5%;
}

h6 img{
  width:20px !important;
}


.space {
  min-height: 5vh;
}

.agenda .accordion-button {
  position: relative;
  display: block;}


/* end tabs */

/* footer */

.footer{
  background: url('../image/bg3.png');
  background-size: 100% 100%;
  text-align: center;
  margin-top: 5%;
  padding: 4% 0 3%;
  color: #fff;
}

.footer h4 {
  text-transform: capitalize;
  font-size: 19px;
  margin-bottom: 5%;
}

.footer input[type="email" i] {
  padding: 3% 2%;
  border-radius: 25px 0 0 25px;
  width: 70%;
  float: left;
  border: none;
}
.footer input[type="submit" i] {
  padding: 3% 2%;
  border-radius: 0 25px 25px 0;
  background: #fff;
  width:30%;
  border: none;
  transition:  .3s ease-in;
}

.footer input[type="submit" i]:hover {
  background: #1c3c91;
  color: #fff;
  transition:  .35s ease-out;
}

.copyright {
  margin-top: 4%;
}

ul.quicklinks {
  padding-left: 0;
  margin-bottom: 5%;
}

  .quicklinks li, .quicklinks a {
    font-family: 'Montserrat Bold';
    list-style: none;
    display: inline-block;
    margin: 1% 2%;
    font-weight: bold;
  list-style: none;
  display: inline-block;
}

.quicklinks a {
  width: 100%;
}
.quicklinks a:hover {color: #e3120b;}

/* social media  */

  .ex3  a {
    margin: 0 10px;
    color: #fff;
  }


  .ex3 i:hover {
    color: #fff;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(-10px);
  }

  .ex3 svg:hover {
    color: #fff;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(-10px);
  }


  .show-hide {
    text-align:center;
  }
  .read-more-wrap {
    opacity:1;
    -moz-transition: opacity 0.4s ease-in-out;
      -o-transition: opacity 0.4s ease-in-out;
      -webkit-transition: opacity 0.4s ease-in-out;
      transition: opacity 0.4s ease-in-out;
  }
  .show-hide p {
    margin-top:15px;
    max-width:800px;
    margin:0 auto;
    text-align:left;
  }
  .read-more-state {
    display: none;
  
  }
  
  .read-more-target {
    margin-top:2rem;
    opacity: 0;
    max-height: 0;
    font-size: 0;
    -moz-transition: opacity 0.4s ease-in-out;
      -o-transition: opacity 0.4s ease-in-out;
      -webkit-transition: opacity 0.4s ease-in-out;
      transition: opacity 0.4s ease-in-out;
  }
  
  .read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
  }
  
  .read-more-state ~ .read-more-trigger:before {
    content: 'Read More';
  }
  
  .read-more-state:checked ~ .read-more-trigger:before {
    content: 'Read Less';
  }
  
  .read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
    margin-top:15px;
    margin-bottom:15px;
  }
  .read-more-trigger:hover {
    background:#666;
    color:white;
  }

/* registart form */

.wpcf7-form .fieldset-cf7mls .cf7mls-btns {
  text-align: center;
}

li.country {
  color: black;
}

.fieldset-cf7mls .cf7mls_next {
  float: none;
}
.wpcf7-not-valid-tip {
  color: #fff;
}
.fieldset-cf7mls-wrapper div.wpcf7-validation-errors {
  color: #fff;
}

form .accordion-button::after {
  margin-left: auto;
}

form .accordion-button {
  color: #fff;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

/* magic happens here */

svg.svg-inline--fa.fa-x-twitter {
    height: 30px;
    margin-top: -2%;
}

@media  (max-width:768px) {

  .evesec {
    display: grid;
    gap: 6% 2%;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 5%;
    margin-bottom: 5%;
}
.footer h4 {
  margin-top: 5%;
}
  
}


@media  (max-width:500px) {
    
    .start {
    margin-top: 0%;
    }

.start h1{
  margin-bottom: 2%;
  color: #1c3c91;
}

.rch .btn3{
  margin: 1.5%;
}

  .countdown > .part > .number{
    font-size: 2rem;
  }
.text {
  font-size: 0.6rem;
}

  .evesec {
    display: grid;
    gap: 6% 2%;
    grid-template-columns: 1fr 1fr;
    margin-top: 5%;
    margin-bottom: 40%;
}

.datas {
  grid-template-columns: 1fr 1fr;
}

.noslid img {
    height: 50px;
}



}



@media (max-width:370px) {

  .livel {
    min-width: 80px;
  }
  
 .d-right img {
    height: 40px;
    width: auto;
}
    .countdown > .part > .number{
      font-size: 1.6rem;
    }
  .text {
    font-size: 0.5rem;
  }

  
.datas {
  grid-template-columns: 1fr;
}
}
