/*
Theme Name: sorokopudheme
Author: Val

*/

/* ------------------- */
/* Custom properties   */
/* ------------------- */

:root {
  /* colors */
  --clr-accent: 139 62% 43%;
  --clr-secondary: 311 74% 49%;
  --clr-light: 55 100% 50%;
  --clr-white: 180 0% 100%;
  --clr-dark: 0 0% 0%;

  /* border-radius */
  --br-small: 3px;
  --br-medium: 8px;

  /* font-sizes */
  --fs-900: clamp(5rem, 8vw + 1rem, 9.375rem);
  --fs-800: 3rem;
  --fs-700: 1.5rem;
  --fs-600: 1rem;
  --fs-500: 1.75rem;
  --fs-400: 0.9375rem;
  --fs-300: 1rem;
  --fs-200: 0.875rem;

  /* font-families */
  --ff-main: "Noto Sans", sans-serif;
}

@media (min-width: 35em) {
  :root {
    --fs-800: 3rem;
    --fs-700: 2.5rem;
    --fs-600: 1.5rem;
    --fs-400: 1rem;
  }
}

/* ------------------- */
/* Reset               */
/* ------------------- */

html {
  scroll-behavior: smooth;
}

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

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
}

/* set up the body */
body {
  font-family: var(--ff-main);
  font-size: var(--fs-400);
  color: hsl(var(--clr-dark));
  background-color: hsl(var(--clr-white));
  line-height: 1.5;
  min-height: 100vh;
  /* width: 100%; */
  /* display: grid;
  grid-template-rows: min-content 1fr; */

  display: flex;
  justify-content: center;
  flex-direction: column;
}
main {
  flex-grow: 1;
}
/* make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}
a {
  color: hsl(var(--clr-accent) / 1);
}
a:hover {
  color: hsl(var(--clr-accent) / 0.5);
}
/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------- */
/* Utility classes     */
/* ------------------- */

/* general */

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.grid {
  display: grid;
  gap: var(--gap, 1rem);
}
.d-block {
  display: block;
}

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-space, 1rem);
}

.container {
  /* padding-inline: 2em; */
  margin-inline: auto;
  width: 100%;
  /*   max-width: 80rem; */
}

.grid-container {
  display: grid;
  text-align: center;
  place-items: center;
  padding-inline: 1rem;
}

.grid-container * {
  max-width: 50ch;
}

