:root {
     --main-color: #2ea9e0;
    --primary:#2ea9e0; 
    --black: #000;
    --white: #fff;
    --green: #19803f;
    --light-green:#14bd5b ;
    --success-green: #10b981;
    --dark-gray-bg:#121314;
    --yellow: #f7e34c;
    --gradient1: linear-gradient(120deg, #5f26fe 0%, #5f26fe 60%, #ee0ae5 100%);
    --gradient: linear-gradient(135deg, rgb(30, 58, 138) 0%, rgb(10, 14, 39) 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gray:#121314;
}

* {
    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.6;
}

.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: #000;
    padding: 5px 0px;
    border-bottom: 1px solid #ebebeb;
}

.top-menu li {
    padding: 0px 11px;
    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: #fff;
    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 **/
.logo{
    min-width: 180px;

}
.logo img{
    display: block;
    max-width: 200px;
    height: auto;
}
.header{border-bottom: 1px solid #DFDFDF;}

.main-head {
    background: rgb(255, 255, 255);
    padding: 12px 15px;
    border-radius: 5px;
}
/* haeder tabs */
.top_img{text-align:center;}
.top_img img{max-width:100%;}
.hdr_tab_ul{display:flex;gap:12px;margin:0 12px 0 auto;}
.hdr_tab_li{display:flex;}
.hdr_tab_lnk{display:flex;justify-content:center;align-items:center;padding:5px;font-weight:600;
    font-size:13px;
    color:#212529;
    @media(min-width:1200px) {
       font-size:14px; 
    }
}

.hdr_tab_lnk:hover{color:#2ea9e0;border-color:#2ea9e0;}
@media screen and (max-width: 767px) {

.hdr_wth_tab{flex-wrap:wrap;}
.hdr_wth_tab .logo{order:0;}
.hdr_wth_tab .head-right{order:1;}
.hdr_tab_ul{flex-wrap:wrap;margin:16px 0 0 0;order:2;gap:8px;}
.hdr_tab_lnk{padding:8px;background: #000 ; color: #fff;
    border-radius: 6px;}
}
header {
    background: #fff;
}

.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: 8px;
    position: relative;
}

.archive-btn {
    border: 1px solid rgba(21, 25, 28, 0.2);
    padding: 6px 8px;
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    white-space: nowrap;
}

.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: 90px;
max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.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: 6px 8px;
    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: 4px;
    vertical-align: bottom;
}
@media screen and (max-width: 575px) {
        .main-head {
        padding: 10px 0px;
    }
.logo{
    min-width: 120px;

}
    .logo img {
        max-width: 120px;
    }

    .archive {
        margin-right: 5px;
    }

    .archive-btn,
    .goto-bt {
        font-size: 13px;
        padding: 6px 4px;
    }
    .goto-bt img{
        margin-left: 4px;
    }
    .archive-list{
        width: 76px;
    }
 
    .archive-btn i{
        margin-left: 3px;
    }
}
/** Banner css **/
.hero-banner{
background: linear-gradient(135deg, #1e3a8a 0%, #0a0e27 100%);
    /* background: var(--gradient1); */
    padding: 0 0;
    position: relative;
    padding: 40px 0 40px 0;
    position: relative;
    min-height: 450px;  
}

.hero-banner .intro{
    color: #fff; 
    position: relative; 
    z-index: 2; 
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    @media(min-width:992px){
        text-align: left;
    }
}
.hero-banner .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-banner h1{
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    z-index: 2;
    @media(max-width:990px){
         font-size: 28px; 
         margin-bottom: 16px;  
    }
}
.hero-banner .text-lg{
    font-size: 42px;
    margin-bottom: 8px;
        @media(max-width:990px){
         font-size: 34px;   
    }
}

.hero-banner p{
line-height: 1.6;
}

.green-img{
    opacity: 0.2;
    width: 150px;
}
.green-img img{
    width: 150px;
}
.img-p,.img-p1,.img-p2, .img-p3,.img-p4{
    position: absolute;
    bottom: 0;
    z-index: 1; 
}
.img-p{
    right: 0;
}
.img-p1{
    right: 180px;
    bottom: -4px;
}

.img-p2{
    left:0px;
   

   @media (max-width: 900px) {
   bottom: 400px;
   }
}
.img-p3{
    right: 360px;
    bottom: -4px;
}
.img-p4{
    right: 560px;
    bottom: 0px;
}

.img-p6{
    left:0px;
    top: 0px;
    position: absolute;
    z-index: 1; 
}
.img-p7{
    left:0px;
    top: 250px;
    position: absolute;
    z-index: 1; 
}
.green-img.img-p7 img{
max-width: 140px;
}




/*** video ***/
.image-box,.responsive-video{position: relative;z-index: 8;margin: auto;}
.promo-video {
position: relative;
    /* margin: 0 auto 30px; */
    position: relative;
    padding-top: 56.3%;
    z-index: 9;

}
.promo-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.container-wrap{
        max-width: 882px;
        margin: auto;
}

.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 img {
    max-width: 100%;
}

/**Partner Logo ***/
.green-bg{
    background: url('https://akm-img-a-in.tosshub.com/businesstoday/resource/most-sustainable-companies-2026/images/green-energy.png') top center / cover no-repeat;
    min-height: 300px;
}
.event-sponcers{
/* background: var(--white); */
    background: url('https://akm-img-a-in.tosshub.com/businesstoday/resource/most-sustainable-companies-2026/images/green-energy.png') top center / cover no-repeat;
    min-height: 300px;
}
.partner-logo {
    width: 100%;
    background: #fff;
    padding: 16px 10px;
    border: 1px solid #e5e5e5;
    /* border-right: 1px solid #e5e5e5; */
    /* border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px; */
}


.partners-name {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--black);
    opacity: .7;
    margin-bottom: 4px;
    min-height: 36px;
    display: flex;
    align-items: start;
    justify-content: center;
    line-height: 1.4;
    font-weight: 500;
}

.partner-logo img {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
    /* border: 1px solid #f1f1f1; */
}
@media screen and (max-width: 575px) {
    .partner-logo img {
    margin: 0 auto;
    max-width: 140px;
    width: 100%;
}
    .partner-logo{
        padding: 10px;
    }
    .partner-logo span {
        font-size: 13px;
        font-weight: 500;
    }
}


/** 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%;
}


/** 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 #F21F30;
}
/* .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; */

}


/*** 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 **/
.stories-sec{
/* background: var(--white); */
    background: url('https://akm-img-a-in.tosshub.com/businesstoday/resource/most-sustainable-companies-2026/images/green-energy.png') top center / cover no-repeat;
    min-height: 300px;
}
@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(--dark-gray-bg);
    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(--dark-gray-bg);
    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;
}


/** 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 ****/

/** 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:last-child{padding-bottom: 0;margin-bottom:0;}
.tl-event li .timeline-date .fa-clock {
    margin-right: 6px;
    font-size: 15px;
}

.event {
    padding-left: 30px;
}

.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: #f1f1f1;
}

.tl-event .heading-box em {
    font-size: 12px;
    color: #ddd;
    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: 24px;
        padding-bottom:24px;
    }


    /* .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;
    } */
}


a.btn-style {
  align-items: center;
  background-image: linear-gradient(144deg, #4facfe, #00f2fe 50%, #2ea9e0);
  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);
}

.fix_bottom{
    position:fixed;
    bottom: 20px;
    right: 20px;

    z-index: 2;
    opacity: 1;
  transition: opacity 0.4s ease;
}
@media(max-width:991px){
   .fix_bottom{
    height: 60px;
   } 
}
.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);
    }
}
.desktop-show{
    display: none;
}
.mobile-show{
    display: block;
}
@media (width >= 768px){
  .desktop-show{
    display: block;
} 
.mobile-show{
    display: none;
} 
}