/*=====================================
          NAV-TABS BUTTON STYLE
======================================*/
.nav {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-tabs li {
  width: 100%;
}

.nav-tabs li .nav-link {
  width: 100%;
  border: none;
  padding: 10px 0px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  border-bottom: 3px solid transparent;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.nav-tabs li .nav-link:hover {
  border-color: transparent;
}

.nav-tabs li .active {
  color: var(--white) !important;
  background: var(--primary-gdnt);
  border-color: var(--primary) !important;
}

.tab-pane {
  padding: 30px 0px 0px;
  display: none;
}

.tab-pane.active {
  display: block;
}

/*=====================================
            SLIDER ARROW STYLE
======================================*/
.dandik,
.bamdik {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-gdnt);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.dandik:hover,
.bamdik:hover {
  color: var(--white);
  background: var(--hover-gdnt);
}

.dandik {
  right: -45px;
}

.bamdik {
  left: -45px;
}

.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .dandik {
    right: -60px;
  }
  .bamdik {
    left: -60px;
  }
}


/*=====================================
            TEAM CARD STYLE
======================================*/
.team-card:hover .team-overlay {
  opacity: 1;
  height: 100%;
  visibility: visible;
  background: var(--team-hover-oly);
}

.team-card:hover .team-icon {
  bottom: 30px;
}

.team-img {
  position: relative;
  margin-bottom: 15px;
}

.team-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.team-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.team-icon li {
  margin: 0px 5px;
}

.team-icon .icon i {
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.team-meta {
  text-align: center;
  
}

.team-meta h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
}

/*=====================================
            VIDEO CARD STYLE
======================================*/
.video-img {
  position: relative;
  margin-bottom: 15px;
}

.video-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.video-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /*background: var(--video-oly);*/
}

.video-overlay .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-overlay .icon i {
  font-size: 14px;
}

.video-overlay .icon-inline i {
  background: var(--video-icon) ;
}

.video-content {
  padding: 0px 10px;
}

.video-content h4 {
  margin-bottom: 5px;
  text-align: center;
  color: var(--primary);
}

.video-content p {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

/*=====================================
            BLOG CARD STYLE
======================================*/
.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blog-card:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.blog-card:hover .blog-overlay {
  background: var(--blog-hover-oly);
}

.blog-card:hover .blog-overlay .btn-outline {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.blog-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 30px;
  background: var(--blog-oly);
}

.blog-overlay p {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 200px;
}

.blog-overlay h3 {
  position: absolute;
  bottom: 100px;
  left: 25px;
  right: 25px;
}

.blog-overlay h3 a {
  color: var(--white);
}

.blog-overlay .btn {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 25px;
  text-transform: capitalize;
  position: absolute;
  bottom: 30px;
  left: 25px;
}

.blog-overlay .btn-outline {
  color: var(--white);
  border-color: var(--secondary);
}

/*=====================================
            BANNER PART STYLE
======================================*/
.banner-1 {
  background: url(../../img/banner/banner-1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
}

.banner-2 {
  background: url(../../img/banner/banner-2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
}

.banner-3 {
  background: url(../../img/banner/banner-3.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
}
/* add banner x number */
.banner-4 {
  background: url(../../img/banner/banner-4.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
}

.banner-oly {
  padding: 150px 0px 10px; /* adjust this value to your liking banner */
  background: var(--banner-oly);
}

.banner-content {
  text-align: center;
  transform: translateX(0%); /* Adjust this value to move the content horizontally */
  margin-top:  50px;
}

.banner-content h1 {
  margin-bottom: 12px;
}

.banner-content p {
  color: var(--white);
  font-size: 0px; /* this  not show text banner*/
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .banner-oly {
    padding: 10px 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-oly {
    padding: 20px 0px;
  }
}
.sponsor-img:hover {
  transform: scale(1.2);
  transition: transform 0.1s;
}


/*=====================================
            SHOW PART STYLE DELETED
======================================


/*=====================================
            TEAM PART STYLE
======================================*/
.team-slider .team-card {
  margin: 0px 15px;
}

.team-slider .dandik,
.team-slider .bamdik {
  top: 35%;
}

.team-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .team-slider .team-card {
    width: 200px;
    margin: 0px 10px;
  }
}

/*=====================================
            VIDEO PART STYLE
======================================*/
.video-slider .video-card {
  margin: 0px 15px;
}

.video-slider .dandik {
  top: 35%;
}

.video-slider .bamdik {
  top: 35%;
}

.video-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 575px) {
  .video-slider .video-card {
    width: 250px;
    margin: 0px 10px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .video-slider .video-card {
    width: 300px;
    margin: 0px 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .video-slider .video-card {
    width: 380px;
    margin: 0px 10px;
  }
}

/*=====================================
            GALLERY PART STYLE
======================================*/
.gallery-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

.gallery-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -ms-grid-rows: 200px;
  
  grid-auto-flow: dense;
}

.gallery-list li {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-list li:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.gallery-list li::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(203, 48, 255, 0.3)));
  background: linear-gradient(rgba(253, 193, 0, 0), rgba(0, 119, 181, 0.5));
}

.gallery-list li img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.gallery-list li img {
  filter: grayscale(100%);
  transition: transform 0.3s ease-in-out;
}

.gallery-list li:hover img {
  filter: grayscale(0%);
  transform: scale(1.2);
}

.gallery-btn {
  text-align: center;
  margin-top: 50px;
}



/* other CSS rules */

@media (max-width: 575px) {
  .gallery-list {
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr); /* Images display in 2 columns */
  }
}



/*=====================================
            BLOG PART STYLE
======================================*/
.blog-slider .blog-card {
  margin: 0px 15px;
}

.blog-slider .dandik {
  top: 50%;
}

.blog-slider .bamdik {
  top: 50%;
}

.blog-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 575px) {
  .blog-slider .blog-card {
    width: 250px;
    margin: 0px 10px;
  }
  .blog-overlay h4 {
    left: 25px;
    right: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .blog-slider .blog-card {
    width: 325px;
  }
}

/*=====================================
            PUB PART STYLE START
======================================*/
.ad-image-pub {
  margin-top: 40px;
  text-align: center;
}

.ad-image-pub img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.2s;
}

.ad-image-pub img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 575px) {
  .ad-image-pub img {
    width: 85%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ad-image-pub img {
    width: 70%;
  }
}

/*=====================================
            PUB PART STYLE END
======================================*/

/*=====================================
    SLIDER STYLES
======================================*/

.slider {
  position: relative;
  height: 30px;
  width: 100%;
  overflow: hidden;
  background-color: #FDC100;
  color: #2c3429;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap; /* Prevent line breaks */
}

.slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 1s ease-in-out;
  padding: 10px;
  box-sizing: border-box;
}