@media (min-width: 45em) {
  .grid-container {
    text-align: left;
    column-gap: var(--container-gap, 2rem);
    grid-template-columns: minmax(2rem, 1fr) repeat(2, minmax(0, 30rem)) minmax(
        2rem,
        1fr
      );
  }

  .grid-container > *:first-child {
    grid-column: 2;
  }

  .grid-container > *:last-child {
    grid-column: 3;
  }
  .grid-container--home {
    padding-bottom: max(6rem, 20vh);
    align-items: end;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

/* colors */

.bg-dark {
  background-color: hsl(var(--clr-dark));
}
.bg-accent {
  background-color: hsl(var(--clr-light));
}
.bg-white {
  background-color: hsl(var(--clr-white));
}

.text-dark {
  color: hsl(var(--clr-dark));
}
.text-accent {
  color: hsl(var(--clr-light));
}
.text-white {
  color: hsl(var(--clr-white));
}

/* typography */

.ff-main {
  font-family: var(--ff-main);
}

.letter-spacing-1 {
  letter-spacing: 4.75px;
}
.letter-spacing-2 {
  letter-spacing: 2.7px;
}
.letter-spacing-3 {
  letter-spacing: 2.35px;
}

.uppercase {
  text-transform: uppercase;
}

.fs-900 {
  font-size: var(--fs-900);
}
.fs-800 {
  font-size: var(--fs-800);
}
.fs-700 {
  font-size: var(--fs-700);
}
.fs-600 {
  font-size: var(--fs-600);
}
.fs-500 {
  font-size: var(--fs-500);
}
.fs-400 {
  font-size: var(--fs-400);
}
.fs-300 {
  font-size: var(--fs-300);
}
.fs-200 {
  font-size: var(--fs-200);
}

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
  line-height: 1.1;
}

.numbered-title {
  font-size: var(--fs-500);
  text-transform: uppercase;
  letter-spacing: 4.72px;
}

.numbered-title span {
  margin-right: 0.5em;
  font-weight: 700;
  color: hsl(var(--clr-white) / 0.25);
}

/* ------------------- */
/* Compontents         */
/* ------------------- */

.large-button {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  padding: 0 2em;
  border-radius: 50%;
  aspect-ratio: 1;
  text-decoration: none;
}

.large-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: hsl(var(--clr-white) / 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 500ms linear, transform 750ms ease-in-out;
}

.large-button:hover::after,
.large-button:focus::after {
  opacity: 1;
  transform: scale(1.5);
}

.primary-navigation {
  --underline-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: hsl(var(--clr-light));
}
.primary-navigation ul li {
  list-style: none;
}

/* Added style */

.primary-navigation ul.navigation {
  display: flex;
  gap: 2rem;
}
.primary-navigation .menu-item a {
  text-decoration: none;
  /* text-transform: uppercase; */
  font-size: var(--fs-400);
  color: hsl(var(--clr-white));
  background-color: hsl(var(--clr-accent));
  padding: 0.5rem 1rem;
}
/* Added style */

.mobile-nav-toggle {
  display: none;
}

@media (max-width: 35rem) {
  .primary-navigation {
    --underline-gap: 0.5rem;
    position: fixed;
    z-index: 1000;
    inset: 0 0 0 30%;
    list-style: none;
    padding: min(20rem, 15vh) 2rem;
    margin: 0;

    transform: translateX(100%);
    transition: transform 400ms ease-in-out;
  }
  .primary-navigation ul {
    flex-direction: column;
  }
  .primary-navigation.underline-indicators > .active {
    border: 0;
  }
  .primary-navigation[data-visible="true"] {
    transform: translateX(0);
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 1011;
    right: 1rem;
    top: 2rem;
    background: transparent;
    /* background-image: url(../../public/assets/shared/icon-hamburger.svg);
    background-position: center;
    background-repeat: no-repeat; */
    /* width: 2rem; */
    aspect-ratio: 1;
    border: 0;
  }
  .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url(../../public/assets/shared/icon-close.svg);
  }
  .mobile-nav-toggle:focus-visible {
    outline: 5px solid white;
    outline-offset: 5px;
  }

  /* NEW TOGGLE*/

  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 22px;
    width: 32px;
  }

  .mobile-nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    transition: all 100ms ease-in-out;
  }

  .mobile-nav-toggle:hover {
    cursor: pointer;
  }

  .x:nth-of-type(1) {
    transition: all 100ms ease-in-out;
    transform: rotate(45deg);
    transform-origin: top left;
    width: 32px;
  }

  .x:nth-of-type(2) {
    transition: all 100ms ease-in-out;
    transform-origin: center;
    width: 0;
  }

  .x:nth-of-type(3) {
    transition: all 100ms ease-in-out;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    width: 32px;
  }
  /* NEW TOGGLE*/
}

.primary-navigation a {
  text-decoration: none;
}

.primary-navigation a > span {
  font-weight: 700;
  margin-right: 0.5em;
}

.underline-indicators > * {
  cursor: pointer;
  padding: var(--underline-gap, 1rem) 0;
  border: 0;
  border-bottom: 0.2rem solid hsl(var(--clr-white) / 0);
}

.underline-indicators > *:hover,
.underline-indicators > *:focus {
  border-color: hsl(var(--clr-white) / 0.5);
}

.underline-indicators > .active,
.underline-indicators > [aria-selected="true"] {
  color: hsl(var(--clr-white) / 1);
  border-color: hsl(var(--clr-white) / 1);
}

.tab-list {
  --gap: 2rem;
}

.dot-indicators > * {
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  padding: 0.5em;
  background-color: hsl(var(--clr-white) / 0.25);
}

.dot-indicators > *:hover,
.dot-indicators > *:focus {
  background-color: hsl(var(--clr-white) / 0.5);
}

.dot-indicators > [aria-selected="true"] {
  background-color: hsl(var(--clr-white) / 1);
}

/* ------------------- */
/* Page specifics  backgrounds      */
/* ------------------- */

header.primary-header {
  /* width: 100%;
  max-width: 72rem;
  margin-inline: auto; */

  /* display: flex;
	justify-content:center;
	align-items:center;
  flex-direction: column; */
  background-color: hsl(var(--clr-white));
  border-bottom: 1px solid hsl(var(--clr-dark) / 0.1);
  padding: 0.125rem;
}

.footer {
  /* width: 100%; */
  /* margin-inline: auto; */
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  border-top: 1px solid #259c49;
}

