/* 
Theme Name: Dziu Dzicu savez Republike Srpske
Author: Bujak Davor
Version: 1.0
*/

:root {
  --primary-color: #0b004d;
  --secondary-color: #ad0606;
  --primary-font: "Josefin Sans", sans-serif;
}

h1 {
  font-size: 35px;
  line-height: 1.4;
}

h2 {
  font-size: 30px;
  line-height: 1.4;
}

h3 {
  font-size: 28px;
  line-height: 1.4;
}

h4 {
  font-size: 25px;
  line-height: 1.4;
}

h5 {
  font-size: 22px;
  line-height: 1.4;
}

h6 {
  font-size: 20px;
  line-height: 1.4;
}

.jjsrs-button {
  margin-top: 70px;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color) !important;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.jjsrs-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

@font-face {
  font-family: "Josefin Sans";
  src: url("assets/fonts/JosefinSans-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("assets/fonts/JosefinSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("assets/fonts/JosefinSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("assets/fonts/JosefinSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

html {
  scroll-padding-top: 160px;
}

body {
  font-family: var(--primary-font);
}

.admin-bar .offcanvas {
  top: 46px;
}

.admin-bar .navbar {
  top: 46px;
}

.navbar {
  background-color: transparent;
  min-height: 93px;
  padding: 30px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: #050011e0;
}

.logo-container {
  width: 70px;
  height: auto;
}

.logo-container img {
  object-fit: cover;
}

.navbar-nav .menu-item {
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: #000;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #000;
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas-header {
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #ececec;
}

/* hamburger */

.navbar-toggler {
  position: relative;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

button:focus:not(:focus-visible) {
  outline: none;
}

.navbar-toggler .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.navbar-toggler .line.top {
  transform-origin: center;
}

.navbar-toggler .line.middle {
  transform-origin: center;
  transition: opacity 0.2s ease-in-out, transform 0.3s ease-in-out;
}

.navbar-toggler .line.bottom {
  transform-origin: center;
}

/* When menu is open (aria-expanded="true") */
.navbar-toggler[aria-expanded="true"] .line.top {
  transform: rotate(-45deg) translateY(11px);
  width: 30px;
}

.navbar-toggler[aria-expanded="true"] .line.middle {
  opacity: 0; /* Fades out */
  transform: scaleX(0); /* Optional shrink effect */
}

.navbar-toggler[aria-expanded="true"] .line.bottom {
  transform: rotate(45deg) translateY(-11px);
  width: 30px;
}

/* DROPDOWN MENU */
.navbar-nav .dropdown-menu {
  border-radius: 0;
  background-color: #fff;
  border: none;
  text-align: center;
}

.navbar-nav .dropdown-item.active {
  background-color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item {
  color: #000;
}

/* Hero */

.hero-section {
  height: 80vh;
  width: 100%;
}

.darker-div {
  background-color: #07002e;
  opacity: 0.7;
}

.darker-div-slug {
  background-color: #07002e;
  opacity: 0.8;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-part h1 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
}

.title-part h4 {
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.5);
}

.scroll-down {
  transform: translateX(-50%);
  bottom: 15%;
}

.arrow {
  opacity: 0;
  position: absolute;
  left: 50%;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0);
}

.arrow-first {
  animation: arrow-movement 2s ease-in-out infinite;
}

.arrow-second {
  animation: arrow-movement 2s 1s ease-in-out infinite;
  top: 30px;
}

.arrow:before,
.arrow:after {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
}

.arrow:before {
  transform: rotate(45deg) translateX(-23%);
  transform-origin: top left;
}

.arrow:after {
  transform: rotate(-45deg) translateX(23%);
  transform-origin: top right;
}

@keyframes arrow-movement {
  0% {
    opacity: 0;
    top: 45%;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* BLOGS BLOK */
.blogs-section {
  padding: 50px 0;
}

.section-header {
  margin-bottom: 60px;
  margin-top: 35px;
}

h4.section-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}

.section-header a {
  color: #141414;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: all 0.1s ease-in-out;
}

.section-header a:hover {
  color: var(--secondary-color);
}

.jj-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-top: 15px;
}

.img-box-big {
  height: 250px;
  width: 100%;
}

.small-img-wrapper {
  max-height: 270px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  width: auto;
}

.img-box-small {
  max-height: 270px;
  width: 100%;
  height: 100%;
}

.img-box-small img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

.small-blog-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  transition: transform 0.8s ease-in-out;
  transform: translateY(0); /* početno stanje */
}

.small-blog-title h4 {
  margin-bottom: 0;
}

.small-blog-title .description,
.small-blog-title .date {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

/* Hover efekat */
.small-img-wrapper:hover .small-blog-title {
  transform: translateY(0px); /* pomjeri naslov gore */
}

.small-img-wrapper:hover .small-blog-title .description,
.small-img-wrapper:hover .small-blog-title .date {
  opacity: 1;
  max-height: 200px; /* dovoljno da stane tekst */
}

/* .small-blog-title {
  padding: 0 20px 10px;
  color: #fff;
}

.small-blog-title h4 {
  font-weight: 700;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
} */

.img-box-big img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.big-card-wrapper h3 {
  font-weight: 700;
}

.big-card-wrapper .date {
  font-size: 18px;
  line-height: 1.2;
}

.big-card-wrapper .btn-blog {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
}

.big-card-wrapper .btn-blog:hover {
  color: white;
}

.big-card-wrapper .btn-blog::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 45px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.4s;
  border: 0;
  margin: 0;
  z-index: -1;
}

.big-card-wrapper .btn-blog:hover::before {
  width: 100%;
}

.small-blog-overlay {
  height: 75%;
  background: linear-gradient(to top, var(--primary-color), transparent);
  transition: all 0.3s ease-in-out;
}

.small-img-wrapper:hover .small-blog-overlay {
  height: 150%;
  background: linear-gradient(to top, var(--primary-color), transparent);
}

/* .small-blog-title .description,
.small-blog-title .date {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.small-img-wrapper:hover .small-blog-title h4 {
  transform: translateY(-30px);
}

.small-img-wrapper:hover .small-blog-title .description,
.small-img-wrapper:hover .small-blog-title .date {
  opacity: 1;
  transform: translateY(0);
} */

/* SPONZORI */

.sponsors-section {
  padding: 50px 0;
}

.logo-content {
  max-width: 100px;
  height: auto;
}

.logo-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* RANKING */
.ranking-section {
  padding: 50px 0;
}

.back-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-section table {
  border-collapse: collapse;
	margin-top: 20px;
}

.ranking-section .table-spacing {
	margin-top: 40px;
}

.ranking-section table th,
.ranking-section table td {
  text-align: start;
  vertical-align: middle;
  padding: 10px;
  background-color: transparent;
  padding-left: 0;
}

.ranking-table thead th,
.ranking-table tbody td {
  font-size: 14px;
}

.padding {
  padding: 100px 0;
}

.club-logo img {
  max-width: 60px;
  height: auto;
  object-fit: contain;
}

.jj-bg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.jj-bg img {
  width: 350px;
  height: auto;
  opacity: 10%;
  aspect-ratio: 8/16;
}

/* O SPORTU HOME */
.o-sportu-home {
  padding: 100px 0 50px;
}

.o-sportu-img {
  width: 100%;
  max-height: 600px;
  height: auto;
}

.o-sportu-img img {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: cover;
}

.descritpion-content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.o-savezu-btn a {
  margin-top: 0;
}

/* ENTERING BLOCK */
.entering-block {
  min-height: 500px;
}

.text-container h2 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
}

.entering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DESCRIPTION */
.description-container {
  padding: 60px 0;
}

.description-container h3 {
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
}

.border-line {
  border-bottom: 1px solid #00000036;
  padding-top: 10px;
}

.description-part {
  padding: 70px 0 0;
}

.description-part h5 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
}

.description-part p:has(img) {
  text-align: center;
  margin: 50px 0;
}

.description-part img {
  max-width: 1000px;
  max-height: 500px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h5 {
  font-weight: 400;
  color: #000;
}

.description-part p {
  font-size: 20px;
  font-weight: 300;
}

/* GALLERY */

.gallery-section {
  padding: 70px 0;
}

.gallery-img {
  height: 290px;
  width: 100%;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ranking Page */
.ranking-page-section {
  padding: 40px 0;
}

.ranking-page-section {
  margin: 20px 0;
}

.ranking-button {
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  gap: 20px;
}

.ranking-button a:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: var(--secondary-color);
}

.ranking-button a {
  color: #000;
  padding: 10px 40px !important;
  border-radius: 30px;
}

.ranking-tab.active {
  font-weight: bold;
  color: #fff !important;
  background-color: var(--secondary-color);
}

.ranking-table {
  display: none;
  margin-top: 20px;
}

.ranking-table.active {
  display: block;
}

.year-box {
  text-transform: uppercase;
  border-bottom: 2px solid var(--secondary-color);
}

.table {
  margin-top: 40px;
}

.table th {
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.table td {
  align-content: center;
}

.table > :not(caption) > * > * {
  padding: 15px 5px;
}

.table-docs thead th {
  background-color: var(--secondary-color);
  color: #fff;
}

#sort-documents.form-select {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

#sort-documents.form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--secondary-color);
}

.table-logo {
	width: 60px;
	height: auto;
}

.table-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#club-year-filter,
#year-filter {
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 0;
  padding-left: 0;
}

#club-year-filter:focus,
#year-filter:focus {
  box-shadow: none;
}

