*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: #333;
  background-color: var(--light-grey-1);
  overflow-x: hidden;
}

.heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.2rem;
}

@media only screen and (max-width: 56.25em) {
  .heading {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}

.heading--white {
  color: var(--light-grey-1);
}

.heading-tertiary--white {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: var(--light-grey-1);
}

@media only screen and (max-width: 56.25em) {
  .heading-tertiary--white {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

:root {
  --primary-color: #1c2024;
  --light-grey-1: #fafafa;
  --light-grey-2: #c0c0c0;
  --medium-grey-1: #36454f;
  --medium-grey-2: #708090;
  --dark-grey-1: #2f2f2f;
  --dark-grey-2: #2f2f2f;
  --color-white: #fff;
}

.categories-section {
  background-color: var(--primary-color);
  padding: 2rem;
}

.categories {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}

@media only screen and (max-width: 56.25em) {
  .categories {
    flex-direction: column;
    gap: 2rem;
  }
}

.categories__block {
  display: flex;
  flex-direction: column;
  flex: 0 0 30%;
  gap: 1rem;
}

.categories__item {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--light-grey-1);
  gap: 1rem;
}

.categories__list {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border: 1px solid var(--light-grey-1);
  border-radius: 1.2rem;
  width: 30%;
  overflow: hidden;
}

.categories__list:hover {
  background-color: var(--light-grey-1);
  color: var(--dark-grey-1);
  cursor: pointer;
}

.our-story {
  padding: 8rem 4rem;
}

.our-story__content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 768px) {
  .our-story__content {
    flex-direction: column;
  }
}

.our-story__text {
  flex: 1;
}

.our-story__title {
  font-size: 3.6rem;
  color: var(--color-primary);
  margin-bottom: 2.4rem;
}

.our-story__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-grey-dark);
  margin-bottom: 4rem;
}

.our-story__image {
  flex: 1;
}

.our-story__image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.contact {
  padding: 8rem 4rem;
}

.contact__container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}

@media (max-width: 768px) {
  .contact__container {
    flex-direction: column;
  }
}

.contact__form-section,
.contact__map-section {
  flex: 1;
}