.footer-cta {
  /* width: 100%;
  max-width: 72rem; */
  margin-inline: auto;
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: center;
  gap: 2rem;
}

.footer-cta {
  padding: 2.5rem 2rem;

  flex-direction: column;
}
.footer-cta > * {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.footer-cta--text p {
  font-size: var(--fs-600);
  color: hsl(var(--clr-accent));
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}
.footer-cta--text button {
  display: block;
  border: 0;
  padding: 0.5rem 1.75rem;
  background-color: hsl(var(--clr-accent));
  color: hsl(var(--clr-white));
  cursor: pointer;
  border-radius: 3px;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.footer-inner {
  /* width: 100%;
  max-width: 72rem; */
  margin-inline: auto;
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: center;
  gap: 0.5rem;

  flex-direction: column;
}
.footer-inner > * {
  width: 100%;
}
.footer-inner h5 {
  background-color: hsl(var(--clr-dark) / 0.1);
  color: hsl(var(--clr-dark));
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--br-small);
  text-align: center;
}
.footer-inner p {
  margin: 0.25rem 0.625rem;
  font-size: 0.875rem;
}
.footer-copyright {
  background-color: hsl(var(--clr-accent));
  /* color: hsl(var(--clr-dark)); */
  color: #fff;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  justify-content: center;
}
.footer-copyright p {
  font-size: 0.875rem;
}

.primary-header > * {
  width: 100%;
}
.spacer {
  /* border-top: 1px solid hsl(var(--clr-accent) 0.2); */
  background-color: hsl(var(--clr-accent) / 0.2);
  height: 1px;
  width: 100%;
}
.logo-and-phones {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /*   border-bottom: 1px solid hsl(var(--clr-dark) / .1); */
}
.header-logo-img,
.header-phones {
  width: 100%;
  display: flex;
  align-items: center;
}
.header-phones {
  flex-direction: column;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .header-phones {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .banner-text {
    font-size: var(--fs-800);
  }
  .banner-text p {
    font-weight: 800;
    line-height: 1;
  }
  .logo-and-phones,
  .footer-cta,
  .footer-inner {
    flex-direction: row;
  }
}

.perevagy-wrapper .perevagy {
  border-radius: var(--br-medium);
  background-color: hsl(var(--clr-accent) / 0.05);
  /* padding: 2rem 1rem; */

  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}
.perevagy figure {
  padding-top: 1.5rem;
}
.perevagy p {
  font-size: 1rem;
}
.perevagy p:last-child {
  margin-bottom: 1.5rem;
}

/* * {
  outline: 1px solid red;
} */

/* ----------- */
/* dropdown header */
/* ----------- */

/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: hsl(var(--clr-dark) / 0.9);
  /* padding: 16px; */
  /* font-size: 16px; */
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  --gap: 0.5rem;
  width: 100%;
  font-size: 0.875rem;
}
/* .dropbtn .flex {
  justify-content: center;
  align-items: center;
  --gap: 0.5rem;
} */
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 26px;
  background-color: #f0ece8;
  /* min-width: 200px; */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: var(--br-medium);
  overflow: hidden;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 0.25rem 1.25rem;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
}
.dropdown-content button.contact-form-modal-btn {
  background: transparent;
  color: black;
  padding: 0.25rem 1.25rem;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  cursor: pointer;
  border: 0;
  outline: 0;
}
.dropdown-content button.contact-form-modal-btn:hover {
  background-color: #ddd;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
/* .dropdown:hover .dropdown-content {
  display: block;
} */
/* .dropdown-icon:hover + .dropdown-content {
  display: block;
} */
.dropdown-icon {
  background-color: hsl(var(--clr-accent) / 0.1);
  border-radius: var(--br-medium);
  padding: 0.25rem;
  cursor: pointer;
  margin-left: 0.25rem;
}
.dropdown-icon.open svg {
  transform: rotate(-180deg) translateY(0%);
}
.dropdown-content.dropdown-open {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
/* .dropdown:hover .dropbtn {background-color: #3e8e41;} */

.phone-header-text,
.header-phones a {
  text-decoration: none;
  color: hsl(var(--clr-dark));
}

.header-phones--phone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header-phones--location {
  display: flex;
  font-size: 0.875rem;
  /* letter-spacing: -1px; */
}
.dropdown-social a,
.dropdown-social svg {
  display: inline-block;
}
.dropdown-social,
.dropdown-social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-logo-img .wp-block-image img {
  height: auto;
}

@media (max-width: 35rem) {
  .header-logo-img {
    width: 80%;
  }
}

.full-width-div-inner .uagb-image-caption {
  padding: 0.375rem 1rem;
  background-color: hsl(var(--clr-white) / 1);
  color: hsl(var(--clr-dark) / 1);
  border-radius: var(--br-small);

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: translateY(-10px);
}
.full-width-div-inner:hover .uagb-image-caption {
  transform: translateY(-30px);
}
.full-width-div-inner figure img {
  -webkit-transition: all 1s ease;
  transition: all 500ms ease;
}
.full-width-div-inner:hover figure img {
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
}

/* navbar-1 */
.mobile-nav-toggle {
  display: none;
}
.catalog-menu-wrapper {
  background-color: hsl(var(--clr-accent) / 0.1);
  /* height: 100px; */
}
@media (min-width: 768px) {
  .catalog-menu {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding: 2em;
    display: flex;
    /* background-color: hsl(var(--clr-accent) / 0.1); */
  }
  .navbar-1 {
    /*     max-width: 72rem; */
    background-color: hsl(var(--clr-accent));
    /*     padding-inline: 0.25rem; */
  }
  .catalog-menu {
    justify-content: center;
  }
}
header.primary-header {
  /*   max-width: 72rem; */
  /* position: static; */
  position: sticky;
  top: 0;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  header.primary-header {
    position: relative;
  }
  .navbar-1 {
    /* position: relative;*/

    position: absolute;
    z-index: 1011;
    right: 8px;
    top: 8px;
    width: auto;
    height: 40px;
    z-index: 99999999999;
  }
}

h2 {
  font-size: 2.5rem;
  /* text-transform: uppercase; */
}

/* h2 {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}
h2::before {
  content: " ";
  height: 8px;
  width: 130px;
  background: hsl(var(--clr-light) / 1);
  display: block;
  margin-right: 1rem;
  /* position: absolute; */
/* top: 50%;
  right: 0;  } */
/* h2::after {
  content: " ";
  height: 8px;
  width: 130px;
  background: hsl(var(--clr-light) / 1);
  display: block;
  margin-left: 1rem; */
/* position: absolute;
  top: 50%;
  left: 0; */
/* } */
.slogan {
  border-radius: var(--br-small);
  background-color: hsl(var(--clr-accent) / 1);

  background: hsla(28, 25%, 47%, 1);

  background: linear-gradient(
    135deg,
    hsla(28, 25%, 47%, 1) 0%,
    hsla(28, 59%, 27%, 1) 100%
  );

  background: -moz-linear-gradient(
    135deg,
    hsla(28, 25%, 47%, 1) 0%,
    hsla(28, 59%, 27%, 1) 100%
  );

  background: -webkit-linear-gradient(
    135deg,
    hsla(28, 25%, 47%, 1) 0%,
    hsla(28, 59%, 27%, 1) 100%
  );

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#957559", endColorstr="#6D421C", GradientType=1 );
  padding: 2rem 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}
.slogan p {
  color: hsl(var(--clr-white));
  font-style: italic;
}
/*--------------*/
/*Buttons*/
/*--------------*/

.btn2 {
  background-color: hsl(var(--clr-accent) / 0.1);
  color: hsl(var(--clr-dark) / 0.9);
  padding: 0.5rem 1rem;
  border-radius: var(--br-small);
  display: inline-block;
  text-decoration: none;
}
.btn2:hover {
  background-color: hsl(var(--clr-accent) / 0.3);
}

.products-wrapper {
  display: grid;

  /* grid-template-columns: repeat(5, 1fr); */

  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));

  grid-template-rows: auto;
  gap: 0.5rem;
  border: 0px dotted green;
}
.product {
  /* padding:.5rem; */
  border: 1px solid hsl(var(--clr-accent) / 0.1);
  border-radius: var(--br-small);
  overflow: hidden;
}
.product h3 {
  padding: 0.25rem 0.5rem;
}
.product h3 {
  background-color: hsl(var(--clr-accent) / 0.1);
}
.product p {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem 0 0.5rem;
  margin: 0;
}
p.product-short-info {
  background-image: url(images/info-square.svg);
  background-position: left 5px top 7px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 32px;
}
p.product-price {
  background-image: url(images/pricetag-outline.svg);
  background-position: left 5px top 7px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 32px;
}
.product a img:hover {
  opacity: 0.8;
}

