/* Reset */
* {
  box-sizing: border-box;
}

.html{
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
}



/* ################################  HEADER  STYLING  ###################### */


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background-color: white;
  border-bottom: 2px solid #000000;
  position: relative;
  flex-wrap: wrap; 
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000; 
  background-color: #ffffff; 
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  width: auto;
}

.logo span {
  font-family: 'Italianno', cursive;
  font-size: 2.1rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
  white-space: nowrap;
}

.horizontal-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.horizontal-menu ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.7s ease;
}

.horizontal-menu ul li a:hover {
  color: #ffffff;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  padding: 10px 10px;
}










/* Languages menu styling */

/* Header language toggle button */



/* Language toggle button */
.header-lang-toggle {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin-left: 15px;
}

.header-lang-toggle:hover {
  background: #111;
}

.header-lang-toggle i {
  color: #111;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.header-lang-toggle:hover i {
  color: #fff;
}

/* Dropdown menu like main dropdown */
.header-lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;       /* hidden by default */
  flex-direction: column;
  background: white;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  z-index: 1000;
  user-select: none;
  padding: 15px 0;
}

.header-lang-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-lang-options ul li {
  padding: 10px 20px;
}

.header-lang-options .lang-btn {
  position: relative;
  padding: 10px 20px;
  width: 100%;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-lang-options .lang-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.header-lang-options .lang-btn:hover::before,
.header-lang-options .lang-btn:focus::before {
  width: 100%;
}

.header-lang-options .lang-btn:hover,
.header-lang-options .lang-btn:focus {
  color: white;
}

/* Show dropdown when active */
.header-lang-toggle.active .header-lang-options {
  display: flex;
  flex-direction: column;
}


/* ==================== Header Language Dropdown for Small Screens ==================== */
@media (max-width: 768px) {
  .header-lang-options {
    position: absolute; 
    top: 100%;          
    left: 0;
    width: 100%;       
    border: none;
    box-shadow: none;
    padding: 10px 0;
    flex-direction: column;
    background: white;
    display: none;      
    z-index: 1000;
  }

  .header-lang-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-lang-options ul li {
    padding: 12px 30px;  
  }

  /* Show dropdown when toggle active */
  .header-lang-toggle.active .header-lang-options {
    display: flex;
  }
}












/* Hamburger icon */
.nav-icon {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.nav-icon div {
  height: 4px;
  background-color: black;
  border-radius: 2px;
}

/* Dropdown menu - hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 50px;
  background: white;
  border: 1px solid #000000;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  padding: 15px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-radius: 5px;
  user-select: none;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu ul li {
  padding: 10px 20px;
}

.dropdown-menu ul li a {
  position: relative;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  overflow: hidden;
}

/* Smooth text color change on hover */
.dropdown-menu ul li a:hover,
.dropdown-menu ul li a:focus {
  color: white;
  outline: none;
}

/* Creating a sliding highlight bar */
.dropdown-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

/* Animating highlight bar on hover/focus */
.dropdown-menu ul li a:hover::before,
.dropdown-menu ul li a:focus::before {
  width: 100%;
}

/* Showing dropdown when active */
.dropdown-menu.active {
  display: flex;
}



/* =========================================================================== */
/* =========================================================================== */

/* Responsive Design adjustments */


@media (max-width: 768px) {
  .horizontal-menu {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px 0;
  }

  .dropdown-menu ul li {
    padding: 12px 30px;
  }

  header {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .logo span {
    display: none;
  }
}







/* ################################  NAVIGATIONS BUTTONS (TOP) STYLING  ###################### */




.navigation-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
    padding: 30px 0;
}

.navigation {
    background: linear-gradient(135deg, rgb(13, 19, 45) 0%, rgb(20, 28, 65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 25px 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    color: #000000;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 12px 35px;
    margin: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 
        background-color 0.4s ease-in-out, 
        color 0.4s ease-in-out, 
        border-color 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out,
        transform 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background-color: #000;
    color: #ffffff;
    border-color: white;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}



/* =========================================================================== */
/* =========================================================================== */


/* Responsive Design adjustments */

@media (max-width: 768px) {
    .nav-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}







/* ################################  Page Content Wrapper (background) ###################### */



.overview-main {
    background: url('../graphics/Bckground-about 2.png') no-repeat center center / cover;
    margin-top: 0;
    padding: 40px 0;
    background-attachment: fixed;
}




/* ################################  'ABOUT US' / 'OVERVIEW'  SECTION ###################### */



.overview {
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgb(13, 19, 45);
  color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 2rem;
}

.overview span {
  color: rgb(0, 0, 0);
}

.overview p {
  font-family: "Be Vietnam Pro";
  margin-left: 140px;
  font-size: 1.1rem;
  margin-top: 30px;
}

/* Who We Are */
.who-we-are {
  display: flex;
  gap: 2rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}

.who-we-are .text-left {
  flex: 1;
  min-width: 280px;
}

.who-we-are h2 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

/* Contacts + Map */
.contacts-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contacts-info, .map {
  flex: 1;
  min-width: 280px;
}

.map {
  border: 4px solid #ffffff;
  border-radius: 4px;
  padding-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.map:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

.contacts-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-family: "Be Vietnam Pro";
  background-color: white;
  border-radius: 6px;
  font-weight: 200;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  border: 3px solid black;
}

.contacts-info:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

.contacts-info h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #000;
  margin-left: 20px;
}

.contact-item {
  display: flex;
  align-items: center; 
  gap: 15px; 
  margin-bottom: 20px;
}

.icon-circle {
  flex-shrink: 0; 
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(158, 150, 150); 
  color: rgb(0, 0, 0);
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  margin-left: 20px;
}

.icon-circle:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
}

.contact-item span {
  font-size: 17px;
  font-weight: 400;
}


/* Goal & Vision */
.goal-vision {
  max-width: 1200px;
  margin: 3rem auto;
  background-color: rgb(13, 19, 45);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  text-align: center;
}

.goal-vision h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Be Vietnam Pro';
}

.goal-vision h2 span {
  color: rgb(255, 255, 255);
  background-color: black;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.goal-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.goal-card {
  background-color: white;
  color: black;
  flex: 1 1 280px;
  padding: 1.5rem;
  border-radius: 12px;
  border: 3px solid black;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease-in-out;
  font-family: "Be Vietnam Pro", sans-serif;
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.6);
}

.goal-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-decoration: underline;
  font-weight: 600;
}

