* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Lora', 'Montserrat', sans-serif;
  }
  
  body {
    background: #C7B7B3;	
  }

  hr {
    max-width: 1172px;
    margin: 0 auto;
    border: none;
    height: 3px;
    background-color: #ccc;
  }
  
  
  .navbar {
    background: #d9d9d9;
    height: 80px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-radius: 85px;
    box-shadow: 0px 4px 7px -2px rgba(43, 38, 38, 0.25);
    margin-left: auto; /* Add this line to push the navbar to the center */
    margin-right: auto; /* Add this line to push the navbar to the center */
    max-width: 1172px;
  }
  
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
  }
  
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  .navbar__item {
    height: 80px;
  }
  
  .navbar__links {
    font-family: 'Montserrat', sans-serif;
    color: #403024;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 15px;
    padding: 0 20px;
    height: 50px; /* thinner height */
    border-radius: 25px; /* half of the height for a rounded effect */
    border: none; /* remove the default button border */
    background-color: #D9D9D9; /* add a background color */
    transition: background-color 0.5s ease-in-out;
  }
  .navbar__links:hover {
    background-color: #9E93A2;
    color: #574F88;
  }
  .navbar__links.active {
    background-color: #725A7B;
    color: #D9D9D9;
  }
  
  @media screen and (max-width: 960px) {
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
  
    .navbar__menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 1;
      transition: all 0.5s ease;
      height: 50vh;
      z-index: -1;
    }
  
    .navbar__menu.active {
      background: #d9d9d9;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 50vh;
      font-size: 1.6rem;
    }
  
    #navbar__logo {
      padding-left: 25px;
    }
  
    .navbar__toggle .bar {
      position: flex;
      width: 25px;
      height: 3px;
      margin: 6.5px auto;
      transition: all 0.3s ease-in-out;
      background: #484848;
    }
  
    .navbar__item {
      width: 100%;
    }
  
    .navbar__links {
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: table;
    }
  
    .navbar__btn {
      padding-bottom: 2rem;
    }
  
    .button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 80%;
      height: 80px;
      margin: 0;
    }
  
    #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
    }
  
    .navbar__toggle .bar {
      display: block;
      cursor: pointer;
    }
  
    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }
  
    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  
.main {
    padding-top: 20px;
  }
  
.hero-couture {
    background-image: url('images/couture-bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 70px 0 0px;
    font-size: 24px;
    min-height: 70vh;
  }
  
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
  }
  
.hero-text {
    flex: 1;
    text-align: right;
    margin-left: 50px;
  }
  
.hero-text h1 {
    padding: 10px 10px;
    font-family: 'Georgia';
    font-style: italic;
    font-weight: 700;
    font-size: 96px;
    line-height: 109px;
    text-align: right;
    text-transform: capitalize;
    color: #3C3C3C;
    text-shadow: 7px 6px 9px #D6BDA4;
  }
  
.hero-text p {
    max-width: 535px;
    font-family: 'Lora';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 31px;
    text-align: right;
    color: #3C3C3C;
  }
  
.hero-image {
    flex: 1;
    text-align: left;
    max-width: 336px;
    margin-left: 30px;
  }
  
.hero-image img {
    max-width: 100%;
    height: auto;
  }
  
@media only screen and (max-width: 768px) {
    .hero-container {
      padding: 0;
    }
    .hero-content {
      flex-direction: column;
      text-align: center;
      margin-left: 30px;
      margin-right: 30px;
    }
  
    .hero-text {
      margin: 0;
      text-align: center;
    }

    .hero-text h1 {
        font-size: 84px;
        text-align: center;
    }

    .hero-text p {
        text-align: center;
        font-size: 24px;
    }
  
    .hero-image {
      display: none;
    }
  }

.btn-content {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #D7D5D2;
    
  }
  
.hero-btn {
    margin: 20px auto;
    padding: 16px 59px;
    width: 354px;
    height: 61px;
    border: none;
    background: #3C3C3C;
    box-shadow: 0px 0px 10px 3px rgba(55, 45, 45, 0.32), inset 0px 1px 7px 2px rgba(172, 106, 106, 0.59);
    border-radius: 82px;
    transition: all 300ms ease-in-out;
  }
  
.hero-btn:hover {
    justify-content: center;
    align-items: center;
   /* padding: 16px 59px;*/
    width: 354px;
    height: 61px;
    background-color: #9E93A2;
    box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
    border-radius: 82px;
}
  
