@import url("root.css");
:root {
  --header: 8rem;
  --slide: 35rem;
}
@media (min-width: 768px) {
  :root {
    --slide: 40rem;
    --header: 10rem;
  }
}
@media (min-width: 992px) {
  :root {
    --slide: 50rem;
    --header: 12rem;
  }
}
@media (min-width: 1400px) {
  :root {
    --slide: 55rem;
  }
}
@media (min-width: 1500px) {
  :root {
    --slide: 65rem;
  }
}
/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  height: var(--header);
}

.header-space {
  height: var(--header);
}

.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1200px) {
  .logo {
    flex: 1;
  }
}
.logo img {
  width: 5rem;
}
@media (min-width: 576px) {
  .logo img {
    width: 6rem;
  }
}
@media (min-width: 992px) {
  .logo img {
    width: 8rem;
  }
}
.mainmenu {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .mainmenu {
    flex: 3;
  }
}

.mainmenu ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
}

.mainmenu ul li {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--textcolor);
  cursor: pointer;
  transition: all 300ms ease;
  height: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mainmenu ul li i {
  margin-left: 0.5rem;
  display: inline-block;
  transition: all 300ms ease;
}

.mainmenu ul li:hover i {
  transform: rotate(180deg);
  transform-origin: center;
}

.mainlink {
  color: var(--textcolor);
  transition: all 300ms ease;
  font-size: 1.5rem;
  font-weight: 500;
}

.mainmenu ul li:hover {
  color: var(--color-yellow);
}

.mainmenu ul li:hover .mainlink {
  color: var(--color-yellow);
}

