:root {
     --main-color: #2ea9e0;
    --primary:#2ea9e0; 
    --black: #000;
    --white: #fff;
    --green: #19803f;
    --light-green:#14bd5b ;
    --dark-gray-bg:#121314;
    --yellow: #f7e34c;
    --gradient1: linear-gradient(120deg, #5f26fe 0%, #5f26fe 60%, #ee0ae5 100%);
    --gradient: linear-gradient(120deg, #5f26fe, #ee0ae5);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
}

li,
ol,
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
h2{
    font-size:1.5rem;
}
p{margin: 0;}
.container{
padding:0 20px;
}
.main-title{
    margin-bottom: 24px;
}
@media (min-width: 1200px) {
    .container {
        margin: 0 auto;
        padding: 0;
    }
}
@media (min-width: 768px) {
    .h2, h2 {
       font-size: 1.75rem;
    }
}
@media (min-width: 1200px) {
    .h2, h2 {
       font-size:2rem;
    }
}
a {
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

a:hover {
    color: var(--main-color);
}

body {
     font-family: Poppins, sans-serif;
     font-size: 16px;
     line-height: 1.4;
}
.dark-gray-bg {
    background: var(--dark-gray-bg);
}

.section-space{
    padding: 40px 0;
}
@media (min-width: 1200px) {
.section-space{
    padding: 60px 0;
}
}
.primary-color{
    color: var(--primary);
}
/** Top Links ***/
.top-head {
    background: rgb(255, 255, 255);
    padding: 5px 0px;
    border-bottom: 1px solid #ebebeb;
}

.top-menu li {
    padding: 0px 10px;
    position: relative;
}

.top-menu li:first-child {
    padding-left: 0px;
}

.top-menu li:first-child::before {
    display: none;
}

.top-menu {
    width: 98%;
}

.top-menu ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
}

.top-menu ul::-webkit-scrollbar {
    display: none;
}

.top-menu li a {
    color: rgb(124, 124, 124);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.top-menu li a:hover {
    color: var(--main-color);
}

.top-menu li:last-child {
    padding-right: 0px;
}

/** Logo section **/
header {
    /* position: absolute;
    top: 50px;
    width: 100%; */
    /* z-index: 1; */
    background: #fff;
}

.main-head {
    background: rgb(255, 255, 255);
    padding: 20px 15px;
    border-radius: 5px;
}
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.archive {
    margin-right: 15px;
    position: relative;
}

.archive-btn {
    border: 1px solid rgba(21, 25, 28, 0.2);
    padding: 6px 10px;
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}

.archive-btn i {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -4px;
}

.archive-list {
    background: rgb(249, 249, 249);
    border: 1px solid rgb(237, 237, 237);
    margin-top: 10px;
    position: absolute;
    z-index: 9;
    top: 27px;
    width: 100px !important;
max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
@media(min-width:576px){
    .archive-list{
        width: 150px !important;
    }
 
}
.archive-list.open {
  max-height: 500px; /* enough to fit content */
  opacity: 1;
}

.archive-list li a {
    padding: 5px 13px;
    margin: 0px;
    display: block;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid rgb(235, 235, 235);
}

.archive-list li a:hover {
    background: var(--main-color);
    color: var(--white);
}

.goto-bt {
    border: 1px solid rgba(21, 25, 28, 0.2);
    padding: 5.7px 10px;
    font-size: 14px;
    display: inline-block;
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 6px;
}
.back-bt {
    flex-shrink: 0;
}
.goto-bt img {
    margin-left: 8px;
    vertical-align: bottom;
}
@media screen and (max-width: 575px) {
        .main-head {
        padding: 10px 0px;
    }

    .logo img {
        max-width: 150px;
    }

    .archive {
        margin-right: 5px;
    }

    .archive-btn,
    .goto-bt {
        font-size: 13px;
        padding: 6px 4px;
    }
    .goto-bt img{
        margin-left: 4px;
    }
    .archive-btn i{
        margin-left: 3px;
    }
}

/** Banner css **/
.hero-banner{
    /* background: #115d98; */
    background: var(--gradient1);
    padding: 0 0;
    position: relative;
    padding: 40px 0 40px 0;
    position: relative;   
}

.hero-banner-inner{
position: relative;
z-index: 2;
}
.hero-banner::after{
background-image: radial-gradient(#fff 1px, transparent 1px);
opacity: 0.4;
background-size: 20px 20px;
position: absolute;
content: '';
width: 100%;
height: 100%;
top:0;
z-index: 1;
}
 .hero-banner h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
   
    text-shadow: rgb(94 5 106) 0px 3px 3px;
}
@media(min-width:991px){
    .hero-banner{
       padding: 60px 0 60px 0; 
        background: var(--gradient); 
    }
    .hero-banner h1 {
  font-size: 44px;
    }

}
.banner-info-sec{
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
     text-align: center;   
}
.banner-info,.banner-info p{
    color: var(--white);
    font-size: 16px;
     margin-bottom: 0;
     line-height: 1.6;   
}
.hero-img-sec{
    position: relative;
    height: 100%;
}
.banner-img{
    opacity: 0.9;
    max-width: 300px;
    width: 100%;
    margin: auto;
    display: flex;
    position: relative;
    margin-bottom: -40px;
    z-index: 2;
}
@media (min-width: 576px) {
       .banner-img{
         max-width: 400px;

    } 
}
@media (min-width: 992px) {
    .banner-img{
        max-width: 400px;
         margin-bottom: -60px;
    }
    .banner-info-sec{
        /* padding-top: 0; */
        text-align: inherit;
    }

}
@media (min-width: 1200px) {
    .banner-img {
        margin-right: -40px;
        
    }
  .banner-img {
    max-width: 400px;
  }
}
.banner::before{
    background: rgb(17, 93, 152, 0.1);
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top:0;
    z-index: 1;
}
a.btn-style {
  align-items: center;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-size: 18px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

a.btn-style:active,
a.btn-style:hover {
  outline: 0;
}

a.btn-style span {
  background-color: rgb(5, 6, 45, 0.7);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

a.btn-style:hover span {
  background: none;
}

a.btn-style:active {
  transform: scale(0.9);
}
/*** Stories ***/
.top-sec h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-gray);
}
.btn-more{
    background: var(--gradient);
    color: var(--white);
    padding: 8px 12px;
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
}
@media(min-width:992px){
    .btn-more{
    font-size: 15px;
    }
      
}
.btn-more:hover{
    color: var(--white);
    opacity: 0.8;

}
.stories-sec{
background: var(--white);
background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
background-size: 20px 20px;
margin-bottom: 0;
}
@media(min-width:992px){
    .stories-sec{
       /* margin-bottom: -40px;  */
    }
}
.stories-sec img {
    border-radius: 6px;
    width: 100%;
    display: block;
    margin: 6px 0 0 0;
}
.top-sec p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.stories-sec h3 a,.stories-sec h3 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 600;
}
@media screen and (max-width: 991px) {
    .stories-sec h3 a,.stories-sec h3{
    font-size: 24px;
    }
    .top-sec p {
    font-size: 16px;
}
}
@media screen and (max-width: 767px) {
    .stories-sec h3 a,.stories-sec h3{
    font-size: 20px;

    }
    .top-sec p {
    font-size: 16px;
}
}
.stories-sec h4,.stories-sec h4 a {
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    font-weight: 500; 
}
  @media (max-width: 767px){
    .stories-sec h4{
        font-size: 16px;
    }

   }


.stories-sec h3 a:hover,
.stories-sec h4 a:hover{
    color: var(--main-color);
}

.stories-sec .img-wrapper {
    border: 1px solid #838ea4;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
}
.btn-arrow{
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;  
  border-left: 8px solid white;
  margin-left: 6px;
}
/** Videos ***/

.event-video-carousel {
    padding-bottom: 50px;
    padding-top: 60px;
    margin-top: -62px;
    /* margin-top: -68px; */
}

.event-video-carousel .swiper-button-prev.swiper-button-disabled,
.event-video-carousel .swiper-button-next.swiper-button-disabled{
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
    background: inherit;
}


.event-video-carousel .swiper-button-prev,
.event-video-carousel .swiper-button-next{
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 15px;
    position: absolute;
    top: 22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
}


.event-video-carousel .swiper-button-prev:after,
.event-video-carousel .swiper-button-next:after{
    display: none;
}


.event-video-carousel .swiper-button-prev,.next-prev-section .swiper-button-prev {
    left: inherit;
    right: 55px;
    transform: rotate(180deg);
}

.event-video-carousel .swiper-slide h5 {
    font-size: 15px;
    line-height: normal;
}

.event-video-carousel .swiper-slide h5 a {
    color: var(--white);
}
.event-video-carousel .swiper-slide h5 a:hover{
    color: var(--main-color);
}
.vs-carousel .swiper-slide figure,
.swiper-slide .video-thumb {
    margin-bottom: 8px;
    position: relative;
}
.event-video-carousel .swiper-wrapper{
height: auto;
}
.event-video-carousel svg, .event-video-carousel svg {
    fill: var(--white);
    outline: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 0;
    top: auto;
    height: 3px;
    background: #404040;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00b3fe;
    /* font-size: 30px; */
}

/* .play-icon:before {
    content: "";
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

} */

img {
    max-width: 100%;
}


/**Partner Logo ***/
.event-sponcers{
background: var(--white);
/* background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
background-size: 20px 20px; */
}
.partners-name {
    font-size: 13px;
    font-family: Poppins, sans-serif;
    text-align: center;
    color: var(--dark-gray);
    opacity: .7;
    margin-bottom: 10px;
}
.partners-slides .partner-logo {
    width: 25%;
    padding: 20px;
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.partners-slides .partner-logo span{
    display: block;
    margin-bottom: 10px;
}
.partner-logo img{
    max-width:200px;
    max-height:100px;
}
@media screen and (min-width: 1200px) {
    .partners-slides .partner-logo:nth-last-child(-n+5) {
        border-bottom: none;
    }
    .partners-slides .partner-logo:nth-child(5n+1) {
        border-left: none;
    }
}
@media screen and (max-width: 1199px) {
        .partners-slides .partner-logo{
        width: 25%;
    }
}

@media screen and (min-width: 992px)  and (max-width: 1199px) {
    .partners-slides .partner-logo:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .partners-slides .partner-logo:nth-child(4n+1) {
        border-left: none;
    }
}
@media screen and (max-width: 991px) {
        .partners-slides .partner-logo {
        width: 33.333%;
    }
}
@media screen and (min-width: 768px)  and (max-width: 991px) {
    .partners-slides .partner-logo:nth-last-child(-n+1) {
        border-bottom: none;
    }
    .partners-slides .partner-logo:nth-child(3n+1) {
        border-left: none;
    }
}
@media screen and (max-width: 767px) {
        .partners-slides .partner-logo {
        width: 50%;
    }
}
@media screen and (min-width: 768px)  and (max-width: 1199px) {
    .partners-slides .partner-logo:last-child{
        border-right: 1px solid #e5e5e5;
    }
}
@media screen and (min-width: 0px)  and (max-width: 767px) {
    /* .partners-slides .partner-logo:nth-last-child(-n+1) */
    .partners-slides .partner-logo:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .partners-slides .partner-logo:nth-child(2n+1) {
        border-left: none;
    }
}

@media screen and (max-width: 575px) {
    .partners-slides .partner-logo{
        padding: 10px;
    }
    .partners-slides .partner-logo img {
        /* max-width: 90px; */
         max-width:100%;
    }
    .partners-slides .partner-logo span {
        font-size: 13px;
        font-weight: 500;
    }
}


/** Gallery**/
/* #mainGallery{min-height: 250px;background: #e9e9e9;}
#thumbGallery{min-height: 70px;} */
.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
    display: none;
}

.swiper .swiper-button-prev.swiper-button-disabled svg, .swiper .swiper-button-next.swiper-button-disabled svg {
    fill: #ccc;
}

.photo-gallery .swiper .swiper-button-prev.swiper-button-disabled, .photo-gallery .swiper .swiper-button-next.swiper-button-disabled {
    background:#fff;
    opacity: 1;
    border: 1px solid #cbcbcb;
    /* display: none; */
}
.photo-gallery .swiper .swiper-button-prev {
    transform: rotate(180deg);
    left: 10px;
}
.photo-gallery .swiper .swiper-button-prev svg, .photo-gallery .swiper .swiper-button-next svg {
    fill: #fff;
    outline:0;
}
.photo-gallery .swiper-button-prev.swiper-button-disabled svg{
    fill: #ccc;
}

    

.photo-gallery .swiper-pagination-fraction {
    color: #fff;
    font-size: 12px;
    background: #000;
    margin: 0 auto;
    width: auto;
    padding: 3px 5px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.photo-gallery {
    position: relative;
}

.photo-gallery .swiper-slide.swiper-slide-thumb-active img {
    border: 2px solid #D141FF;
}
/* .photo-gallery .mySwiper .swiper-slide img{
        height: 65px;
} */
.photo-gallery .swiper-thumbs .swiper-slide img {
    height: 70px;
    object-fit: cover;
}
@media(min-width:768px){
    .photo-gallery .swiper-thumbs .swiper-slide img{
        height: 100%;
        object-fit: cover;
    }
}
.photo-gallery .swiper .swiper-button-prev,
.photo-gallery .swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    position: absolute;
    top: calc(50% +  10px);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery .swiper .swiper-button-prev.swiper-button-disabled,
.photo-gallery .swiper .swiper-button-next.swiper-button-disabled {
    background: #fff;
    opacity: 1;
    border: 1px solid #cbcbcb;
}

.photo-gallery .swiper .swiper-button-prev {
    transform: rotate(180deg);
    left: 10px;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}
.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0 0 0;
}

@media(min-width:992px){
   .photo-gallery {
    position: relative;
    max-width: 900px;
    /* padding: 0 40px; */
    margin: auto;
} 
}
.photo-gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */

}
.bg-curve {
  background: var(--dark-gray-bg);
  color: white;
  padding: 20px 0;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  margin-top: -2px;
}
.bg-curve1 {
  background: var(--dark-gray-bg);
  color: white;
  padding: 20px 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-bottom: -2px;
}
.bg-curve2 {
  background: #dcdcdc ;
  color: white;
  padding: 2px 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-bottom: -2px;
}
/** Agenda***/
.tl-event li {
    position: relative;
    margin-bottom: 40px;
}

.tl-event li .timeline-img {
    overflow: hidden;
    border-radius: 11px;
}
.tl-event li{border-bottom: 2px dashed rgb(68, 68, 68); padding-bottom: 30px;}
.tl-event li .timeline-date {
    width: 100%;
    max-width: 90px;
    background: rgb(0, 179, 254);
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 5px 8px;
    position: relative;
    line-height: 15px;
    font-weight: 600;
}

.tl-event li .timeline-date::after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 16px solid rgb(0, 179, 254);
    position: absolute;
    right: -16px;
}

.tl-event li .timeline-date .fa-clock {
    margin-right: 6px;
    font-size: 15px;
}

.event {
    padding-left: 30px;
}

/* .tl-event::before {
    content: "";
    display: block;
    width: 1px;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    border-left: 2px dashed rgb(68, 68, 68);
    margin-left: -1px;
    height: 100%;
} */
.tl-event li .timeline-img {
    overflow: hidden;
    border-radius: 11px;
}

.tl-event li .timeline-img img {
    width: 100%;
}

.tl-event .figure-box img {
    height: 75px;
    width: 75px;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgb(47 167 223 / 73%);
}

.tl-event .heading-box h6 {
    font-size: 15px;
    font-weight: 600;
    color: rgb(223 222 222);
    font-family: "Open Sans", sans-serif;
}

.tl-event .heading-box em {
    font-size: 12px;
    color: rgb(153, 149, 149);
    font-style: normal;
    font-weight: 400;
    display: block;
    margin-top: 3px;
}
.event-schedule h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.t-box{
    border-left:1px solid #ccc;
    padding: 0px 8px;
   font-size: 16px;
   height: 20px;
   line-height: 20px;
   margin: 7px 0 0 8px;
   color: var(--white);
   white-space: nowrap; 
}
  @media(max-width:575px){
    .t-box{
    margin: 2px 0 0 8px;
      font-size: 14px;
         height: 16px;
   line-height: 16px;
    }

   }
.event-schedule h4 a{
    color: #fff;
}
@media screen and (max-width: 767px) {
    .timeline-content h4 {
        font-size: 17px;
    }
}
@media screen and (max-width: 991px) {
    .tl-event .figure-box img,
    .author-info .author-img img {
        max-width: inherit;
    }
}
@media screen and (max-width: 575px) {
     .tl-event::before {
        display: none;
    }

    .timeline-content span {
        text-align: center;
        font-size: 13px;
    }

    .timeline-content h4 {
        text-align: left;
        font-size: 15px;
    }

    .tl-event li {
        margin-bottom: 15px;
    }

    .tl-event li .timeline-date {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .tl-event li .timeline-date br {
        display: none;
    }

    .tl-event li .timeline-date::after {
        border-right: 19px solid transparent;
        border-left: 19px solid transparent;
        border-top: 16px solid rgb(0, 179, 254);
        bottom: -35px;
        right: inherit;
    }
}

.responsive-video-wrap {
    max-width: 600px;
    margin: auto;
}
.responsive-video video, .responsive-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* min-height: 270px; */
}

.promo-video {
    position: relative;
    padding-top: 56.3%;
    width: 100%;
    max-width: 600px;
    height: 0;
    overflow: hidden;
}
.promo-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.dotted-bg{
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}


/** Agend**/
.speakers-sec{
background: var(--white);
/* background-image: radial-gradient(#dcdcdc 1px, transparent 1px); */
/* background-size: 20px 20px; */
}
.sp-col figure {
    margin: 0 0 12px;
    overflow: hidden;
    /* border: 1px solid red; */
    /* max-width: 250px; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    position: relative;
}
.sp-info{
    min-height: 90px;
    margin-bottom: 12px;
}
@media(min-width:767px){
  .sp-info{
    min-height: 60px;
}  
}
.sp-col figure::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateY(0);
    /* transform: translateY(50%); */
    max-width: 250px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2ea9e0, #1b7eb6);;
    border-radius: 24px 24px 0 0;
}

.sp-col:hover figure:before {
    background: linear-gradient(180deg, #03a4d9 12.62%, #6dd1ff 74.57%);
}
.sp-col:hover span{
    color: #000;
}
.sp-col figure{
    overflow: hidden;
}
.sp-col figure img{
    position: relative;
}

.sp-col h4 {
    font-size: 15px;
    color: #333;
    text-align: center;
    transition: all .5s ease 0s;
    margin-bottom: 4px;
}

.sp-col span {
    text-align: center;
    display: block;
    font-size: 12px;
    color: #555;
}
@media(min-width:767px){
   .sp-col h4{
    font-size: 17px;
   }
   .sp-col span{
    font-size: 13px;
   }
}
/* .sp-col:hover h4 {
    color: #9b5bff;
} */
/** Footer css start here ****/
.ftr_nav_lnk,.ftr_nav_lnk:before{-webkit-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;-o-transition:.3s ease-in-out}.bt_ftr_wrp{font-family:"Poppins",verdana,trebuchet ms,arial,helvetica, sans-serif;background-color:#181818;padding:0}.ftr_cnt{align-items:flex-start;display:flex}.ftr_lhs{flex:0 0 280px;flex-shrink:0;max-width:280px}.ftr_rhs{width:calc(100% - 280px)}.ftr_nav_itm{margin:0 0 30px}.ftr_nav_ttl{color:#fff;font-size:16px;line-height:24px;margin:0 0 8px;text-transform:uppercase}.ftr_nav_ul{display:flex;flex-wrap:wrap}.ftr_nav_li{padding:0 24px 8px 0}.ftr_nav_lnk{color:#a4a4a4;display:inline-block;font-size:14px;line-height:21px;padding:0 0 0 15px;position:relative;transition:.3s ease-in-out}.ftr_btm_txt,.ftr_scl_ttl{font-size:12px;line-height:20px;color:#a4a4a4}.ftr_nav_lnk:after{content:'';display:flex;background:url('https://akm-img-a-in.tosshub.com/businesstoday/resource/img/bt_icn_grey.svg') center center/contain no-repeat;height:10px;width:10px;position:absolute;left:0;top:4px}.ftr_nav_lnk:before{content:'';left:0;bottom:-3px;width:100%;height:2px;background:#666;position:absolute;transform:scaleX(0);transition:.3s ease-in-out}.ftr_nav_lnk:hover:before{transform:scaleX(1)}.ftr_nav_lnk:hover{color:#ddd}.lts_str_lst .ftr_nav_li{flex:0 0 25%;margin:0 0 20px;max-width:25%}.ftr_lhs_lgo{display:inline-block;margin:0 0 40px}.ftr_scl_ttl{display:block;margin:0 0 12px}.ftr_scl_ul{align-items:center;display:flex}.ftr_scl_li{margin:0 12px 0 0}.ftr_scl_lnk{align-items:center;display:flex;justify-content:center;border-radius:50%;-webkit-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.ftr_scl_lnk:hover{box-shadow:0 2px 8px rgba(255,255,255,.3);transform:translateY(-5px)}.ftr_btm_wrp{border-top:1px solid #a4a4a4;padding:20px 0}.ftr_btm_ttl{color:#a4a4a4;font-size:11px;line-height:18px;margin:0 0 2px}.ftr_btm_cnt{align-items:center;display:flex;justify-content:space-between}.ftr_btm_rhs{display:flex;flex-direction:column;flex:0 0 100px;max-width:100%}.bt_txt_wrp{padding:12px 6px 60px}.bt_txt_ul{align-items:center;display:flex;overflow-x:auto;-ms-overflow-style:none;scrollbar-width:none;justify-content: space-between;}.bt_txt_ul::-webkit-scrollbar{display:none}.bt_txt_li{display:flex;flex-shrink:0;padding:0 20px 0 0}.bt_txt_lnk{display:inline-blocks}@media (max-width:1024px){.lts_str_lst .ftr_nav_li{flex:0 0 33.3%;max-width:33.3%}}@media (max-width:767px){/*.bt_ftr_wrp{padding:0 20px}.bt_ftr_wrp.bt_ftr_gap{padding-bottom:90px;}*/.ftr_cnt{flex-direction:column;flex-wrap:wrap}.ftr_lhs{flex:0 0 100%;max-width:100%}.ftr_rhs{margin:40px 0 0;width:100%}.ftr_lhs_lgo{margin-bottom:20px}.ftr_nav_li{flex:0 0 50%;max-width:50%}.lts_str_lst .ftr_nav_li{flex:0 0 50%;max-width:50%;margin:0}.ftr_btm_rhs{margin:0 0 0 50px}.ftr_nav_ttl{color:#fff;margin-bottom:16px}.ftr_nav_lnk:after{filter:invert(.5)}.ftr_nav_lnk{color:#777;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;padding-left:18px}.ftr_btm_wrp{padding:12px 0}.bt_txt_wrp{padding-bottom:30px; padding-left: 20px;padding-right: 20px;}}

.bottom-link{
    border-top:1px solid #a4a4a4;
        padding: 20px 0;
}
.footer-bot-nav {
    display: inline-block;
    width: 100%;
    /* border-bottom: 1px solid rgb(70, 73, 78); */
}
.footer-bot-nav ul {
    padding: 0px 0px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* .footer-bot-nav ul li {
    width: auto;
    display: inline;
    padding-left: 35px;
} */
.footer-bot-nav ul li {
flex: 1 0 auto;
position: relative;
display: flex;
justify-content: space-evenly;
}
.footer-bot-nav ul li:first-child {
    padding-left: 0px;
}
.footer-bot-nav ul li a {
    font-size: 14px;
    line-height: 20px;
    color: #ddd;
    position: relative;
    transition: all 0.5s ease 0s;
}

/* .footer-bot-nav ul li a::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 1px;
    height: 13px;
    position: absolute;
    right: -50px;
    top: 4px;
} */

.footer-bot-nav ul li::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 1px;
    height: 13px;
    position: absolute;
    right: 0;
    top: 4px;
}
.footer-bot-nav ul li:last-child::after{
    display: none;
}
/* .footer-bot-nav ul li:last-child a::after {
    display: none;
} */

.footer-bot-nav ul li a::before{
    content: '';
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #666;
    position: absolute;
    transform: scaleX(0);
    transition: .3s ease-in-out;
}
.footer-bot-nav ul li a:hover::before{
transform: scaleX(1);
}
.footer-bot-nav ul li a:hover {
    color: #fff;
}
@media(max-width:1200px){
    .footer-bot-nav ul li a{
        font-size: 13px;
        text-align: left;
    }
    /* .footer-bot-nav ul li {
        padding-left: 10px;
    } */
    /* .footer-bot-nav ul li a::after {
        display: none;
    } */
}
@media screen and (max-width: 767px) {
    .bottom-link{
        padding: 7px 0;
    } 
   .footer-bot-nav ul {
        justify-content: flex-start;
    }
    .footer-bot-nav ul li {
        justify-content:flex-start ;
        width: 50%;
        padding: 5px 5px 5px 0px;
    }
    .toprow ul.social li {
        margin-left: 15px;
    }
    .footer-bot-nav {
        padding: 0px;
    }
    /* .footer-bot-nav ul li a::after {
        display: none;
    } */
    .footer-bot-nav ul li::after {
        display: none;
    }
}
/** Footer css end here ****/

.count-down-sec{
    /* background: #2ea9e0; */
    border-radius: 0 0 24px 24px;
    padding: 10px 12px;
    width: 140px;
    margin: auto;
    margin-top: -40px;
    position: relative;
    z-index: 4;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
@media(min-width:992px){
    .count-down-sec{
        margin-top: -60px;
        position: absolute;
        top:0;
        right: 0;
        width: 180px;
    }
}
@media(min-width:1200px){
    .count-down-sec{
        right: 28%;
        width: 160px;
    }
}
.count-down-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.count-down-heading{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fbff53;
}
.count-down-text{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.count-down-day{
    display: flex;
    gap: 4px;
    text-align: center;
}
.dd{
    background: #fff;
    padding: 4px 0px;
    width: 48px;
    font-size: 32px;
    font-weight: 700;
    color:rgb(5, 6, 45,1);
    display: flex;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 4px;
   box-shadow: #000 0px 2px 0px;    
}

.countdown {
    text-align: center;
    padding: 4px 16px;
    border-radius: 0 0 12px 12px;
    position: relative;
    max-width: 320px;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: -40px auto 24px auto;

}

@media(min-width:992px){
    .counter-text .hero-img-sec{
    padding-top: 60px;
}
    .countdown{
        margin-top: -60px;
        position: absolute;
        top:0;
        right: 0;
    }
}
.count-timer-heading{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fbff53;
    margin-bottom: 6px;
}
.count-timer-heading1{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.time-box {
    display: inline-block;
    margin: 0 4px;
}
.time {
    background: #fff;
    width:56px;
    padding: 4px 0px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color:rgb(5, 6, 45,1);
    display: flex;
    justify-content: center;
    border-radius: 8px;
    /* margin-bottom: 4px; */
   box-shadow: #000 0px 2px 0px;
}
@media(min-width:992px){
.time{
     font-size: 28px; 
     padding: 2px 0px;
      line-height: 1.4;
}
}
.label {
    font-size: 13px;
    color: #f1f1f1;
    font-weight: 500;
}

.fix_bottom{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    opacity: 1;
  transition: opacity 0.4s ease;
}
.fix_bottom.hide{opacity: 0;visibility: hidden;}
.fix_bottom .btn-style {
    animation: zoom-in-out 2s infinite ease-in-out;
}
.fix_bottom a.btn-style span{
padding: 16px 12px;
}
@keyframes zoom-in-out {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}
.bt-banner-img{
    text-align: center;
    width: 100%;
    max-width: 722px;
    margin: 12px auto;
    border: 1px solid #f2f1ff;
}

.bt-banner-img img{
    width: 100%;
    max-width: 720px;
    margin: auto;
}
.desktop-show{
    display: none;
}
.mobile-show{
    display: block;
}
@media (width >= 768px){
  .desktop-show{
    display: block;
} 
.mobile-show{
    display: none;
} 
}