.goal-card p {
  font-size: 1rem;
  line-height: 1.6;
}






/* =========================================================================== */
/* =========================================================================== */



/* Responsive Design adjustments */
@media (max-width: 900px) {
  .who-we-are {
    flex-direction: column;
    margin-bottom: 3rem;
  }

  .contacts-section {
    flex-direction: column;
    gap: 1rem;
  }

  .contacts-info, .map {
    margin: 0 auto;
    width: 90%;
  }

  .goal-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .overview p {
    margin-left: 0;
    font-size: 1rem;
  }

  .contacts-info h3 {
    margin-left: 0;
    text-align: center;
  }

  .contacts-section {
    padding: 0 10px;
  }

  .map {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
    padding: 0;
    border: 3px solid #fff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .map iframe, .map img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .contacts-info {
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 20px;
  }
}









/* ################################  NAVIGATION BUTTONS  SECTIONS! ###################### */





.end-btns {
  display: flex;
  background-color: rgb(13, 19, 45);
  justify-content: space-between;
  padding: 10px; 
}

.section-end-btn {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out,
              color 0.5s ease-in-out,
              border-color 0.5s ease-in-out,
              box-shadow 0.5s ease-in-out;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.section-end-btn:hover {
  background-color: black;
  color: white;
  border-color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}






/* ################################  'OUR TEAM' / 'TRAINERS' SECTION ###################### */




.trainers-section {
    max-width: 1200px;
    margin: 3rem auto;
    background-color: #0d132d; 
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.team-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
}

.trainer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #000000, rgb(13,19,45)); 
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 6px 15px rgba(255,255,255,0.05); 
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.1); 
}

/* Profile image */
.trainer-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #1c1c1c;
    background-size: cover;
    background-position: center;
    border: 3px solid #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#TK .trainer-image {
    background-image: url('../graphics/Trainer-T-K.png');
}

#DL .trainer-image {
    background-image: url('../graphics/Trainer-D-L.jpg');
}