.dropdownmain {
  background-color: #fff;
  border-top: 0.4rem solid var(--color-yellow);
  position: absolute;
  top: 100%;
  left: -5rem;
  transition: all 300ms ease;
  width: 25rem;
  z-index: 100;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(2rem);
}
.mainmenu ul li:hover .dropdownmain {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdownmain a {
  padding: 1rem;
  color: var(--textcolor);
  font-size: 1.4rem;
  border-radius: 0.3rem;
}
.dropdownmain a:hover {
  background-color: var(--color-yellow);
  color: #fff;
}
.headericons {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
@media (min-width: 1200px) {
  .headericons {
    flex: 1;
  }
}
.mobilemenuicon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: var(--color-black);
  font-size: 1.6rem;
}
/* Hero Slider */
.hero-slider {
  height: var(--slide);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slider .swiper-slide {
  position: relative;
  height: var(--slide);
  width: 100%;
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(52, 50, 51, 0.7), rgba(52, 50, 51, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .slide-content {
    width: 50rem;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .slide-content {
    width: 70rem;
  }
}
.slide-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}
@media (min-width: 350px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 576px) {
  .slide-content h1 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .slide-content h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .slide-content h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .slide-content h1 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .slide-content h1 {
    font-size: 5.5rem;
  }
}
.slide-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.8s;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .slide-content p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .slide-content p {
    font-size: 1.6rem;
  }
}

.slide-content .btn-gold {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 1.1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Pagination */
.hero-slider .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  background-color: #fff;
  outline: none !important;
  box-shadow: none !important;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 3rem;
  background: var(--color-yellow);
  border-radius: 0.3rem;
}

.about-img-item {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

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

.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .homeaboutcontent {
    padding-left: 2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .homeaboutcontent {
    padding-left: 5rem;
  }
}
.homeaboutcontenttitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.titlebadge {
  background-color: var(--color-yellow);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.homeaboutcontenttitle h2 {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .homeaboutcontenttitle h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  .homeaboutcontenttitle h2 {
    font-size: 2.5rem;
  }
}
.homeaboutlink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  background-color: var(--color-yellow);
  color: #fff;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .homeaboutlink {
    font-size: 1.5rem;
  }
}
.homeaboutlink:hover {
  background-color: var(--color-black);
  color: #fff;
}
.homeaboutlink i {
  display: inline-block;
  transition: all 300ms ease;
}
.homeaboutlink:hover i {
  transform: translateX(0.5rem);
}
.service-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .service-card {
    padding: 2rem 4rem;
  }
}
.service-card-icon {
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: var(--color-yellow);
  margin-bottom: 2rem;
}
.secondary .service-card-icon {
  background-color: var(--color-black);
}
.service-card .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.service-card .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-card .content p {
  font-size: 1.4rem;
  flex: 1;
}
@media (min-width: 768px) {
  .service-card .content p {
    font-size: 1.5rem;
  }
}
.service-card .content a {
  transition: all 300ms ease;
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1rem;
}
.service-card .content a i {
  display: inline-block;
  transition: all 300ms ease;
  margin-left: 0.2rem;
}
.service-card .content a:hover i {
  transform: translateX(0.5rem);
}
.service-card .content a:hover {
  color: var(--color-yellow);
}
.sectiontitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .sectiontitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.sectiontitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .sectiontitleleft {
    flex: 2;
    margin-bottom: 0;
  }
}
.sectiontitleleft h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .sectiontitleleft h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  .sectiontitleleft h2 {
    font-size: 2.5rem;
  }
}
.sectiontitleleft p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.sectiontitleright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 992px) {
  .sectiontitleright {
    flex: 1;
  }
}
.seeall {
  background-color: var(--color-black);
  transition: all 300ms ease;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
}
.seeall:hover {
  background-color: #000;
  color: #fff;
}
.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 2rem;
}
.product-card-image {
  border-radius: 0.5rem;
  width: 100%;
  height: 30rem;
  overflow: hidden;
}
.product-card-image img {
  height: 100%;
  object-fit: cover;
  transition: all 900ms ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.product-card .content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.product-card .content h3 a {
  color: var(--color-black);
  transition: all 300ms ease;
}
.product-card:hover .content h3 a {
  color: var(--color-yellow);
}
.product-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.blog-card {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blog-card-image {
  border-radius: 0.5rem 0.5rem 0 0;
  height: 22rem;
  overflow: hidden;
}
.blog-card-image img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease-in-out;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.blog-card .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
}
.blog-card .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blog-card .content h3 a {
  color: var(--color-black);
  transition: all 300ms ease;
}
.blog-card:hover .content h3 a {
  color: var(--color-yellow);
}
.blog-card .content p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-card .content p {
    font-size: 1.5rem;
  }
}
.bloglink {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-black);
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--color-yellow);
}
.bloglink i {
  display: inline-block;
  transition: all 300ms ease;
  margin-left: 0.2rem;
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.footer {
  padding: 5rem 0 2rem 0;
  background-color: #000;
  border-top: 1rem solid var(--color-yellow);
  border-bottom: 1rem solid var(--color-yellow);
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footerlogo {
  width: 8rem;
  margin-bottom: 2rem;
}
.footerlogo img {
  filter: brightness(100);
}
.footerdescription {
  font-size: 1.4rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  color: #fff;
  padding-right: 5rem;
}
.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-social a {
  font-size: 1.4rem;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.footer-social a:hover {
  background-color: #fff;
  color: #000;
}
.footerbox h4 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 5rem;
}
.footerbox ul li {
  padding: 0.5rem 0;
}
.footerbox ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 300ms ease;
  font-size: 1.4rem;
}
.footerbox ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.footerbox ul li span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}
.copyright {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
  text-align: center;
}
.copyright a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  font-family: "pill";
  font-weight: 300;
  transition: all 300ms ease;
}
.copyright a:hover {
  color: rgba(255, 255, 255, 1);
}
.page-banner-black {
  padding: 2rem 0;
  background-color: #000;
}
@media (min-width: 992px) {
  .page-banner-black {
    padding: 4rem 0;
  }
}
.page-banner-yellow {
  padding: 1rem 0;
  background-color: var(--color-yellow);
}
@media (min-width: 992px) {
  .page-banner-yellow {
    padding: 2rem 0;
  }
}
.page-banner-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-banner-content h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .page-banner-content h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  .page-banner-content h1 {
    font-size: 3rem;
  }
}
.page-banner-content ul {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .page-banner-content ul {
    flex-wrap: nowrap;
  }
}
.page-banner-content ul li {
  font-size: 1.5rem;
  color: var(--color-black);
  position: relative;
}
.page-banner-content ul li:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  position: absolute;
  right: -1.8rem;
  top: -0.1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.page-banner-content ul li a {
  font-size: 1.5rem;
  color: var(--color-black);
}
.page-banner-content ul li:hover a {
  text-decoration: underline;
}
.page-banner-content ul li.active {
  font-weight: 700;
}
.specialh {
  height: 15rem;
}
@media (min-width: 768px) {
  .specialh {
    height: 20rem;
  }
}
.alyusbox {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.alyusbox figure {
  width: 6rem;
}
.alyusbox p {
  width: calc(100% - 6rem);
  padding-left: 1rem;
  font-size: 1.4rem;
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 0.1rem solid #f1f1f1;
}
@media (min-width: 768px) {
  .alyusbox p {
    font-size: 1.5rem;
  }
}
.serviceinlinecontent {
  width: 100%;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  margin-bottom: 2rem;
}
.serviceinlinecontenttitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #f1f1f1;
  width: 100%;
}
.serviceinlinecontenttitle h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.serviceinlinecontent .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
.serviceinlinelink {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--);
}
.serviceinlinelink:hover {
  background-color: var(--color-yellow);
  color: #fff;
}
.serviceinlinetextcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .serviceinlinetextcontent {
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .serviceinlinetextcontent {
    padding-right: 5rem;
  }
}
.serviceinlinetextcontenttitle {
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #ddd;
}
.serviceinlinetextcontenttitle h2 {
  font-size: 2rem;
  font-weight: 900;
}
.serviceinlinemainimage {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.serviceinlinemainimage img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/1.5;
}
.serviceshorttext {
  margin-bottom: 1rem;
  background-color: #f1f1f1;
  border-left: 0.5rem solid var(--color-yellow);
  padding: 1rem;
  width: 100%;
  border-radius: 0 0.5rem 0.5rem 0;
}
.serviceshorttext p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .serviceshorttext p {
    font-size: 1.5rem;
  }
}
.servicecontactboxes {
  padding: 2rem;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
}
.servicecontactboxes p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .servicecontactboxes p {
    font-size: 1.5rem;
  }
}
.servicecontactboxes a {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--color-black);
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 1rem;
}
.servicecontactboxes a:hover {
  background-color: var(--color-yellow);
  color: #fff;
}
.servicecontactboxes a i {
  margin-right: 0.5rem;
}
.categorydescriptions {
  padding: 2rem;
  background-color: #fff;
  margin-bottom: 2rem;
  border-left: 0.5rem solid var(--color-yellow);
  border-radius: 0 1rem 1rem 0;
}
.categorydescriptions p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .categorydescriptions p {
    font-size: 1.5rem;
  }
}
.productboxes {
  width: 100%;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  transition: all 300ms ease;
}
.productboxesimage {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 15rem;
}
.productboxesimage img {
  height: 100%;
  transition: all 900ms ease;
  object-fit: cover;
}
.productboxes:hover .productboxesimage img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.productboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  flex: 1;
}
.productboxes .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  flex: 1;
}
.productboxes .content h3 a {
  color: var(--textcolor);
  transition: all 300ms ease;
}
.productboxes:hover .content h3 a {
  color: var(--color-yellow);
}
.productlinks {
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  display: inline-block;
  font-weight: 500;
}
.productlinks i {
  margin-left: 0.3rem;
  display: inline-block;
  transition: all 300ms ease;
}
.productlinks:hover i {
  transform: translateX(0.5rem);
}
.productlinks:hover {
  color: var(--color-yellow);
}
.productboxes:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.productotherimages {
  border-radius: 0.5rem;
  height: 15rem;
  overflow: hidden;
}
.productotherimages img {
  height: 100%;
  object-fit: cover;
  transition: all 900ms ease;
}
.productotherimages:hover img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.swiper-productimages {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.productformcontent {
  margin-top: 2rem;
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background-color: #fff;
}
@media (min-width: 992px) {
  .productformcontent {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.productformcontent p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .productformcontent p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .productformcontent p {
    width: calc(100% - 15rem);
    margin-bottom: 0;
  }
}
.formbuttons {
  border-radius: 0.3rem;
  background-color: var(--color-black);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  width: 15rem;
  transition: all 300ms ease;
}
.formbuttons:hover {
  color: #fff;
  background-color: var(--color-yellow);
}
.sendbutton {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  color: #fff;
  display: inline-block;
  background-color: var(--color-black);
  font-size: 1.4rem;
}
.sendbutton:hover {
  background-color: var(--color-yellow);
  color: #fff;
}
.contactpagesocial {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .contactpagesocial {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.contactpagesocial h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contactpagesocial h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .contactpagesocial h2 {
    margin-bottom: 0;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .contactpagesocial h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .contactpagesocial h2 {
    font-size: 3rem;
  }
}
.contactpagesocial .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contactpagesocial .content {
    flex: 2;
  }
}
.contactpagesocial .content p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .contactpagesocial .content p {
    font-size: 1.5rem;
  }
}
.contentsocialmedia {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  column-gap: 0.5rem;
}
.contentsocialmedia a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.2rem solid #f1f1f1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--textcolor);
  transition: all 300ms ease;
}
.contentsocialmedia a:hover {
  transform: translateY(-0.5rem);
  background-color: var(--color-yellow);
  border: 0.2rem solid var(--color-yellow);
  color: var(--color-black);
}
.contactboxes {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  margin-bottom: 2rem;
}
.contactboxes span {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.contactboxes a {
  font-size: 1.4rem;
  color: var(--textcolor);
  transition: all 300ms ease;
}
@media (min-width: 768px) {
  .contactboxes a {
    font-size: 1.5rem;
  }
}
.contactboxes a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contactboxes a:hover {
  color: var(--color-yellow);
}
.contactboxes p {
  font-size: 1.4rem;
  color: var(--textcolor);
}
@media (min-width: 768px) {
  .contactboxes p {
    font-size: 1.5rem;
  }
}
.contactboxesicon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--textcolor);
  position: absolute;
  top: -1rem;
  right: -1rem;
  border: 0.8rem solid #f8f9fa;
  background-color: #fff;
  font-size: 2rem;
  transition: all 300ms ease;
}
.contactboxes:hover .contactboxesicon {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.contactform {
  border-radius: 0.5rem;
  padding: 2rem;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1500px) {
  .contactform {
    padding: 5rem;
  }
}
.contactformtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #ddd;
}
.contactformtitle h3 {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.contactformtitle p {
  font-size: 1.4rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .contactformtitle p {
    font-size: 1.5rem;
  }
}
.contactimages {
  border-radius: 0.5rem;
  height: auto;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contactimages {
    height: 100%;
    margin-bottom: 0;
  }
}
.contactimages img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.5;
}
@media (min-width: 768px) {
  .contactimages img {
    aspect-ratio: 1;
  }
}
.mobilmenu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
}
.mobilmenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobilemenucontenttitle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 0.1rem solid #ddd;
}
@media (min-width: 576px) {
  .mobilemenucontenttitle {
    padding-bottom: 2rem;
  }
}
.mobilemenucontenttitle figure {
  width: 5rem;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 576px) {
  .mobilemenucontenttitle figure {
    width: 6rem;
  }
}
.closemenu {
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: all 300ms ease;
}
.closemenu:hover {
  background-color: var(--color-black);
  color: #fff;
}
.mobilemenulinkcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
.mobilemenulinkcontent a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  padding: 1rem;
  border-radius: 0.2rem;
}
.mobilemenulinkcontent a:hover {
  background-color: var(--color-yellow);
  color: #fff;
}
.mobilemenulinkcontent a i {
  display: inline-block;
  transition: all 300ms ease;
}
.mobilemenulinkcontent a:hover i {
  transform: translateX(0.5rem);
}
