@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Proza+Libre:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  font-family: "Proza Libre";
}

.active::after {
  content: "";
  display: block;
  border-bottom: 3px solid #C82003;
}

.btn {
  color: #C6A24D;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 0;
  padding: 14px 16px;
  width: 140px;
}

form .form-control, form .form-select {
  border-radius: 0;
  font-size: 14px;
  border: 1px solid rgba(29, 29, 29, 0.25);
  padding: 0.375rem;
}
form .form-control:focus, form .form-select:focus {
  outline: none;
  border: 1px solid rgba(29, 29, 29, 0.25);
  box-shadow: none;
}
form .form-label {
  font-weight: 400;
  font-size: 16px;
}

.heading {
  font-size: 26px;
  color: #B99F55;
  font-weight: 700;
  font-family: "Cormorant Garamond";
}

.supportive-heading {
  font-size: 16px;
}

p, a, ul, li, span {
  font-size: 14px;
  font-weight: 400;
  color: #393938;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader img {
  width: 14rem;
}
#preloader span {
  font-size: 1.4rem;
}
#preloader .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
#preloader .dots div {
  width: 18px;
  height: 20px;
  margin: 8px;
  background-color: #FFF;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
#preloader .dots div:nth-child(2) {
  animation-delay: 0.2s;
}
#preloader .dots div:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  to {
    opacity: 0.3;
    transform: translate3d(0, -1rem, 0);
  }
}

#whatsapp-widget .chat-header,
#whatsapp-widget .chat-content,
#whatsapp-widget .message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10003;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#whatsapp-widget .chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: none;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
#whatsapp-widget .chat-header .avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#whatsapp-widget .chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
#whatsapp-widget .chat-header .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
#whatsapp-widget .chat-header .chat-header-info {
  flex-grow: 1;
}
#whatsapp-widget .chat-header span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFFFFF;
}
#whatsapp-widget .chat-header .online-status {
  font-size: 12px;
}
#whatsapp-widget .chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
#whatsapp-widget .chat-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-widget .chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: none;
}
#whatsapp-widget .chat-content .message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
#whatsapp-widget .chat-content .message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
#whatsapp-widget .chat-content .message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
#whatsapp-widget .message-input {
  bottom: 20px;
  height: 60px;
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
#whatsapp-widget .whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#whatsapp-widget .whatsapp-btn:hover {
  background-color: #128c7e;
}
#whatsapp-widget .typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#whatsapp-widget .typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
#whatsapp-widget .typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
#whatsapp-widget .chat-icon {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10004;
  animation: wave 2s infinite;
}
#whatsapp-widget .chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

