@media (max-width: 575.98px) {
  #exampleInputSport {
    width: 100%;
    box-sizing: border-box;
  }
}

/*  ************ Global Styles ************ */

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: auto;
}

#containerPage {
  width: 100%;
  max-width: 1366px; /* Ограничение ширины */
  margin-left: auto; /* Центрирование */
  margin-right: auto;
  padding-left: 15px; /* Отступы по краям для маленьких экранов */
  padding-right: 15px;
}

main {
  min-height: 100vh;
  box-sizing: border-box;
  overflow: auto;
  margin-bottom: 50px;
  padding-top: 120px; /* Отступ сверху */
  padding-bottom: 0px; /* Отступ снизу */
}

#siteFooter {
  /* clear: both; */
  /*   margin-top: 50px; */
}

/*  ************ topMenu Styles ************ */

.headerSection .nav-link {
  position: relative;
  text-decoration: none;
  font-size: 1.2rem;
}

.headerSection .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0d6efd;
  /*   background-color: #b3b3b3; */
  transition: width 0.3s ease-out;
}

.headerSection .nav-link:hover::before {
  width: 100%;
}

/* ************ размер шрифта topMenu на моб************ */
@media screen and (max-width: 992px) {
  .nav-link {
    font-size: 2rem !important;
  }
}

/* ************ Top Menu ************ */
/* 1. Align menu items and theme switcher button */

/* center menu on mobile */
.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. Set margin for menu items */
.navbar-nav .nav-item {
  margin-left: 1rem;
  margin-right: 1rem;
}

/* 3. Theme switcher button styles */
#themeSwitcher {
  display: flex;
  align-items: center;
  padding: 5px !important;
  margin: 5px !important;
}

#themeSwitcher button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: transparent !important;
  border: none !important;
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

/* 4. Theme switcher icon styles */
#themeSwitcher button img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease-in-out;
  filter: brightness(0) invert(1);
  transform-origin: center;
}

#themeSwitcher button.active {
  transform: rotate(180deg);
}

#themeSwitcher button.active img {
  transform: rotate(180deg);
}

/* 5. Theme switcher animation styles */
#themeSwitcher button.animate__animated {
  animation-duration: 0.5s;
}

#themeSwitcher button.animate__headShake {
  --animate-duration: 0.5s;
}

/* ************ Footer Menu ************ */

.footerSection ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.footerSection ul li {
  display: block;
  width: 100%;
}

.footerSection ul li a,
.nav-link {
  display: block;
  color: #8c8c8c; /* основной цвет, более светлый */
  padding: 10px 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footerSection ul li a:hover,
.nav-link:hover {
  color: #595959; /* цвет при наведении, теперь более светлый */
}

.footerSection ul li a:hover i,
.nav-link:hover i {
  color: #0d6efd;
}

/* 
.navLink {
  color: #343a40;
} */

/* ******** **** hamburger ************ */

.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #6e6e6e;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
  color: #000;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #6e6e6e;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* * 3DXY */

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
/* ************ preloader  ************ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999;
  opacity: 1;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  margin: 0 5px;
  animation: bounce 1.5s ease-in-out infinite;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

.loader span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ************ Hero Section ************ */

.heroSection {
  height: 600px;
  z-index: -5;
}

.heroContent {
  position: absolute !important;
  background: url('../img/news/1400_800.webp') center/cover no-repeat;
  color: rgba(9, 162, 255, 0);
  z-index: -1;
  height: 680px; /* высота фото */
  top: 0; /* Прилипаем к верхней части экрана */
  width: 100%; /* Растягиваем на всю ширину экрана */
}

.heroContent::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 0;
}

.heroContent:hover::after {
  opacity: 0;
}

.heroContent * {
  position: relative;
  z-index: 3;
}

.my-custom-padding {
  padding-top: 320px;
}

.parallax {
  background-color: transparent;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ************ Scroll To Top ************ */

/* #scrollToTop {
  transition: opacity 2s;
  opacity: 0;
} */

/* .navbar-toggler::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(25px);
  z-index: -1;
} */

/* ************ Section ************ */

#newsSection {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ************ clients section ************ */

.oc-item {
  transition: transform 0.3s ease;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.oc-item:hover {
  animation: rotate 0.5s linear;
}

@media (max-width: 576px) {
  #client-owl-carousel .owl-item img {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ************ Fixed Social ************ */

#fixed-social {
  position: fixed;
  top: 290px;
  z-index: 1;
  padding: 0;
  margin: 0;
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 1;
}

#fixed-social a:hover > span {
  visibility: visible;
  left: 41px;
  opacity: 1;
}

#fixed-social a span {
  line-height: 40px;
  left: 60px;
  position: absolute;
  text-align: center;
  width: 120px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
  font-family: Montserrat;
  font-weight: 700;
}

.fixed-telegram {
  background-color: #00aae5;
}

.fixed-telegram span {
  background-color: #00aae5;
}

.fixed-vk {
  background-color: #0077b5;
}

.fixed-vk span {
  background-color: #0077b5;
}

/* ************ Buttom Icons ************ */

.bs-icon {
  --bs-icon-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon-circle {
  border-radius: 50%;
}

.bs-icon:hover {
  transform: scale(1.2) rotate(360deg);
  transition: all 0.5s ease;
}

/* ************ Card Image Scale In ************ */

.cardSection_imagescalein {
  display: block;
  overflow: hidden;
}

.cardSection_imagescalein img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.cardSection_imagescalein img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cardSection_imagescalein:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* ************ Card Shadow ************ */

.cardSection_h-shadow-sm:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.cardSection_h-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.cardSection_h-shadow-lg:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.cardSection_h-shadow_card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px !important;
}

.cardSection_h-shadow-none:hover {
  box-shadow: none !important;
}