.product a.product-btn {
  margin: 0.25rem 0.5rem 0.25rem 0.5rem;
  /* padding-right: 1.25rem; */
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  background-color: hsl(var(--clr-accent) / 0.05);
  display: inline-block;
  text-decoration: none;
  color: hsl(var(--clr-accent) / 1);
  font-size: 0.75rem;
  /* background-image: url(images/arrowright.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: padding 200ms; */
  transition: background-color 200ms;
  border-radius: var(--br-small);
  border: 1px solid hsl(var(--clr-accent) / 0.5);
}
.product a.product-btn:hover {
  /* padding-right: 2rem; */
  background-color: hsl(var(--clr-accent) / 0.2);
}
.card {
  border: 1px solid hsl(var(--clr-accent) / 0.1);
  padding: 1rem;
  border-radius: var(--br-medium);
}
.card a {
  text-decoration: none;
  color: hsl(var(--clr-accent) / 1);
}
.card h4 {
  font-size: 1.5rem;
}
.all-products-link {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
.category-info h1 {
  text-align: center;
  padding: 1rem 0.5rem;
}
.subcategories-container-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  grid-template-rows: auto;
  place-items: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.subcategories-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: auto;
  place-items: center;
}

.subcategory-wrapper {
  position: relative;
  /* display: grid; */
}
.subcategory-title {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  /* display: none; */
}