.contact__title {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.contact__description {
  font-size: 1.6rem;
  color: var(--grey-dark-1);
  margin-bottom: 3.2rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__form-group {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .contact__form-group {
    flex-direction: column;
  }
}

.contact__input-wrapper {
  flex: 1;
}

.contact__input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid var(--light-grey-1);
  border-radius: 0.8rem;
  transition: border-color 0.3s;
}

.contact__input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact__input--textarea {
  min-height: 15rem;
  resize: vertical;
}

.contact__button {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  color: var(--color-white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact__button:hover {
  transform: translateY(-2px);
}

.contact__map {
  height: 100%;
  min-height: 40rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.shop {
  padding: 4rem;
}

.shop__categories {
  flex: 0 0 20rem;
}

.shop__categories-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.shop__categories-list {
  list-style: none;
}

.shop__categories-item {
  margin-bottom: 1.5rem;
}

.shop__categories-link {
  font-size: 1.6rem;
  color: var(--color-grey-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.shop__categories-link:hover {
  color: var(--color-primary);
}

.shop__container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}

@media only screen and (max-width: 56.25em) {
  .shop__container {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
  }
}

.shop__separator {
  width: 1px;
  background-color: var(--primary-color);
}

@media only screen and (max-width: 56.25em) {
  .shop__separator {
    width: 1000%;
    height: 1px;
  }
}

.categories {
  flex: 0 0 20rem;
}

.categories__title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.categories__list {
  list-style: none;
}

.categories__item {
  margin-bottom: 1.5rem;
}

.categories__link {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.categories__link:hover {
  color: var(--primary-color);
}

.product-details {
  padding: 4rem 2rem;
}

.product-details__container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 6rem;
}

@media (max-width: 768px) {
  .product-details__container {
    flex-direction: column;
    gap: 4rem;
  }
}

.product-details__image-section {
  flex: 1;
}

.product-details__image {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.product-details__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.product-details__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details__title {
  font-size: 3.6rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
}

.product-details__price {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3a6351;
}

.product-details__category {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.product-details__description {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--primary-color);
}

.product-details__specs {
  display: grid;
  gap: 1.6rem;
}

.product-details__spec-item {
  display: flex;
  gap: 1rem;
}

.product-details__spec-label {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: var(--primary-color);
  min-width: 12rem;
}

.product-details__spec-value {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.product-details__actions {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.btn {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background-color: #3a6351;
  color: white;
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid #3a6351;
  color: #3a6351;
}

.blogs {
  padding: 8rem 4rem;
}

.blogs__header {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.blogs__title {
  font-size: 3.6rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.blogs__subtitle {
  font-size: 1.6rem;
  color: var(--color-grey-dark);
}

.blogs__grid {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.blog-card {
  flex: 0 1 calc(33.333% - 2rem);
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

@media (max-width: 992px) {
  .blog-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 0 1 100%;
  }
}

.blog-card:hover {
  transform: translateY(-1rem);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__image-container {
  height: 24rem;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card__content {
  padding: 2.4rem;
}

.blog-card__title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 1.4rem;
  color: var(--color-grey-dark);
  margin-bottom: 1.5rem;
}

.blog-card__excerpt {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-grey-dark);
}

.header-section {
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  position: relative;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 10000;
}

@media only screen and (max-width: 56.25em) {
  .navbar__hamburger {
    display: block;
  }
}

.navbar__hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all 0.3s;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.navbar__logo {
  padding: 0;
}

.navbar__logo-img {
  width: 10rem;
}

@media only screen and (max-width: 56.25em) {
  .navbar__logo-img {
    width: 8rem;
  }
}

.navbar__nav {
  flex: 0 0 35%;
}

@media only screen and (max-width: 56.25em) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background-color: white;
    padding: 8rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
}

.navbar__nav.active {
  right: 0;
}

.navbar__items {
  font-size: 1.8rem !important;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 4rem;
  font-weight: 400 !important;
}

@media only screen and (max-width: 56.25em) {
  .navbar__items {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.navbar__anchor {
  text-decoration: none;
  color: var(--medium-grey-1);
}

.navbar__search-bar {
  flex: 0 0 20%;
}

@media only screen and (max-width: 56.25em) {
  .navbar__search-bar {
    display: none;
  }
}

.navbar__search-bar-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 90%;
  border-radius: 5rem;
  background-color: var(--light-grey-2);
}

.navbar__search-bar-input:-webkit-autofill,
.navbar__search-bar-input:-webkit-autofill:hover,
.navbar__search-bar-input:-webkit-autofill:focus,
.navbar__search-bar-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--light-grey-2) inset !important;
  -webkit-text-fill-color: inherit !important;
}

.navbar__search-bar-input {
  width: 100%;
  font-family: inherit;
  padding: 1.2rem;
  border: none;
  border-radius: 5rem;
  background-color: var(--light-grey-2);
}

.navbar__search-bar-input::placeholder {
  color: var(--dark-grey-2);
}

.navbar__search-bar-input:focus {
  outline: none;
  background-color: var(--light-grey-2);
}

.navbar__search-bar-button {
  padding: 1.2rem;
  border: none;
  background-color: transparent;
}

.navbar__search-bar-button:hover {
  cursor: pointer;
}

.navbar__search-bar-icon {
  font-size: 1.8rem;
  color: var(--medium-grey-2);
}

.carousel-container {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media only screen and (max-width: 56.25em) {
  .carousel-container {
    height: 400px;
  }
}

.carousel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* width: 1500px; */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  position: absolute;
  width: 560px;
  height: 400px;
  border-radius: 15px;
  transition: all 0.5s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.center {
  transform: translateX(0) scale(1);
  z-index: 3;
}

.card.left {
  transform: translateX(-50%) scale(0.8);
  z-index: 2;
  filter: blur(1px);
}

.card.right {
  transform: translateX(50%) scale(0.8);
  z-index: 2;
  filter: blur(1px);
}

.card.far-left {
  transform: translateX(-100%) scale(0.6);
  z-index: 1;
  filter: blur(1px);
  opacity: 0.6;
}

.card.far-right {
  transform: translateX(100%) scale(0.6);
  z-index: 1;
  filter: blur(1px);
  opacity: 0.6;
}

.navigation-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 4;
  width: 100%;
  max-width: 300px;
  padding: 20px 0;
  margin-top: 100px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 56.25em) {
  .nav-btn {
    color: #fff;
  }
}

.nav-btn:hover {
  transform: scale(1.1);
}

.nav-btn:active {
  transform: scale(0.95);
}

.dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-grey-1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: var(--dark-grey-1);
  transform: scale(1.2);
}

.dot.active {
  background-color: white;
  border-color: var(--dark-grey-1);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .navigation-controls {
    max-width: 250px;
    gap: 15px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

.footer-section {
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 6rem 4rem;
  display: flex;
  justify-content: space-around;
  gap: 4rem;
}

@media only screen and (max-width: 56.25em) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__logo-section {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 12rem;
  margin-bottom: 2rem;
}

.footer__about {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-grey-dark);
}

.footer__heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

@media only screen and (max-width: 56.25em) {
  .footer__links {
    display: none;
  }
}

.footer__list {
  list-style: none;
  font-size: 1.4rem;
}

.footer__link-item {
  margin-bottom: 1.5rem;
  color: var(--color-grey-dark);
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.footer__contact-text {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--color-grey-dark);
}

.footer__social-icons {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
}

.footer__social-link {
  font-size: 2rem;
  color: var(--color-grey-dark);
  transition: color 0.3s;
}

.footer-section__bottom {
  border-top: 1px solid var(--dark-grey-1);
  padding: 2rem 0rem;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

@media only screen and (max-width: 56.25em) {
  .footer-section__bottom {
    flex-direction: column;
  }
}

@media only screen and (max-width: 56.25em) {
  .footer-section__bottom--divider {
    display: none;
  }
}

.products-section {
  padding: 2rem;
}

.products-section__header {
  display: flex;
  gap: 2rem;
  overflow: hidden;
}

.products-section__header--border {
  align-self: center;
  flex: 1;
  height: 1.5rem;
  width: 100%;
  background-color: var(--primary-color);
}

.products {
  max-width: 120rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* .products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.products-list__item {
  flex: 0 1 calc((100% - 9rem) / 4);
}

@media only screen and (max-width: 56.25em) {
  .products-list__item {
    flex: 0 1 calc((100% - 3rem) / 2);
  }
}

@media only screen and (max-width: 37.5em) {
  .products-list__item {
    flex: 0 1 100%;
  }
} */

.products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem;
}

.products-list__item {
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  margin: 0 auto;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.product-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media only screen and (max-width: 56.25em) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 37.5em) {
  .products-list {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--light-grey-1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card__image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.product-card__name {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
}

.product-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #ff4444;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 300;
}

.product-card__btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  transition: transform 0.3s;
}

.product-card__btn:hover {
  transform: translateY(-2px);
}

.testimonial-section {
  padding: 4rem 2rem;
  background-color: var(--primary-color);
}

.testimonial-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-section__quote {
  font-size: 4rem;
  color: #3498db;
  display: block;
  line-height: 1;
}

.testimonial-section__title {
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
  color: var(--light-grey-1);
  margin-bottom: 1rem;
}

.testimonial-section__subtitle {
  color: rgba(236, 240, 241, 0.7);
  font-size: 1.6rem;
}

.testimonial-section__cards {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  flex: 0 1 calc(33.333% - 2rem);
  background: var(--light-grey-1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 1 calc(50% - 2rem);
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 1 100%;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
}

.testimonial-card__content {
  text-align: center;
}

.testimonial-card__name {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.testimonial-card__role {
  color: rgba(44, 62, 80, 0.6);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.testimonial-card__rating {
  color: #f1c40f;
  margin-bottom: 1rem;
}

.testimonial-card__rating .star {
  margin: 0 2px;
  font-size: 1.6rem;
}

.testimonial-card__text {
  color: #2c3e50;
  line-height: 1.6;
  font-style: italic;
  font-size: 1.3rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: white;
  border-radius: 1rem;
  padding: 3rem;
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
}

.modal__title {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.modal__subtitle {
  font-size: 1.6rem;
  color: var(--color-grey-dark);
  margin-bottom: 3rem;
}

.modal__form-group {
  margin-bottom: 2rem;
}

.modal__input,
.modal__select,
.modal__textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

.modal__input:focus,
.modal__select:focus,
.modal__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.modal__textarea {
  height: 12rem;
  resize: vertical;
}

.modal__submit {
  width: 100%;
  padding: 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.modal__submit:hover {
  transform: translateY(-2px);
}



/*# sourceMappingURL=style.css.map */