/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
   
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

ul{
    margin-left: 5%;
}
a{
    color: black;
}

.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    text-align: center;
    flex: 1;
    padding-left: 10%;
}

.logo-section img {
    display: block;
    margin: 0 auto;
    border: none;  /* Ensure no border */
    outline: none; /* Remove any outline */
    box-shadow: none; /* Remove any box-shadow that might look like a border */
}



.social-icons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.social-icons a {
    display: inline-block;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background-color: rgb(253, 242, 248); /* Pink */
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

/* Ensure menu is hidden by default */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the toggle button */
    }

    .nav-section nav ul {
        display: none; /* Hide menu by default */
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Ensure the menu is displayed only when toggled */
    .nav-section nav ul.show {
        display: flex !important; /* Make sure it only shows when toggled */
    }

    .nav-section nav ul li {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }

    .nav-section nav ul li:last-child {
        border-bottom: none;
    }

    .nav-section nav ul li a {
        display: block;
        padding: 15px;
        color: black;
        text-decoration: none;
        font-size: 18px;
    }

    /* Fix the active menu item background */
    .nav-section nav ul li.active a {
        background-color: #dda1a1; /* Pink */
        color: white;
        border-radius: 5px;
        padding: 10px;
    }
}

.nav-section {
    text-align: center;
    width: 100%;
    margin-top: 10px;

}

.nav-section nav ul {
    list-style-type: none;
    padding: 0;
    margin-left: 0;
}

.nav-section nav ul li {
    display: inline;
    margin: 0 10px;
}

.nav-section nav ul li a {
    text-decoration: none;
    color: #000;
}
.nav-section nav ul li.active a {
    background-color: #fdf2f8; /* The pink color used on the site */
    color: black; /* Ensure text is readable */
    border-radius: 5px; /* Optional: Add rounded corners */
    padding: 5px 10px; /* Optional: Add padding for a better visual effect */
}


img {
    border: none;
    outline: none;
}

/* Slider styles */
.slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main content styles */
.main-content {
    
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10%;
    margin-left: 10%;
    padding: 3rem 1rem;

}
 
.welcome {
    text-align: justify-content;
    margin-bottom: 3rem;
 }

