@import "nuled.css";
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --accent: rgb(255, 212, 121);
  --font-base: "Roboto", sans-serif;
  --font-accent: "Bebas Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1F2A32;
  color: rgb(250, 250, 245);
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 1rem;
}

a {
  color: rgb(255, 255, 255);
}

.title-1 {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 96px;
}

.header {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: -webkit-image-set(url("../img/hero-bg.jpeg") 1x, url("../img/hero-bg@2x.jpeg") 2x);
  background-image: image-set(url("../img/hero-bg.jpeg") 1x, url("../img/hero-bg@2x.jpeg") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  height: auto;
}

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

.header-row {
  display: flex;
  width: 100%;
  position: fixed;
  top: 1px;
  background-color: rgba(31, 42, 50, 0.9);
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
}

.header-nav {
  display: flex;
  gap: 50px;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.burger__menu {
  display: none;
}

@media (max-width: 650px) {
  .burger__menu {
    display: block;
  }
}
#menu__toggle {
  display: none;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 11;
  margin: 0px 30px 0px 0px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: azure;
  transition-duration: 250ms;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 19rem;
  min-height: 30rem;
  margin: 0;
  padding: 6.5rem 0px 0px 0px;
  border-bottom: 1px solid white;
  border-radius: 0 0 0 50px;
  list-style: none;
  text-align: center;
  background-color: rgba(31, 42, 50, 0.95);
  z-index: 10;
  transition-duration: 1s;
}

.menu__items {
  display: block;
  padding: 10px 25px;
  color: azure;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transition-duration: 1s;
}

.menu__items:hover {
  background-color: rgba(126, 126, 129, 0.3);
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.c-btn {
  color: #FFF;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.c-btn:after {
  content: "";
  display: block;
  position: absolute;
}

.c-btn:before {
  content: "";
  display: block;
  position: absolute;
}

.c-btn--line:after {
  transform-origin: right;
  transform: scaleX(0);
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #FFF;
  transition: transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}

.c-btn--line:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}

.header-img {
  margin-top: 125px;
  text-align: right;
}

@media (max-width: 850px) {
  .header-logo {
    display: none;
    text-align: center;
  }
  .img-img {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .header-logo {
    display: block;
  }
  .header-nav {
    display: none;
  }
  .header-img {
    min-height: 300px;
  }
  .img-img {
    margin: 0 auto;
    max-width: 300px;
    min-height: 280px;
    background: url("../img/hero-logo.png") 0 0/100% 100% no-repeat;
  }
  .big-logo {
    display: block;
  }
  .big-logo {
    display: none;
  }
}
.section {
  margin: 0 auto;
  padding: 150px 0;
}

.section-header {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.section-header p {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0px;
  text-align: center;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(1.5rem, 8vw, 6rem);
  text-align: center;
}

.section-treners-grid {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 30px;
}

.card-trainer {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 268px;
  border-radius: 20px;
  overflow: hidden;
}
.card-trainer:hover .card-trainer-name {
  opacity: 1;
  top: 50%;
}

.card-trainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3) 100%);
}

.card-trainer-name {
  opacity: 0;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0px;
  transition: all 0.2s ease-in;
}