.subcategory-title h5 {
  padding: 0.375rem 1rem;
  background-color: hsl(var(--clr-white) / 1);
  color: hsl(var(--clr-dark) / 1);
  border-radius: var(--br-small);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* transform: translateY(-10px); */
  text-decoration: none;
  display: block;
  -webkit-transition: all 1s ease;
  transition: all 500ms ease;
}
.subcategory-image img {
  -webkit-transition: all 1s ease;
  transition: all 500ms ease;
}
.subcategory-wrapper:hover .subcategory-title h5 {
  transform: translateY(-20px);
}

.subcategory-wrapper:hover img {
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
}

.product-img img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  /* aspect-ratio: 1; */
}

/* breadcrumbs */
.breadcrumbs {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.breadcrumbs a {
  text-decoration: none;
  color: hsl(var(--clr-accent) / 0.75);
}
.breadcrumbs a:hover {
  color: hsl(var(--clr-accent) / 1);
  text-decoration: underline;
}

.modal-overlay,
.modal-overlay-footer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: grid;
  place-items: center;
  display: none;
  background-color: hsl(var(--clr-dark) / 0.3);
  z-index: 9999;
}
.modal-overlay.show-modal,
.modal-overlay-footer.show-modal {
  display: grid;
}
.modal {
  width: 400px;
  max-width: 95%;
  background-color: hsl(var(--clr-white) / 1);
  padding: 1rem;
  border-radius: var(--br-medium);
}
.modal div.wpforms-container-full {
  margin: 0;
}
.modal div.wpforms-container-full .wpforms-form .wpforms-head-container {
  padding: 0;
}
.modal .wpforms-title {
  text-align: center;
}
.modal .wpforms-container .wpforms-field {
  padding: 0.5rem;
}
.close-modal {
  cursor: pointer;
}
.modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0.25rem;
}
.modal-title h4 {
  font-size: 1.25rem;
}
body.modal-open {
  overflow-y: hidden;
}

.forminator-row.forminator-row-last .forminator-field {
  display: flex;
  justify-content: center;
}

div.wpforms-container-full button[type="submit"] {
  background-color: hsl(var(--clr-accent) / 1) !important;
}
div.wpforms-container-full button[type="submit"]:hover {
  background-color: hsl(var(--clr-accent) / 0.75) !important;
}
div.wpforms-container-full input[type="checkbox"]:checked:before,
div.wpforms-container-full input[type="radio"]:checked:before {
  border-color: hsl(var(--clr-accent) / 1) !important;
  box-shadow: 0 0 0 1px hsl(var(--clr-accent) / 1),
    0px 1px 2px rgba(0, 0, 0, 0.15) !important;
}
div.wpforms-container-full input[type="checkbox"]:checked:after {
  border-left: 4px solid hsl(var(--clr-accent) / 1) !important;
  border-bottom: 4px solid hsl(var(--clr-accent) / 1) !important;
  background-color: transparent;
}