header {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .navbar {
  background-color: #FFFFFF;
  height: 4rem;
}
header .navbar .navbar-brand {
  color: #FFFFFF;
  font-weight: 600;
}
header .navbar .navbar-brand img {
  width: 9rem;
}
header .navbar .navbar-brand span {
  color: #B99F55;
}
header .navbar .navbar-toggler {
  color: #393938;
}
header .navbar .offcanvas {
  width: 80%;
  background-color: #FFFFFF;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title {
  color: #FFFFFF;
  font-size: 15px;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title span {
  color: #B99F55;
}
header .navbar .offcanvas .offcanvas-header .btn-close {
  border-radius: 50px;
  background-color: #FFFFFF;
}
header .navbar .offcanvas .offcanvas-header img {
  width: 10rem;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav {
  line-height: 30px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item {
  padding: 4px 0;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  color: #262626;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Cormorant Garamond" !important;
  font-size: 16px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #B99F55;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
  display: block;
}

#hero {
  overflow: hidden;
  position: relative;
  top: 0;
  margin-top: 4rem;
  height: calc(50vh - 4rem);
}
#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero h1 {
  color: #C6A24D;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Cormorant Garamond";
}
#hero p {
  color: #FFFFFF;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#homePage #homeHero {
  overflow: hidden;
  position: relative;
  margin-top: 4rem;
  width: 100%;
  height: calc(100vh - 4rem);
}
#homePage #homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#homePage #homeHero .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#homePage #homeHero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#homePage #homeHero .homeHero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
#homePage #homeHero .homeHero-content h1 {
  color: #C6A24D;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 34px;
  font-family: "Cormorant Garamond";
}
#homePage #homeHero .homeHero-content p {
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin-top: 2%;
}
#homePage #homeHero .homeHero-content .btn {
  border: 2px solid #C6A24D;
}
#homePage #homeHero .homeHero-content .btn:hover {
  color: #FFFFFF;
}
#homePage #specialities {
  overflow: hidden;
}
#homePage #specialities img {
  transition: transform 0.3s ease;
}
#homePage #specialities img:hover {
  transform: scale(1.02);
}
#homePage #specialities .card {
  border: 1px solid rgba(15, 78, 122, 0.2);
  border-radius: 0;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#homePage #specialities .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#homePage #specialities .card .card-body .card-heading {
  display: flex;
  align-items: center;
}
#homePage #specialities .card .card-body .card-heading .card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 0;
  margin-left: 8px;
}
#homePage #specialities .card .card-body p {
  margin-top: 12px;
  margin-bottom: 0;
}
#homePage #crafting {
  overflow: hidden;
}
#homePage #crafting .crafting-images {
  position: relative;
}
#homePage #crafting .crafting-images::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
#homePage #crafting .crafting-images img {
  position: relative;
  transition: transform 0.3s ease;
}
#homePage #crafting .crafting-images:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
#homePage #crafting .crafting-images:hover img {
  transform: scale(1.01);
}
#homePage #crafting .about-tony {
  background: #F3EFE5;
}
#homePage #crafting .about-tony .supportive-heading {
  font-weight: 600 !important;
}
#homePage #crafting .about-tony p {
  margin-left: 12px;
  color: rgba(57, 57, 56, 0.8);
  line-height: 24px;
}
#homePage #crafting .about-tony .btn {
  border: 2px solid #C6A24D;
  width: 70% !important;
  font-family: "Proza Libre" !important;
  text-align: left !important;
}
#homePage #image-gallery {
  overflow: hidden;
}
#homePage #image-gallery .gallery-swiper {
  position: relative;
  width: 100%;
}
#homePage #image-gallery .gallery-swiper .swiper-slide {
  position: relative;
}
#homePage #image-gallery .gallery-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background-color 0.3s ease;
}
#homePage #image-gallery .gallery-swiper .swiper-slide:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
#homePage #image-gallery .gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#homePage #what-clients-say {
  overflow: hidden;
  background: rgba(243, 239, 229, 0.6);
}
#homePage #what-clients-say .heading, #homePage #what-clients-say .supportive-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}
#homePage #what-clients-say .client-comments .reviews-swiper {
  padding-bottom: 40px;
}
#homePage #what-clients-say .client-comments .reviews-swiper .swiper-pagination {
  bottom: 0;
}
#homePage #what-clients-say .client-comments .reviews-swiper .swiper-pagination .swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  background: #393938;
  opacity: 0.5;
}
#homePage #what-clients-say .client-comments .reviews-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
#homePage #what-clients-say .client-comments .card {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0px 10px 21px 0px rgba(198, 162, 77, 0.05);
  border-color: transparent;
  transition: transform 0.3s ease;
}
#homePage #what-clients-say .client-comments .card:hover {
  transform: scale(1.02);
}
#homePage #what-clients-say .client-comments .card .card-body {
  padding: 18% 12%;
  position: relative;
}
#homePage #what-clients-say .client-comments .card .card-body .design-left {
  position: absolute;
  top: 16%;
  left: 5%;
  width: 20px;
  height: auto;
}
#homePage #what-clients-say .client-comments .card .card-body .design-right {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 20px;
  height: auto;
}
#homePage #what-clients-say .client-comments .card .card-body h3 {
  color: #6c757d;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.21px;
  margin: 15px 0;
}
#homePage #what-clients-say .client-comments .card .card-body p {
  color: #262626;
  font-weight: 700;
  margin-top: 18%;
  text-align: center;
  margin-bottom: 0;
}

#aboutPage #about-us {
  overflow: hidden;
}
#aboutPage #about-us .heading, #aboutPage #about-us h3 {
  color: #262626;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  font-family: "Proza Libre" !important;
}
#aboutPage #about-us img {
  transition: transform 0.3s ease;
}
#aboutPage #about-us img:hover {
  transform: scale(1.04);
}
#aboutPage #about-us p {
  text-align: justify;
  line-height: 24px;
}
#aboutPage #about-us span {
  line-height: 24px;
}