.slide.active {
  left: 0;
}

.slide.prev {
  left: -100%;
}

/* Styles for smaller screens */

@media (max-width: 768px) {
  .slider {
    display: none; /* Hide the slider on small screens */
  }
}

/*=====================================
            SPONSOR PART STYLE LOGO 
======================================*/
.grayscale {
  filter: grayscale(100%);
}

@media (max-width: 576px) {
  .sponsor-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 10px; /* Adjust the padding value to match your website */
  }
  
  .sponsor-slider .slick-slide {
    flex: 0 0 50%; /* Adjust the flex value to determine the number of logos per row */
    margin: 0px; /* Adjust the margin value to your desired spacing */
  }
  
  .sponsor-slider .slick-slide img {
    width: 90%; /* Adjust the width value to your desired size */
    height: auto;
  }
}


/*=====================================
            SHARED SOCIAL BUTTON PART STYLE 
======================================*/
.social-sharing {
  position: fixed;
  top: 56%;
  left: 10px;
  transform: translateY(0%);
  display: flex;
  flex-direction: column;
  align-items: left;
  z-index: 1; /* Added a high z-index to ensure it appears on top */
  
}

.sharing-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  text-align: justify;
}

.social-sharing-button {
  display: inline-block;
  padding: 5px 12px;
  color: #2c3429;
  font-size: 14px;
  text-align: center;
  background-color: #fdc100;
  text-decoration: none;
  border-radius: 50px;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 119, 181, 0.9); /* Added box shadow with increased spread */
}

.social-sharing-button:hover {
  background-color: #0077b5;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(91, 68, 114, 0.7); /* Added box shadow on hover with increased spread */
}

@media screen and (max-width: 1300px) {
  .social-sharing {
    display: none;
  }
}


/*=====================================
    FOLLOW SOCIAL BUTTON PART STYLE 
======================================*/
.social-following {
  position: fixed;
  top: 56%;
  right: 10px; /* Changed to right */
  transform: translateY(0%);
  display: flex;
  flex-direction: column;
  align-items: left;
  z-index: 1;
}

.following-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.social-following-button {
  display: inline-block;
  padding: 5px 12px;
  color: #2c3429;
  font-size: 14px;
  text-align: center;
  background-color: #fdc100;
  text-decoration: none;
  border-radius: 50px;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 119, 181, 0.9);
}

.social-following-button:hover {
  background-color: #0077b5;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(91, 68, 114, 0.7);
}

@media screen and (max-width: 1300px) {
  .social-following {
    display: none;
  }
}