#VZ .trainer-image {
    background-image: url('../graphics/Trainer-V-Z.png');
}

.trainer-card:hover .trainer-image {
    transform: scale(1.05);
}

/* Info */
.trainer-info h3 {
    margin: 0 0 0.6rem 0;
    font-size: 1.6rem;
    color: #ffffff;
  }

.info-btn {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;    
  margin-left: 3px;
  border-radius: 5px;
  transition: all 0.3 ease-in-out;
}

.info-btn:hover {
  color: #ffffff; 
  background-color: rgb(13, 19, 45);
}


.trainer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.trainer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trainer-contact .contact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0d132d;
    border-radius: 50%;
    font-size: 17px;
    flex-shrink: 0;
}

.trainer-contact .contact-text {
    font-size: 1rem;
    color: #dddddd;
}

.trainer-contact b {
    color: #ffffff;
}

.trainer-quote {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 2rem;
    color: #ffffff;
}

/* Phone field */
.trainer-phone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease-in-out;
}

.phone-link:hover {
    background: rgba(255, 255, 255);
    color:black;
    transform: scale(1.05);
}

.phone-link i {
    font-size: 1.2rem;
}



/* V-Z TRAINER MODAL     |   V-Z TRAINER MODAL   |   V-Z TRAINER MODAL*/

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  color:black;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  margin-top: 20%;
}

.modal-content h2 {
  text-decoration: underline;
  margin-bottom: 1.8rem;
}

.close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 35px;
  border-radius: 5px;
  padding: 0px 5px;
  cursor: pointer;
  color:white;
  background-color: rgb(13, 19, 45); 
  transition:all 0.4s ease-in-out 
}

.close:hover {
  color:white;
  background-color: red;  
}








/* ################################  DROPDOWN  BOOKING INFO SECTION  ###################### */



.booking-section {

    margin: 4rem auto 4rem auto;
    background: rgb(13,19,45);
    border-radius: 12px;
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(255,255,255,0.05);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #000000, rgb(13,19,45));
    transition: background 0.3s ease;
}

.booking-header:hover {
    background: linear-gradient(135deg, rgb(13,19,45), #000000);
}

.booking-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.booking-section.active .toggle-btn {
    transform: rotate(180deg);
}

.booking-description {
    display: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.booking-section.active .booking-description {
    display: block;
}



/* =========================================================================== */
/* =========================================================================== */


/* Responsive Design adjustments */

@media (max-width: 768px) {
    .trainer-card {
        flex-direction: column;
        text-align: center;
    }
    .trainer-phone {
        margin-top: 1rem;
        align-items: center;
    }
    .trainer-image {
        margin-bottom: 1rem;
    }
}






/* ################################    'GALLERY'   SECTION  ###################### */



/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #0d132d;
    border-radius: 20px;
}

.section-heading h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}



/* Poster + Copytright Section */

.poster-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #0d132d; 
    border-radius: 20px;
    color: #ffffff;
    margin-top: 4rem;
}

.poster-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.poster-image img:hover {
    transform: scale(1.03);
}

.copyright-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
    flex: 1; 
    border-left: 4px solid white;
    padding-left: 20px;
    border-right: 4px solid white;
    padding-right: 20px;
}




/* =========================================================================== */
/* =========================================================================== */


/* Responsive Design adjustments */

@media (max-width: 768px) {
    .poster-section {
        flex-direction: column;
        text-align: center;
    }
    .poster-image img {
        max-width: 100%;
    }
}









/* ################################  PAGE FOOTER  STYLING  ###################### */



footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%; /* make horizontal padding % instead of fixed px */
  background-color: #f8f8f8;
  color: rgb(0, 0, 0);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  border-top: 2px solid black;
  flex-wrap: wrap; 
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact links styling */
.left-contact, .right-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  cursor: pointer;
  flex-shrink: 0; /
}

/* Hover effects */
.left-contact:hover, .right-contact:hover {
  background-color: rgb(13, 19, 45);
  color: #f0f0f0;
}

.left-contact:hover i, .right-contact:hover i {
  color: #f0f0f0;
}

/* Footer headings */
footer h5 {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
}

/* RESPONSIVE: For screens smaller than 768px */
@media (max-width: 768px) {
  .lang-toggle {
    display: none;
  }
}




