@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f9f9f9;
  color: #333;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #007bff;
  transition: color 0.3s ease;
}
.site-header .header-logo a:hover {
  color: #0056b3;
}
.site-header .header-buttons {
  display: flex;
  gap: 1rem;
}
.site-header .header-buttons button {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.site-header .header-buttons .login-btn {
  background-color: transparent;
  border: 1px solid #007bff;
  color: #007bff;
}
.site-header .header-buttons .login-btn:hover {
  background-color: #007bff;
  color: #ffffff;
}
.site-header .header-buttons .signup-btn {
  background-color: #28a745;
  color: #ffffff;
  border: 1px solid transparent;
}
.site-header .header-buttons .signup-btn:hover {
  background-color: #218838;
}

.modal {
  display: none;
  /* скрыт по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.modal .close-btn:hover {
  color: #000;
}
.modal form {
  display: flex;
  flex-direction: column;
}
.modal form input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.modal form .primary-btn {
  background-color: #2e2e91;
  color: #fff;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.modal form .primary-btn:hover {
  background-color: #1f1f6e;
}

.hero-section {
  background-color: #f1f5f9;
  padding: 4rem 0;
}
.hero-section .hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-section .hero-text {
  flex: 1 1 500px;
}
.hero-section .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0775f8;
}
.hero-section .hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-section .hero-text .primary-btn {
  background-color: #0775f8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.hero-section .hero-text .primary-btn:hover {
  background-color: #1f1f6e;
}
.hero-section .hero-image {
  flex: 1 1 400px;
}
.hero-section .hero-image img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sports-section {
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  padding: 4rem 0;
}
.sports-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0a3d62;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sports-section .sports-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.sports-section .sport-card {
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.sports-section .sport-card img {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}
.sports-section .sport-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}
.sports-section .sport-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #e6ecf3, #ffffff);
}
.sports-section .sport-card:hover img {
  transform: scale(1.15);
}

.about-section {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.about-section .about-text {
  flex: 1 1 500px;
}
.about-section .about-text h2 {
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 1rem;
}
.about-section .about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-section .about-image {
  flex: 1 1 400px;
}
.about-section .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials-section {
  background-color: #f1f5f9;
  padding: 4rem 0;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 3rem;
}
.testimonials-section .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.testimonials-section .testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials-section .testimonial-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonials-section .testimonial-card h4 {
  font-size: 1rem;
  color: #0a3d62;
  font-weight: 700;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.responsible-section {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.responsible-section h2 {
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 2rem;
}
.responsible-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.responsible-section .logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.responsible-section .logos-grid .logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.responsible-section .logos-grid .logo-item img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: filter 0.3s ease;
}
.responsible-section .logos-grid .logo-item a {
  font-size: 1rem;
  color: #0a3d62;
  font-weight: 600;
  text-decoration: underline;
}
.responsible-section .logos-grid .logo-item a:hover {
  color: #f6b93b;
}

.site-footer {
  background-color: #0a3d62;
  color: #ffffff;
  padding: 2rem 0;
  font-size: 0.95rem;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-links a {
  color: #f6b93b;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-links a:hover {
  text-decoration: underline;
}
.site-footer .footer-text p {
  margin-bottom: 0.5rem;
}
.site-footer .footer-text p a {
  color: #f6b93b;
}
.site-footer .footer-text p a:hover {
  text-decoration: underline;
}

.policy-section {
  background-color: #ffffff;
  padding: 4rem 0;
  color: #333;
}
.policy-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.policy-section h1 {
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 1rem;
  text-align: center;
}
.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-section h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}
.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-section ul li {
  margin-bottom: 0.5rem;
}/*# sourceMappingURL=style.css.map */