.welcome h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.welcome p {
    color: black;
    margin-bottom: 1rem;
}

 .wedding_packages{
    margin: 0 auto;
    padding: 0 2rem;
 }
 .packages{
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
              url('images/641_1.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.triangle {
  position: relative;
  background: rgb(253, 242, 248);
  height: auto;
  margin-bottom:10%;
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100px 0 100px;
  border-color: rgb(253, 242, 248) transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.background{
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
              url('images/BGPack.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}  
/* Services Container */
.services-container {
    margin: 0 auto;
    padding: 0 2rem;

}
.success-message {
    color: #f3dce6; /* Use the exact pink color of the button */
    font-weight: bold;
}


/* Service Block */
.service-block {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 4rem;
  

}

.service-content {
    max-width: 45%;
}

.service-title {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: normal;
}

.service-description {
    color: black;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-image {
    max-width: 45%;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.read-more {
    display: inline-block;
    font-style: italic;
    color: #666;
    text-decoration: none;
    background-color:#f3dce6;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Alternating Layouts */
.service-block:nth-child(even) .service-content {
    order: 2;
}

.service-block:nth-child(even) .service-image {
    order: 1;
}

/* Wedding Checklist */
.wedding-checklist {
    text-align: center;
    margin-top: 4rem;
}

.wedding-checklist h3 {
    font-family: 'Times New Roman', serif;
    font-weight: normal;
    font-size: 1.2rem;
    color: #333;
    background-color: #f3dce6;
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 20px;
}
/*Gallery*/
/* Responsive Image Gallery Grid */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 20px;
      
      background:  #fdf2f8;
      border-radius: 20px;
      margin: 20px auto;
    }

    .gallery img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    /* Hover effect for gallery images */
    .gallery img:hover {
      transform: scale(1.5);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }


 .gallery h1 {
      text-align: center;
      font-size: 4rem;
      margin-top: 40px;
      background: linear-gradient(to right, #ff0000, #ffff00);
      -webkit-background-clip: text;
      color: transparent;
      transition: background 0.5s ease;
    }

    .gallery h1:hover {
      background: linear-gradient(to right, #268000, #00fffb);
      -webkit-background-clip: text;
      color: transparent;
    }
 
/* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal img {
      max-width: 80%;
      max-height: 80%;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .modal .close {
      position: absolute;
      top: 30px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal .close:hover {
      color: #ff0000;
    }

/*Contact Form*/
.contact_us_green * {
  font-family: Nunito, sans-serif;
}

.contact_us_green .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
}

.contact_us_green input:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.contact_us_green textarea:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.contact_us_green .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.contact_us_green .responsive-cell-block {
  min-height: 75px;
}

.contact_us_green .responsive-container-block.container {
  max-width: 1320px;
  margin-top: 60px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
}

.contact_us_green .responsive-container-block.big-container {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
}

.contact_us_green .text-blk.contactus-head {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.contact_us_green .text-blk.contactus-subhead {
  max-width: 385px;
  color: #939393;
  font-size: 18px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.contact_us_green .contact-svg {
  padding-top: 0px;
  padding-right: 25px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 65px;
  height: 40px;
}

.contact_us_green .social-media-links {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  width: 250px;
  display: flex;
  justify-content: space-evenly;
}

.contact_us_green .social-svg {
  width: 35px;
  height: 35px;
}

.contact_us_green .text-box {
  display: flex;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.contact_us_green .contact-text {
  color: #939393;
}

.contact_us_green .input {
  height: 50px;
  width: 90%;
  border-top-width: 2.5px;
  border-right-width: 2.5px;
  border-bottom-width: 2.5px;
  border-left-width: 2.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #f3dce6;
  border-right-color: #f3dce6;
  border-bottom-color: #f3dce6;
  border-left-color: #f3dce6;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
}

.contact_us_green .textinput {
  height: 200px;
  width: 95%;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #f3dce6;
  border-right-color: #f3dce6;
  border-bottom-color: #f3dce6;
  border-left-color: #f3dce6;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.contact_us_green .submit-btn {
  min-width: 290px;
  height: 60px;
  background-color: #f3dce6;
  font-size: 18px;
  font-weight: 700;
  color: white;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #f3dce6;
  border-right-color: #f3dce6;
  border-bottom-color: #f3dce6;
  border-left-color: #f3dce6;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  cursor: pointer;
}

.contact_us_green .btn-wrapper {
  display: flex;
  justify-content: center;
}

.contact_us_green .text-blk.input-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}

.contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
}

.contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_us_green .head-text-box {
  display: none;
}

.contact_us_green .line {
  border-right-width: 1.8px;
  border-right-style: solid;
  border-right-color: #a2a2a2;
}

.contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 0px;
}

@media (max-width: 1024px) {
  .contact_us_green .responsive-container-block.container {
    justify-content: center;
  }

  .contact_us_green .text-blk.contactus-subhead {
    max-width: 90%;
  }

  .contact_us_green .head-text-box {
    display: block;
  }

  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 0px;
  }

  .contact_us_green .line {
    border-right-width: initial;
    border-right-style: none;
    border-right-color: initial;
    border-bottom-width: 1.8px;
    border-bottom-style: solid;
    border-bottom-color: #a2a2a2;
  }

  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .contact_us_green .workik-contact-bigbox {
    display: flex;
  }

  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
}
.footer {
    width: 100%;
    background: rgb(253, 242, 248);
    color: black;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.container {
    max-width: 1400px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.no-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer a {
  color: black;
  text-decoration: none;
}

footer a:hover, footer a:focus {
  color: #D55C5C;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    text-align: center;
}

.social-icon {
    width: 30px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.credits {
    font-size: 1rem;
    opacity: 0.9;
    color: black;
}

.credits a {
    color: dark grey;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
  .contact_us_green .text-content {
    display: none;
  }

  .contact_us_green .input {
    width: 100%;
  }

  .contact_us_green .textinput {
    width: 100%;
  }

  .contact_us_green .text-blk.contactus-head {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .contact_us_green .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .contact_us_green .workik-contact-bigbox {
    display: block;
  }

  .contact_us_green .text-blk.input-title {
    font-size: 16px;
  }

  .contact_us_green .text-blk.contactus-head {
    font-size: 26px;
  }

  .contact_us_green .text-blk.contactus-subhead {
    font-size: 16px;
    line-height: 23px;
  }

  .contact_us_green .input {
    height: 45px;
  }

  .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin: 0 0 25px 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-content, .service-image {
        max-width: 100%;
    }

    .service-image img {
        height: auto;
    }
    @media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .modal img {
    max-width: 90%;
  }
}

}
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
/* Responsive styles for smaller screens */
@media (max-width: 1024px) {
    .main-content, .services-container, .wedding_packages {
        width: 90%;
        margin: 0 auto;
    }

    .service-block {
        flex-direction: column;
        text-align: center;
    }

    .service-content,
    .service-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-section nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-section nav ul li {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* Hide background images on mobile */
    .background,
    .packages {
        background: none !important;
    }

    .welcome h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .welcome p {
        font-size: 1rem;
        text-align: justify;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .top-bar, .footer {
        flex-direction: column;
        align-items: center;
    }

    .logo-section img {
        max-width: 80%;
    }

    .social-icons {
        margin-top: 10px;
    }

    .gallery img {
        width: 100%;
        height: auto;
    }

    .submit-btn {
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .background {
        background: none !important; /* Removes background image */
    }
}
/* Show menu by default on large screens */
@media (min-width: 769px) {
    .nav-section nav ul {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        background: none;
        box-shadow: none;
    }

    .nav-section nav ul li {
        display: inline-block;
        padding: 15px;
    }

    .menu-toggle {
        display: none; /* Hide the mobile menu button on large screens */
    }
}

/* Ensure menu is hidden initially on small screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the toggle button */
    }

    .nav-section nav ul {
        display: none; /* Hide menu initially */
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Show menu when toggled */
    .nav-section nav ul.show {
        display: flex !important;
    }
}