/* Gallery Hero */

.gallery-landing {
  min-height: 300px;
  aspect-ratio: 3/ 1;
  overflow: hidden;
}

.gallery-landing a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.gallery-landing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.gallery-landing:hover .gallery-landing-img img {
  transform: scale(1.07);
}

.landing-img-gradient {
  background-color: #07002e;
  opacity: 0.7;
}

/* Klubovi */
.clubs-section {
  padding: 50px 0;
}

.clubs-table {
  margin-top: 0;
}

.clubs-table tbody tr {
  cursor: pointer;
}

.clubs-section table th,
.clubs-section table td {
  text-align: start;
  vertical-align: middle;
  padding: 10px 25px;
  background-color: transparent;
  padding-left: 0;
}

/* Kontakt */
.form-control {
  border: none;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
  color: var(--primary-color);
  font-weight: 600;
  opacity: 0.4;
}

.form-control:focus {
  border: 1px solid #000;
  box-shadow: none;
  color: var(--primary-color);
}

.form-control:focus-visible {
  outline: 0;
}

.form-label {
  margin-bottom: 0;
  color: var(--primary-color);
  font-size: 14px;
}

.form-check {
  padding-left: 0;
  color: #6b6b6b;
}

.form-check .form-check-input {
  margin: 0 10px 0 0;
}