#productsPage #our-products {
  overflow: hidden;
  background-color: #F8F8F8;
}
#productsPage #our-products .carousel-item.active::after {
  display: none;
  content: none;
  border: none;
}
#productsPage #our-products .categories-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#productsPage #our-products .categories-wrapper::-webkit-scrollbar {
  display: none;
}
#productsPage #our-products ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 1rem 0;
  gap: 30px;
}
#productsPage #our-products ul li {
  display: inline-block;
  padding: 0 15px;
}
#productsPage #our-products ul li:first-child {
  padding-left: 0;
}
#productsPage #our-products ul li .active::after {
  display: none !important;
}
#productsPage #our-products ul li .category-link.active {
  color: white;
  background-color: #C82003;
  padding: 6px 12px;
  border-radius: 38px;
}
#productsPage #our-products .heading {
  color: #262626;
  text-transform: uppercase;
}
#productsPage #our-products .fa-chevron-left, #productsPage #our-products .fa-chevron-right {
  background-color: #3b3a3a !important;
  border-radius: 50%;
  padding: 4px;
}
#productsPage #our-products .carousel-control-next, #productsPage #our-products .carousel-control-prev {
  width: 4% !important;
}
#productsPage #our-products .supportive-heading {
  color: #393938;
  font-size: 18px;
  font-weight: 600;
}
#productsPage #our-products ul li {
  padding: 6px 0;
}
#productsPage #our-products ul li a {
  text-decoration: none;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}
#productsPage #our-products .product-card {
  border: 1px solid rgba(97, 97, 96, 0.1);
  background: #FFFFFF;
  border-radius: 0;
  transition: transform 0.3s ease;
  height: 30rem;
}
#productsPage #our-products .product-card .card-footer {
  background: #FFFFFF;
  border: 0;
}

#contactPage .heading {
  color: #C6A24D;
  font-size: 20px;
  font-weight: 700;
}
#contactPage #contact-us {
  position: relative;
  margin-top: -34px;
}
#contactPage #contact-us .card {
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}
#contactPage #contact-us .card .btn {
  padding: 11px 7px;
  background: #C6A24D;
  font-size: 14px;
  color: #FFFFFF;
}
#contactPage #contact-us .location-details {
  background-color: #F9F7F3;
}
#contactPage #contact-us .location-details .location-content {
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
#contactPage #contact-us .location-details .location-content .card-body {
  background-color: #F9F7F3;
}
#contactPage #contact-us .location-details .location-content .card-body a {
  text-decoration: none;
  color: #393938;
}
#contactPage #contact-us .location-details .location-content .content-details {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
#contactPage #contact-us .location-details .location-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}
#contactPage #contact-us .location-details .location-content .social-contact .contact-details {
  border-left: 3px solid #C6A24D;
  margin-top: 16px;
}
#contactPage #contact-us .location-details .location-content .social-contact .contact-details p {
  margin-bottom: 6px;
  margin-left: 12px;
}
#contactPage iframe {
  margin-bottom: -8px;
}

footer {
  background-color: #262626;
  color: #FFFFFF;
}
footer .row:first-child .footer-logo {
  display: flex;
  align-items: center;
}
footer .row:first-child .footer-logo img {
  width: 12rem;
}
footer .row:first-child .footer-logo span {
  color: #B99F55;
}
footer .row:first-child h3 {
  font-weight: 700;
  line-height: 26px;
  font-size: 18px;
}
footer .row:first-child p {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #FFFFFF;
}
footer .row:first-child ul li {
  font-weight: 400;
  line-height: 35px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
footer .row:first-child ul li a {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  font-weight: 300;
  font-size: 14px !important;
}
footer .row:first-child #footer-social-list li a {
  display: flex;
  width: 37px;
  height: 37px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255);
  background: #262626;
  color: #feffff;
}
footer .row:first-child #footer-contact-list li a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}
footer .row:last-child p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
}
footer .row:last-child p a {
  color: #FFFFFF;
  text-decoration: none;
}
footer hr {
  opacity: 1.25 !important;
}