div.wpforms-container-full button[type="submit"] {
  left: 50%;
  transform: translateX(-50%);
}
.modal div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full {
  margin: 0 auto;
}

.postheader {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 20rem) and (max-width: 42rem) {
  .container {
    padding-inline: 0rem;
  }
  .products-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));

    grid-template-rows: auto;
    gap: 0.5rem;
  }
  .product-img img {
    width: 100%;
    /* height: 150px; */
  }
}
.font-900 {
  font-weight: 900;
}
.text-underline {
  /*-0.55em*/
  /* color: #fff; */
  /* box-shadow: inset 0 -1.55em 0 0 #d920b8; */
  border-radius: 3px;
  padding: 0.5rem 1rem;
  /* background-color: hsl(var(--clr-dark) / .21); */
  background-color: #fff;
}
.btn-header {
  cursor: pointer;
  /*   border-radius: 6px; */
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid hsl(var(--clr-accent));
  background-color: hsl(var(--clr-accent));
  color: #fff;
  /* 	background-color:hsl(var(--clr-light)); */
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}
.btn-header:hover {
  background-color: hsl(var(--clr-accent) / 0.8);
  color: #fff;
}
.header-phone-link {
  /*   border-radius: 6px; */
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid hsl(var(--clr-accent));
  background-color: #fff;
  /* 	background-color:hsl(var(--clr-light)); */
  /* background-image: url("images/phone.svg"); */
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  /* text-align: right; */
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
.header-phone-link:hover {
  background-color: hsl(var(--clr-accent) / 0.1);
  color: #000;
}

.dropdown {
  gap: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.footer-cta,
.footer-inner {
  display: none;
}
.phone-icon-header {
  border-radius: 6px;
  border: 1px solid hsl(var(--clr-accent));
  background-color: #fff;
  padding: 5px;
  border-radius: 3px;
}
a.phone-header-text {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.logo-and-phones {
  width: 100%;
  max-width: 1280px;
  margin: 5px auto;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
.logo-and-phones .navbar-1 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
  padding: 0;
}
.logo-and-phones .header-logo-img,
.logo-and-phones .header-phones {
  width: auto;
}
.logo-and-phones .header-phones {
  margin: 0;
}
.logo-and-phones .header-phones--phone {
  display: flex;
  flex-direction: column;
  /* 	flex-direction:row; */
  gap: 0.25rem;
  justify-content: flex-end;
  align-items: end;
}

/* HERO */
.hero-before-title {
  /* border: 1px solid hsl(var(--clr-dark) / 0.1); */
  border-left: 3px solid hsl(var(--clr-accent));
  /* border-bottom: 5px solid hsl(var(--clr-secondary-400)); */
  display: inline-block;
  padding: 0.5rem;
  background-color: hsl(var(--clr-dark) / 0.08);
  font-size: 0.875rem;
}
.hero-title {
  font-weight: 900;
  line-height: 1.2;
  margin: 2rem 0;
  color: #333;
}

.custom-list-1 {
  list-style: none;
}
.custom-list-1 li {
  /* font-size: 1.125rem; */
  margin: 0.25rem 0.25rem;
  /* background-image: url("images/fluent--checkmark-square-24-filled.svg"); */
  background-image: url("images/checkmark-square-red.svg");
  background-position: left center;
  background-repeat: no-repeat;
  padding: 0.25rem;
  padding-left: 42px;
  background-size: 28px;
  /* font-weight: 300; */
}
p.hero-underline::after {
  content: "";
  display: block;
  margin-top: 5px;
  height: 5px;
  width: 30%;
  background: hsl(var(--clr-accent));
  transition: all 0.5s ease-out;
  /* 	border-bottom:1px solid rgba(255,255,255,.65); */
}
.hero-hover:hover p.hero-underline::after {
  width: 60%;
  background: hsl(var(--clr-accent));
}

@media all and (max-width: 680px) {
  .logo-and-phones .header-phones--phone {
    flex-direction: row;
    width: 100%;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    padding: 0 0.5rem;
  }
  .header-phone-link {
    text-align: center;
  }
}

.highlight-text strong {
  background-color: hsl(var(--clr-accent));
  color: #fff !important;
  padding: 0.125rem;
  font-weight: normal;
}
.slider-shadow {
  filter: drop-shadow(12px 12px 0px #2ab256);
}

.container.max-width-1200 {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