@media (max-width: 1100px) {
  .section {
    padding: 100px 0;
  }
  .section-treners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .section {
    padding: 70px 0;
  }
  .section-treners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .section {
    padding: 40px 0px 10px 0px;
  }
  .section-treners-grid {
    display: block;
  }
  .card-trainer-img {
    display: block;
    margin: 0 auto;
  }
  .card-trainer {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .card-trainer-name {
    opacity: 1;
    top: 50%;
  }
  .card-trainer::before {
    opacity: 1;
  }
}
.modals__blok {
  position: fixed;
  top: 10%;
  left: 25%;
  width: 50%;
  height: auto;
  padding: 10px;
  border-radius: 50px;
  background-color: rgba(102, 102, 102, 0.7);
  opacity: 0;
  z-index: 9;
  animation-name: circle;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes circle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 850px) {
  .modals__blok {
    left: 2.5%;
    width: 95%;
  }
}
.modals__blok-title {
  background-color: #1F2A32;
  width: 97%;
  border-radius: 50px 10px 50px 10px;
  box-shadow: 5px 0 5px 0 white;
  margin: 0 auto;
  padding: 10px;
}
.modals__blok-title h3 {
  text-align: center;
  color: #FFD479;
  font-family: var(--font-accent);
  font-size: clamp(1rem, 0.458rem + 2.89vw, 2.625rem);
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0px;
}
.modals__blok-title p {
  margin: 10px 0 0 0;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-align: center;
}

.knopka2 {
  display: block;
  margin: 0 auto;
  border: 1px solid #666;
  border-radius: 5px;
  min-width: 100px;
  height: auto;
  font-size: 15px;
  color: #1F2A32;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 5px;
  background-color: #F0BD51;
  text-transform: uppercase;
}

.knopka2:focus {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.knopka2:hover {
  background-color: white;
  color: #1F2A32;
}

.treiner-img {
  display: block;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.section-beast {
  position: relative;
  height: 750px;
  padding: 0 10px 0 10px;
  display: flex;
  align-items: center;
  background-image: -webkit-image-set(url("../img/beast-bg.jpeg") 1x, url("../img/beast-bg@2x.jpeg") 2x);
  background-image: image-set(url("../img/beast-bg.jpeg") 1x, url("../img/beast-bg@2x.jpeg") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  --angel: 7%;
  clip-path: polygon(0% var(--angel), 100% 0%, 100% calc(100% - var(--angel)), 0% 100%);
}

.section-beast-title {
  margin-bottom: 10px;
  font-family: var(--font-accent);
  color: rgb(255, 255, 255);
  font-size: clamp(1rem, -0.229rem + 6.56vw, 4.688rem);
  font-weight: 700;
  line-height: 75px;
  letter-spacing: 7.5px;
  text-align: left;
}

.section-beast-desk {
  margin-bottom: 30px;
}
.section-beast-desk p {
  margin-top: 15px;
  color: rgb(255, 255, 255);
  font-family: var(--font-accent);
  font-size: clamp(1rem, 0.875rem + 0.67vw, 1.375rem);
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: left;
}

.button {
  display: inline-block;
  padding: 15px 45px;
  border-radius: 7px;
  background: rgb(255, 212, 121);
  color: rgb(0, 0, 0);
  font-family: var(--font-base);
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 5px;
  text-align: center;
}
.button:hover {
  background: rgb(240, 189, 81);
}

@media (max-width: 800px) {
  .section-beast {
    padding: 100px 10px;
    height: auto;
  }
}
.blok-open {
  margin-top: 20px;
  padding: 10px 0 10px 0;
  place-items: center;
  height: auto;
  animation-name: forms;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes forms {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.blok-open-form {
  display: flex;
}

.input-group {
  position: relative;
  background-color: #161B21;
  margin: 0 0 0 10px;
}

.input-group label {
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  background-color: #161B21;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  text-transform: capitalize;
  pointer-events: none;
  font-size: 20px;
  transition: all 0.3s;
}

.input-group input {
  padding: 18px 15px;
  width: 300px;
  border: 1px solid #fff;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  background-color: transparent;
  border-radius: 10px;
}

.input-group input:not(:-moz-placeholder) + label {
  top: 0;
  font-size: 16px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 16px;
}

.section-beast-btn-wrapper {
  margin: 0 0 0 10px;
}

.button-blok {
  display: inline-block;
  padding: 18px 15px;
  width: 300px;
  border-radius: 10px;
  background: #8D8B8E;
  border: 1px solid white;
  color: white;
  font-family: var(--font-base);
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 5px;
  text-align: center;
}
.button-blok:hover {
  background: rgb(240, 189, 81);
  color: #161B21;
}

@media (max-width: 1000px) {
  .blok-open-form {
    display: block;
  }
  .input-group {
    margin: 30px 0 0 0;
    width: 500px;
  }
  .input-group input {
    width: 500px;
  }
  .button-blok {
    margin: 10px 0 0 0;
  }
  .section-beast-btn-wrapper {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 550px) {
  .input-group {
    width: 290px;
  }
  .input-group input {
    width: 290px;
  }
  .button-blok {
    width: 290px;
  }
}
.section-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 105px 32px;
}

@media (max-width: 1200px) {
  .section-groups-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 32px;
  }
}
@media (max-width: 900px) {
  .section-groups-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 32px;
  }
}
@media (max-width: 600px) {
  .section-groups-grid {
    display: block;
  }
}
.card-group {
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

.card-group-img {
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
}
.card-group-img:hover {
  transform: scale(1.01);
}

.card-group-title {
  color: rgb(255, 212, 121);
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  text-align: left;
}
.card-group-title:hover {
  transform: scale(1.01);
}

@media (max-width: 600px) {
  .card-group-title {
    text-align: center;
  }
}
.section-groups {
  padding: 10px;
  border-radius: 50px 5px 50px 5px;
  box-shadow: -2px -2px 2px 2px whitesmoke;
  animation-name: blox;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes blox {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.section-groups-blok {
  display: flex;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 15px;
}

@media (max-width: 750px) {
  .section-groups-blok {
    display: block;
    margin: 0 auto;
  }
}
.section-groups-img {
  display: block;
  justify-items: center;
}

@media (max-width: 750px) {
  .section-groups-img {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.section-groups-title {
  padding: 10px;
  justify-items: center;
}
.section-groups-title h3 {
  color: rgb(255, 212, 121);
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 5px 0;
}
.section-groups-title p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.section-zapis-form {
  display: block;
  width: 500px;
  position: relative;
  top: 5px;
  left: 0;
  background-color: #1F2A32;
  border-radius: 10px;
  margin: 0 auto;
}
.section-zapis-form .input-zapis {
  position: relative;
  margin: 0 auto;
  background-color: #1F2A32;
}

@media (max-width: 1150px) {
  .section-zapis-form {
    width: 250px;
  }
}
.input-zapis label {
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  background-color: #1F2A32;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  text-transform: capitalize;
  pointer-events: none;
  font-size: 20px;
  transition: all 0.3s;
}

.input-zapis input {
  margin-bottom: 20px;
  padding: 18px 15px;
  width: 500px;
  border: 1px solid #fff;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  background-color: transparent;
  border-radius: 10px;
}

@media (max-width: 1150px) {
  .input-zapis input {
    width: 250px;
  }
}
.input-zapis input:not(:-moz-placeholder) + label {
  top: 0;
  font-size: 16px;
}
.input-zapis input:focus + label,
.input-zapis input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 16px;
}

.button-zapis {
  margin: 0 auto;
}

.button-blok-zapis {
  display: inline-block;
  padding: 18px 15px;
  width: 300px;
  border-radius: 10px;
  background: #8D8B8E;
  border: 1px solid white;
  color: white;
  font-family: var(--font-base);
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 5px;
  text-align: center;
}
.button-blok-zapis:hover {
  background: rgb(240, 189, 81);
  color: #161B21;
}

@media (max-width: 1150px) {
  .button-blok-zapis {
    width: 250px;
  }
}
.contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: -webkit-image-set(url("../img/contact-form-bg.jpeg") 1x, url("../img/contact-form-bg@2x.jpeg") 2x);
  background-image: image-set(url("../img/contact-form-bg.jpeg") 1x, url("../img/contact-form-bg@2x.jpeg") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 860px;
}

@media (max-width: 1000px) {
  .contacts {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), -webkit-image-set(url("../img/contact-form-bg.jpeg") 1x, url("../img/contact-form-bg@2x.jpeg") 2x);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), image-set(url("../img/contact-form-bg.jpeg") 1x, url("../img/contact-form-bg@2x.jpeg") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.contacts-content {
  max-width: 615px;
  margin: 0 auto;
}

.contacts-title {
  margin-bottom: 40px;
  color: rgb(255, 212, 121);
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 0.542rem + 5.11vw, 4.375rem);
  font-weight: 700;
  line-height: 70px;
  text-align: left;
}

.contacts-form {
  display: grid;
  gap: 30px;
}

.contacts-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.contacts-input {
  display: block;
  width: 100%;
  padding: 5px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.7882352941);
}

.textarea {
  display: block;
  background: transparent;
  padding: 5px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  resize: vertical;
  outline: none;
  color: rgba(255, 255, 255, 0.7882352941);
  line-height: 1.5;
  width: 100%;
  height: 157px;
}

.footer {
  padding: 70px 0;
}

.footer a:hover {
  color: var(--accent);
}

.footer-socials {
  margin-bottom: 30px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer-socials-li {
  display: block;
}
.footer-socials-li:hover {
  transform: scale(1.2);
}

.footer-contacts {
  display: flex;
  gap: 50px;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 500px) {
  .footer {
    padding: 50px 0;
  }
  .footer-socials {
    gap: 30px;
  }
  .footer-contacts {
    flex-direction: column;
    row-gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */