.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  background-color: #101113;
  color: white;
  margin: 0;
}
@media (max-width: 768px) {
  body {
    gap: 50px;
  }
}
body p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  margin: 0;
  padding: 0;
}
body span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: 0.1px;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
  color: white;
}
body a:visited {
  text-decoration: none;
  color: white;
}
body h1 {
  font-family: Antonio;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 57px; /* 123.913% */
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
body button {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: white;
  cursor: pointer;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

body.no-scroll {
  overflow: hidden;
}

.navbar {
  display: flex;
  position: sticky;
  margin-bottom: -200px;
  top: 0;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 88px;
  font-family: Roboto !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  background: rgba(16, 17, 19, 0.7019607843);
  opacity: 0.6;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: opacity 0.6s;
}
.navbar picture {
  display: flex;
  align-items: center;
  width: 206px;
  height: 40px;
  margin-left: 130px;
  cursor: pointer;
}
.navbar .buttons {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  gap: 56px;
}
.navbar .buttons :hover {
  color: #f26530;
}
.navbar .socials {
  display: flex;
  margin-right: 130px;
  gap: 25px;
  width: 72px;
  height: 24px;
}
.navbar .socials img {
  width: 24px;
  height: 24px;
}
.navbar .nav-hamburger {
  display: none;
}
@media (max-width: 1300px) {
  .navbar picture {
    margin-left: 40px;
  }
  .navbar .socials {
    margin-right: 40px;
  }
}
@media (max-width: 1000px) {
  .navbar {
    display: flex;
    align-items: center;
    height: 67px;
    font-size: 16px;
    background-color: black;
    opacity: 1;
  }
  .navbar picture {
    margin-left: 16px;
  }
  .navbar .buttons {
    display: none;
  }
  .navbar .socials {
    display: none;
  }
  .navbar .nav-hamburger {
    display: block;
    margin-right: 16px;
  }
}

.navbar:hover {
  opacity: 1;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  z-index: 10;
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  background: rgba(16, 17, 19, 0.9);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.hamburger-menu .hamburger-menu-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 35px;
}
.hamburger-menu .hamburger-buttons {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 23px;
  margin-top: 60px;
  margin-left: 35px;
}
.hamburger-menu .hamburger-buttons :active {
  color: #f26530;
}
.hamburger-menu .hamburger-socials {
  display: flex;
  gap: 53px;
  position: fixed;
  bottom: 10%;
  left: 35px;
}
.hamburger-menu .hamburger-socials a {
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1000px) {
  .hamburger-menu {
    display: hidden;
  }
}

.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slideshow .mySlides {
  display: none;
  opacity: 0;
}
.slideshow .mySlides img {
  width: 100%;
  height: auto;
}
.slideshow .fade {
  animation: fade 4s linear;
}
@keyframes fade {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
}
.slideshow .slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f26530;
  border: 1px solid #f26530;
  border-radius: 24px;
  width: 220px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slideshow .slider-button p {
  font-family: "Antonio";
  font-style: normal;
  color: white;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .slideshow {
    margin-top: 105px;
  }
}

.about-us {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.about-us h1 {
  text-align: center;
}
.about-us .about-us-text {
  max-width: 726px;
}
@media (max-width: 768px) {
  .about-us .about-us-text {
    padding: 0 16px;
  }
}

.image-grid img {
  width: 100%;
}

.what-is {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.what-is .what-is-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.what-is .what-is-text p {
  text-align: left;
  width: 70%;
}
.what-is .what-is-text h1 {
  width: 70%;
  text-align: left;
}
@media (max-width: 1000px) {
  .what-is {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    width: 100%;
  }
  .what-is .what-is-text {
    width: 90%;
  }
  .what-is .what-is-text p {
    width: 100%;
    text-align: left;
  }
  .what-is .what-is-text h1 {
    font-family: Antonio;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 41.6px */
    letter-spacing: 0.2px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
  }
}

.belt-rankings {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.belt-rankings .belt-ranking h1 {
  text-align: left;
}
.belt-rankings .belt-rank {
  display: flex;
  align-items: center;
  height: 43px;
}
.belt-rankings .belt-rank p {
  color: #fff;
  font-family: Antonio;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 220px;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .belt-rankings h1 {
    font-family: Antonio;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 41.6px */
    letter-spacing: 0.2px;
    text-transform: uppercase;
    width: 100%;
  }
}
.belt-rankings .line-container {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.belt-rankings .line-container .line {
  width: 100%;
  height: 100%;
  border-radius: 0 24px 24px 0;
  transition: width 0.5s;
}
.belt-rankings .line-container .white {
  background: linear-gradient(90deg, rgba(26, 26, 29, 0) 0%, #fff 100%);
  border-radius: 0 24px 24px 0;
  width: 23%;
  height: 100%;
  transition: width 0.5s;
}
.belt-rankings .line-container .blue {
  background: linear-gradient(90deg, rgba(26, 26, 29, 0) 0%, #3764a7 100%);
  border-radius: 0 24px 24px 0;
  width: 40%;
  height: 100%;
  transition: width 0.5s;
}
.belt-rankings .line-container .purple {
  background: linear-gradient(90deg, rgba(26, 26, 29, 0) 0%, #6d4e9a 100%);
  border-radius: 0 24px 24px 0;
  width: 60%;
  height: 100%;
  transition: width 0.5s;
}
.belt-rankings .line-container .brown {
  background: linear-gradient(90deg, rgba(26, 26, 29, 0) 0%, #9a584e 100%);
  border-radius: 0 24px 24px 0;
  width: 75%;
  height: 100%;
  transition: width 0.5s;
}
.belt-rankings .line-container .black {
  background: linear-gradient(90deg, rgba(26, 26, 29, 0) 0%, #2b2b2b 100%);
  border-radius: 0 24px 24px 0;
  width: 100%;
  height: 100%;
  transition: width 0.5s;
}
.belt-rankings .line-container span {
  display: none;
}
@media (max-width: 768px) {
  .belt-rankings .line-container .belt-rank {
    display: flex;
    gap: 40px;
  }
  .belt-rankings .line-container p {
    display: none;
  }
  .belt-rankings .line-container span {
    display: block;
    color: #fff;
    font-family: Antonio;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 150% */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 220px;
    text-align: left;
    margin: 0;
  }
}
@media (max-width: 1000px) {
  .belt-rankings .line-container .brown {
    width: 70%;
  }
  .belt-rankings .line-container .black {
    width: 75%;
  }
}
@media (max-width: 1300px) {
  .belt-rankings .line-container .purple {
    width: 50%;
  }
  .belt-rankings .line-container .brown {
    width: 60%;
  }
  .belt-rankings .line-container .black {
    width: 75%;
  }
}

.coaches-container {
  background-image: url("Images/Treneri/treneriCover.png");
  display: flex;
  flex-direction: row;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  width: 80%;
  border-radius: 24px;
  height: 700px;
  flex-grow: 1;
}
.coaches-container .coach {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  opacity: 100%;
  width: 50%;
  height: 100%;
  align-items: center;
}
.coaches-container .coach img {
  width: 250px;
  height: 300px;
}
.coaches-container .coach h2 {
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.1px;
  height: 30px;
  margin-bottom: 0;
}
.coaches-container .coach h3 {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.1px;
  height: 20px;
  margin-top: 20px;
  margin-bottom: 24px !important;
  text-transform: uppercase;
}
.coaches-container .coach p {
  width: 80%;
  height: 25%;
  text-align: center;
}
@media (max-width: 870px) {
  .coaches-container {
    display: none;
  }
}

.coaches-mobile-container {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.coaches-mobile-container .coach-mobile {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  background-image: url("Images/Treneri/treneriCover.png");
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  width: 90%;
  padding: 36px 0;
}
.coaches-mobile-container .coach-mobile .coach-mobile-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coaches-mobile-container .coach-mobile img {
  display: block;
  margin-left: 20px;
  width: 50%;
  height: 50%;
}
.coaches-mobile-container .coach-mobile p {
  width: 80%;
  padding: 0 10px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.coaches-mobile-container .coach-mobile h2 {
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px; /* 150% */
  letter-spacing: 0.1px;
}
.coaches-mobile-container .coach-mobile h3 {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px; /* 150% */
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
@media (max-width: 870px) {
  .coaches-mobile-container {
    display: flex;
  }
}

.schedule-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80%;
}
.schedule-container .schedule-notice {
  opacity: 0.4;
  margin-top: 65px;
  width: 45%;
}
@media (max-width: 900px) {
  .schedule-container .schedule-notice {
    margin-top: 24px;
    width: 90%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
}
.schedule-container .schedule-title {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 870px) {
  .schedule-container .schedule-title {
    width: 100%;
  }
}
.schedule-container .groups {
  display: flex;
  flex-direction: row;
  gap: 104px;
}
.schedule-container .groups .group-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  text-align: start;
  width: 45%;
}
.schedule-container .groups .group-container h1 {
  font-family: Antonio;
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #333333;
}
.schedule-container .groups .group-container .group-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 250px;
  background-color: #1a1a1d;
  border-radius: 24px;
  padding: 30px;
}
.schedule-container .groups .group-container .group-description .group-text {
  width: 85%;
  text-align: start;
  height: 65%;
}
@media (max-width: 870px) {
  .schedule-container .groups .group-container .group-description .group-text {
    height: 70%;
  }
}
.schedule-container .groups .group-container .group-description .pricing {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.schedule-container .groups .group-container .group-description .pricing .amount {
  font-family: Antonio;
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #f26530;
}
.schedule-container .groups .group-container .group-description .currency {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.schedule-container .groups .group-container .group-description .currency h3 {
  font-family: Roboto;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.1px;
  text-align: left;
  margin: 0;
}
.schedule-container .groups .group-container .group-description .currency-text {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.1px;
  text-align: left;
}
.schedule-container .groups .group-container .timetable {
  display: flex;
  flex-direction: column;
  height: 250px;
  background-color: #1a1a1d;
  border: 1px solid #f26530;
  border-radius: 24px;
  justify-content: center;
  padding: 40px;
  gap: 40px;
}
@media (max-width: 450px) {
  .schedule-container .groups .group-container .timetable {
    padding: 15px;
  }
}
.schedule-container .groups .group-container .timetable .schedule-weekly {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.schedule-container .groups .group-container .timetable .schedule-weekly-top {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 40%;
  flex-grow: 1;
}
@media (max-width: 400px) {
  .schedule-container .groups .group-container .timetable .schedule-weekly-top img {
    width: 40px;
    height: 40px;
  }
}
.schedule-container .groups .group-container .timetable .schedule-weekly-top p {
  font-family: Roboto;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.1px;
  text-align: left;
}
@media (max-width: 400px) {
  .schedule-container .groups .group-container .timetable .schedule-weekly-top p {
    font-size: 20px;
  }
}
.schedule-container .groups .group-container .timetable .schedule-weekly-time {
  color: white;
  font-family: Antonio;
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
  letter-spacing: 0.2px;
  text-align: right;
}
@media (max-width: 400px) {
  .schedule-container .groups .group-container .timetable .schedule-weekly-time {
    font-size: 30px;
  }
}
.schedule-container .groups .group-container .timetable .schedule-weekly-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 400px) {
  .schedule-container .groups .group-container .timetable .schedule-weekly-bottom img {
    width: 40px;
    height: 40px;
  }
}
.schedule-container .groups .group-container .timetable .schedule-weekly-bottom p {
  font-family: Roboto;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.1px;
  text-align: left;
}
@media (max-width: 400px) {
  .schedule-container .groups .group-container .timetable .schedule-weekly-bottom p {
    font-size: 20px;
  }
}
@media (max-width: 870px) {
  .schedule-container .groups {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .schedule-container .groups .group-container {
    width: 100%;
  }
  .schedule-container .groups h1 {
    text-align: center !important;
  }
}
@media (max-width: 870px) {
  .schedule-container {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
}

.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner picture {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  width: 80%;
  background-image: url("./Images/form-background.svg");
  padding: 80px;
  background-position: center;
  background-color: #1a1a1d;
  border-radius: 24px;
  height: 80%;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .contact-form {
    padding: 40px;
    width: 80%;
  }
}
@media (max-width: 800px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: 100%;
    padding: 30px 0;
  }
}
.contact-form .form-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  gap: 40px;
}
@media (max-width: 800px) {
  .contact-form .form-left {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.contact-form .form-left p {
  text-align: left;
  width: 55%;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.2px;
}
@media (max-width: 1200px) {
  .contact-form .form-left p {
    width: 80%;
  }
}
@media (max-width: 800px) {
  .contact-form .form-left p {
    width: 90%;
    text-align: center;
  }
}
.contact-form .form-left h1 {
  width: 60%;
  margin: 0;
}
@media (max-width: 1200px) {
  .contact-form .form-left h1 {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .contact-form .form-left h1 {
    width: 100%;
    text-align: center;
  }
}
.contact-form .form-left .form-left-contact {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.contact-form .form-left .form-left-contact address {
  display: flex;
  gap: 16px;
}
.contact-form .form-left .form-left-contact address img {
  width: 32px;
  height: 32px;
}
.contact-form .form-left .form-left-contact .form-number {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.contact-form .form-left .form-left-contact {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.contact-form .form-left .form-left-contact address {
  display: flex;
  gap: 16px;
}
.contact-form .form-left .form-left-contact address img {
  width: 32px;
  height: 32px;
}
@media (max-width: 900px) {
  .contact-form .form-left .form-left-contact address {
    display: none;
  }
}
.contact-form .form-left .form-left-contact .form-number {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 900px) {
  .contact-form .form-left .form-left-contact .form-number {
    display: none;
  }
}
.contact-form .form-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 800px) {
  .contact-form .form-right {
    width: 90%;
    align-items: center;
    justify-content: center;
  }
}
.contact-form .form-right input {
  width: 90%;
  color: white;
  background-color: #272727;
  height: 50px;
  padding: 24px;
  border-radius: 16px;
  outline: none;
  border: none;
  opacity: 80%;
}
@media (max-width: 800px) {
  .contact-form .form-right input {
    padding: 10px;
  }
}
.contact-form .form-right input:focus {
  border: 2px solid #f26530;
  border-radius: 16px;
  outline: none;
  opacity: 80%;
  opacity: 100%;
}
.contact-form .form-right textarea {
  color: #ffffff;
  background-color: #272727;
  width: 90%;
  border: none;
  border-radius: 16px;
  padding: 24px;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  resize: none;
  opacity: 80%;
}
@media (max-width: 800px) {
  .contact-form .form-right textarea {
    padding: 10px;
  }
}
.contact-form .form-right textarea:focus {
  border: 2px solid #f26530;
  border-radius: 16px;
  outline: none;
  opacity: 100%;
}
.contact-form .form-right .form-button {
  width: 97%;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background-color: #f26530;
  outline: none;
  border: none;
  color: #fff;
  font-family: Antonio;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
.contact-form .form-right .form-button .form-button:active {
  outline: none;
}

footer {
  background-image: url("Images/footer.png");
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  width: 90%;
}
footer .footer-content p {
  opacity: 0.6;
  font-size: 12px;
}
@media (max-width: 1100px) {
  footer .footer-content {
    display: none;
  }
}
footer .footer-content .socials {
  display: flex;
  gap: 24px;
}
footer .footer-content .footer-logo {
  margin-left: 200px;
}
footer .footer-content-mobile {
  display: none;
}
@media (max-width: 1099px) {
  footer .footer-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    padding: 30px 0;
  }
  footer .footer-content-mobile .footer-logo img {
    width: 230px;
  }
  footer .footer-content-mobile .footer-form-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
  footer .footer-content-mobile .footer-form-number :nth-child(1) {
    opacity: 0.6;
  }
  footer .footer-content-mobile address :nth-child(1) {
    opacity: 0.6;
  }
  footer .footer-content-mobile .footer-design {
    opacity: 0.6;
  }
  footer .footer-content-mobile .socials {
    display: flex;
    gap: 24px;
  }
}