.form-check-input[type="checkbox"] {
  border-radius: 0;
  border: 1px solid var(--primary-color);
  width: 20px;
  height: 20px;
}

.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
  margin-top: 5px !important;
}

.btn-contact {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 40px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}

.map-container {
  max-height: 500px;
	aspect-ratio: 1/1;
}

/* MODAL */
.modal .modal-dialog {
  max-width: 1200px !important;	
  margin: 15px;
}

.modal-content {
  min-height: 700px;
  border-radius: 0;
/* 	backdrop-filter: blur(28px);
    background: rgba(255, 255, 255, 0.7); */
}

.modal-header,
.modal-body {
  padding-inline: 35px;
}

.modal-body {
  padding-top: 60px;
  padding-bottom: 40px;
}

.modal-title {
  text-transform: uppercase;
}

.modal-club-logo {
	max-width: 190px;
	width: auto;
	height: auto;
}

.modal-club-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* .modal-club-logo {
  width: 300px;
  height: 300px;
}

.modal-club-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
} */

/* rukovodstvo */
.rukovodstvo-section {
  padding: 50px 0;
}

.rukovodstvo-section h3:not(:first-child) {
  margin-top: 50px;
}

.card-wrapper {
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  transition: all 0.2s ease-in;
}

.card-wrapper:hover {
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  cursor: pointer;
}

.card-img-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: auto;
  height: auto;
  max-width: 150px;
  aspect-ratio: 1/1;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.info-card {
  color: var(--primary-color);
}

.info-card h4 {
  margin-bottom: 0;
}

.info-card h6 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 14px;
  word-break: break-word;
}

.info-card .club {
  text-transform: uppercase;
}