.counter-section {
    display: flex;
    min-height: 495px;
    align-items: center;
    justify-content: center;
    align-content: center;
}
  
.counter__content {
    width: 1137px;
    padding: 30px;
    margin: 0 70px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}
  
.counter__image {
    max-width: 534px;
    flex: 1;
    margin-right: 40px;
  }
  
.counter__image img {
    max-width: 100%;
    height: auto;
  }
  
.counter__text {
    flex: 1;
    max-width: 460px;
    text-align: center;
    padding-right: 0px;
    padding-left: 61px;
  }
  
.counter__text p {
    color: #473D32;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 151.9%;
  }
  
@media only screen and (max-width: 960px) {
    .counter__image {
      margin-left: 0;
    }
  
    .counter__content {
      flex-direction: column;
    }
  
    .counter__image {
      margin-right: 0;
      margin-bottom: 20px;
      padding: 0;
    }
  
    .counter__text {
      font-family: 'Montserrat', sans-serif;
      max-width: none;
      text-align: center;
      padding: 0;
    }
}

.products {
    padding: 30px 0;
  }
  
  .products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-column {
    flex: 1;
    max-width: 300px;
    margin: 20px;
    text-align: center;
  }
  
  .product-heading {
    font-family: 'Georgia';
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2b2522;
  }
  
  .product-description {
    color: #473D32;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 151.9%;
  }  

  .product-image {
    max-width: 100%;
  }
  
  @media only screen and (max-width: 768px) {
    .product-column {
      flex: 1 1 100%;
    }
  }
  
  .tailoring-services {
    padding: 40px 0;
  }
  
  .tailoring-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
  }
  
  .tailoring-heading {
    font-family: 'Georgia';
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2b2522;
  }
  
  .tailoring-paragraph {
    text-align: center;
    color: #473D32;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 151.9%;
  }
  
  .footer-pane {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    min-height: 466px;
    background: #16171B;
  }
  

  .feedback-form {
    background: #D9D9D9;
    border: none;
    border-radius: 85px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 28px auto;
    height: 130px;
  }
  
  .feedback-text {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-style: bold;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #403024;
    margin: auto;
    max-width: 300px;
  }
  
  .feedback-btn {
    margin: 40px auto;
    padding: 9px auto;
    width: 220px;
    height: 50px;
    border: none;
    background: #3C3C3C;
    box-shadow: 0px 0px 10px 3px rgba(55, 45, 45, 0.32), inset 0px 1px 7px 2px rgba(172, 106, 106, 0.59);
    border-radius: 82px;
    transition: all 300ms ease-in-out;
    z-index: 70;
  }
  
  .feedback-btn:hover {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px auto;
    width: 220px;
    height: 50px;
    background-color: #9E93A2;
    box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
    border-radius: 82px;
  }
  
  .feedback-btn-content {
    text-decoration: none;
    text-align: center;
    font-style: normal;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #C2C1BF;
  }
  
  @media only screen and (max-width: 960px) {
  
    .feedback-form {
      padding: auto;
      display: flex;
      width: 100%;
      min-height: 160px;
      align-items: center;
      align-content: center;
    }
  
    .feedback-text {
      width: 100%;
      margin-bottom: none;
      margin-left: auto;
      margin-right: auto;
    }
  
    .feedback-btn {
      margin-top: 12px;
      margin-bottom: 20px;
      transition: all 300ms ease-in-out;
    }
  
    .feedback-btn:hover {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background-color: #9E93A2;
      box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
    }
  
    .feedback-btn-content {
      text-decoration: none;
      text-align: center;
      font-style: normal;
      font-size: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: #C2C1BF;
    }
  }
  
  .cta-section {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    max-width: 1440px;
    min-height: 223px;
    margin: 150px auto;
  }
  
  .cta-find-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
    color: #D6BDA4;
    margin-right: 20px;
  }
  
  .cta-find-us h5 {
    margin-bottom: 10px;
  }
  
  .cta-find-us a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #C7B7B3;
    line-height: 22px;
  }
  
  .cta-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
    color: #D6BDA4;
    margin-left: 20px;
  }
  
  .cta-navigation h5 {
    margin-bottom: 10px;
  }
  
  .cta-navigation a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    color: #C7B7B3;
    line-height: 22px;
  }

  .copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
    color: #D6BDA4;
    max-height: 22px;
    margin-top: 150px;
  }
  
  .copyright p {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #C7B7B3;
    padding-left: 5px;
  }