@media (min-width: 768px) {
  .heading {
    font-size: 32px !important;
  }
  #homePage #homeHero .homeHero-content h1 {
    font-size: 46px !important;
    line-height: 50px !important;
  }
  #homePage #homeHero .homeHero-content p {
    font-size: 22px !important;
    margin-top: 1% !important;
  }
  #homePage #specialities .supportive-heading {
    font-size: 18px !important;
  }
  #homePage #what-clients-say .client-comments .card {
    width: 50% !important;
  }
  #homePage #what-clients-say .client-comments .card .card-body {
    padding: 12% !important;
  }
  #homePage #what-clients-say .client-comments .card .card-body p {
    margin-top: 10% !important;
  }
  #homePage #crafting .crafting-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #homePage #crafting .about-tony .btn {
    width: 96% !important;
  }
  #productsPage #our-products ul {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  #productsPage #our-products ul li .category-link.active {
    color: #C82003 !important;
    background-color: transparent !important;
    padding: 0 !important;
  }
  #productsPage #our-products .card {
    height: 24rem !important;
  }
  #productsPage #our-products .card .carousel-inner .carousel-item img {
    height: 20rem !important;
  }
}
@media (min-width: 992px) {
  p, a, ul, li, span {
    font-size: 16px;
  }
  .heading {
    font-size: 40px !important;
  }
  header .navbar {
    height: 5rem !important;
  }
  header .navbar .navbar-brand img {
    width: 14rem !important;
  }
  header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    font-size: 20px;
  }
  #hero h1 {
    font-size: 54px !important;
  }
  #homePage #homeHero .homeHero-content {
    text-align: left !important;
  }
  #homePage #homeHero .homeHero-content h1 {
    font-size: 54px !important;
    line-height: 66px !important;
  }
  #homePage #homeHero .homeHero-content .btn {
    font-size: 18px !important;
    margin-top: 18px;
  }
  #homePage #specialities .card .card-body .card-heading .card-title {
    font-size: 20px !important;
  }
  #homePage #crafting .about-tony .btn {
    width: 72% !important;
  }
  #homePage #what-clients-say {
    padding: 5% 0;
  }
  #homePage #what-clients-say .client-comments .card .card-body h3 {
    font-size: 16px !important;
    text-align: center !important;
    line-height: 24px !important;
  }
  #homePage #what-clients-say .client-comments .card .card-body .design-left {
    width: 30px !important;
  }
  #homePage #what-clients-say .client-comments .card .card-body .design-right {
    width: 30px !important;
  }
  #aboutPage #about-us .heading, #aboutPage #about-us h3 {
    font-size: 24px !important;
  }
  #contactPage .heading {
    font-size: 28px !important;
  }
  #contactPage #contact-us .card {
    width: 90%;
  }
  #contactPage #contact-us .location-details .location-content .card-body span, #contactPage #contact-us .location-details .location-content .card-body a {
    font-size: 16px !important;
  }
  #contactPage #contact-us .location-details .location-content .content-details {
    padding-bottom: 8px;
  }
  #contactPage #contact-us .location-details .location-content .social-contact {
    margin-top: 2rem;
  }
  #contactPage #contact-us .location-details .location-content .social-contact .contact-details p, #contactPage #contact-us .location-details .location-content .social-contact .contact-details a {
    font-size: 14px !important;
  }
}
@media (min-width: 1200px) {
  #hero {
    height: calc(60vh - 4rem) !important;
  }
  #hero h1 {
    font-size: 54px !important;
  }
  #homePage .homeHero-content {
    transform: translate(-50%, -40%) !important;
  }
  #homePage #what-clients-say .client-comments .card {
    width: 40% !important;
  }
  #homePage #crafting .heading {
    white-space: nowrap;
  }
  #homePage #crafting .about-tony {
    padding: 4% !important;
  }
  #homePage #crafting .about-tony .established {
    margin-top: 10% !important;
  }
  #homePage #crafting .about-tony .btn {
    margin-top: 4%;
    width: 56% !important;
  }
  #contactPage #contact-us .location-details .location-content .card-body span, #contactPage #contact-us .location-details .location-content .card-body a {
    font-size: 14px !important;
  }
}

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