.modal-header .btn-close:focus,
.modal-header .btn-close:focus-visible {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.modal-header-rukovodstvo {
  padding-inline: 20px;
}

.modal-value {
  font-size: 20px;
}

.funct {
  color: var(--secondary-color);
}

.modal-small-font {
  font-size: 12px;
}

.modal-profile-img {
  max-width: 280px;
  height: auto;
  width: auto;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}

.modal-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bio-container {
  max-height: 490px;
  overflow-y: auto;
}

/* Footer */
.footer-section {
  padding: 100px 0 20px;
  background-color: #050011;
}

.links-container {
  padding-bottom: 40px;
}

.federation {
  margin-bottom: 70px;
}

.federation-logo {
  max-width: 150px;
  height: auto;
  width: 100%;
  margin-bottom: 50px;
}

.federation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-title {
  font-size: 14px;
  padding-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-menu {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-weight: 300;
}

.footer-menu li {
  padding-bottom: 10px;
  font-size: 14px;
}

.footer-menu li:last-child {
  padding-bottom: 0;
}

.socialmedia a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.socialmedia a:hover,
.footer-menu li a:hover {
  text-decoration: underline;
}

.socialmedia-icons {
  width: 35px;
  height: auto;
}

.socialmedia-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-copyright {
  padding-top: 40px;
  border-top: 1px solid #979797;
}

.footer-copyright p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.blog-preview-section {
  padding-bottom: 100px;
}

.blog-preview-header {
  width: 100%;
}

.blog-header-image {
  max-height: 450px;
}

.blog-header-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.black-container {
  background-color: #000;
  opacity: 0.7;
}

.post-info {
  color: #fff;
  padding-bottom: 50px;
}

.post-info > *:not(:last-child) {
  margin-bottom: 20px;
}

.post-info a img {
  width: 20px;
  height: auto;
  object-fit: contain;
  margin-right: 10px;
}

.post-info h2 {
  font-weight: 600;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
}

.post-info .description {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.post-info .date {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
}

.blog-content-section {
  padding: 100px 0 50px;
}

.popular-news {
  top: 165px;
}

.popular-news-title {
  background: linear-gradient(90deg, var(--primary-color), #0f0066);
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
}

.popular-news-title h3 {
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
}

.popular-news .small-blog .img-box-small {
  height: 100%;
  width: 100%;
}

.popular-news .small-blog .img-box-small img {
  max-height: 120px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-news .small-blog h5 {
  color: var(--primary-color);
  font-size: 14px;
}

.popular-news .small-blog .description {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-size: 12px;
}

.popular-news .small-blog .date {
  color: var(--primary-color);
}

.popular-blogs-cards {
  padding-top: 40px;
}

.popular-blogs-cards .small-blog {
  margin-bottom: 20px;
}

.popular-blogs-cards .small-blog:hover .content-small {
  color: #0f0066;
}

/* BLOG */
.posts-display {
  padding: 100px 0;
}

.post-card {
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  border: 2px solid #0c004d23;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in;
}

.post-card:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 5px 8px 17px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .text-container {
  padding: 30px 20px 30px;
}

.post-card .text-container .desc {
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.small-img-wrapper .description p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dwn-img img {
  width: 25px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
	.modal-club-logo {
		margin: 0 auto;
	}
}

@media (min-width: 768px) {
  .admin-bar .offcanvas {
    top: 32px;
  }

  .admin-bar .navbar {
    top: 32px;
  }

  .hero-section {
    height: 100vh;
  }

  .ranking-table thead th,
  .ranking-table tbody td {
    font-size: 16px;
  }

  .img-box-big {
    height: 500px;
    width: 100%;
  }

  .federation-logo {
    margin-bottom: 0;
  }
	
.blog-header-image {
  max-height: 550px;
}
}

@media (min-width: 992px) {
  h2 {
    font-size: 60px;
  }

  h3 {
    font-size: 45px;
  }
	
	.small-blog-title h4 {
		font-size: 30px;
	}

  h4 {
    font-size: 35px;
  }

  h5 {
    font-size: 28px;
  }

  h6 {
    font-size: 24px;
  }
	
	.ranking-section .table-spacing {
		margin-top: 0;
	}

  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar-nav {
    gap: 40px;
  }

  .navbar-nav .menu-item {
    font-size: 14px;
  }

  .navbar-nav .nav-link {
    color: #fff;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: #fff;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar-nav .nav-link {
    transition: 0.4s;
    position: relative;
  }

  .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    border: 0;
    margin: 0;
  }

  .navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
    width: 80%;
  }

  .navbar-nav .dropdown-toggle::after {
    margin-left: 2px;
  }

  /* Dropdown */
  /* DROPDOWN MENU */
  .navbar-nav .dropdown-menu {
    border-radius: 0;
    background-color: #050011;
    text-align: start;
  }

  .navbar-nav .dropdown-item:hover {
    background-color: #0b004d;
  }

  .navbar-nav .dropdown-item.active {
    background-color: #0f0066;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: #fff;
  }

  .title-part h1 {
    font-size: 95px;
  }

  .title-part h4 {
    letter-spacing: 20px;
    font-size: 40px;
  }

  .description-container h4 {
    font-size: 40px;
  }
	
.modal-header,
.modal-body {
  padding-inline: 70px;
}
	
.modal-club-logo {
	max-width: 300px;
}

  .footer-title {
    font-size: 20px;
  }

  .footer-copyright p {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 16px;
  }

  .socialmedia a {
    font-size: 16px;
  }

  .footer-logo {
    max-width: 200px;
  }

  #club-year-filter,
  #year-filter {
    font-size: 20px;
  }
	
.ranking-button {
  gap: 50px;
}


}

@media (min-width: 1200px) {
  .navbar-nav .menu-item {
    font-size: 16px;
  }
	
  .modal .modal-dialog {
  	margin: 15px auto;
}
}

@media (min-width: 1400px) {
  .container {
    max-width: 1644px;
  }

  .custom-container {
    max-width: 1000px;
  }

  .navbar-nav .menu-item {
    font-size: 20px;
  }
}
