/*
Theme Name: Child Theme
Author: 
Description: Your description goes here
Version: 1.0
Template: twentytwentytwo

This is the child theme for Twenty Twenty-Two theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: 43 116 189;
  /* #2B74BD */
  --primary_hover: 22 62 102;
  /* #163E66 */
  --secondary: 216 0 0;
  /* #D80000 */
  --secondary_hover: 179 0 0;
  /* #B30000 */
  --white: 255 255 255;
  /* #FFFFFF */
  --black: 0 0 0;
  /* #000000 */
  --dark: 22 22 22;
  /* #161616 */
  --para: 76 76 76;
  /* #4C4C4C */
  --muted: 168 168 168;
  /* #A8A8A8 */
  --silver: 232 228 216;
  /* #E8E4D8 */
  --light: 243 246 250;
  /* #F3F6FA */
  --ghost: 27 32 34;
  /* #1B2022 */
  --dark_bg: 39 47 53;
  /* #272F35 */
  --cs_bg: 37 6 6;
  /* #250606 */

  --fw_200: 200;
  --fw_300: 300;
  --fw_400: 400;
  --fw_500: 500;
  --fw_600: 600;
  --fw_700: 700;
  --fw_800: 800;
  --fw_900: 900;

  --font_Poppins: "Poppins", sans-serif;
}

body {
  font-family: var(--font_Poppins);
  background-color: rgb(var(--white));
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
button:focus,
.button,
.button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

a,
a:hover,
a:active,
a:focus,
:focus {
  outline: 0;
}

.pe-pointer {
  cursor: pointer;
}

/* typography */

p {
  font-weight: var(--fw_400);
  font-size: 15px;
  line-height: 25px;
  color: rgb(var(--para));
  margin-bottom: 1.5rem;
}

a {
  line-height: normal;
  color: rgb(var(--primary));
}

label {
  font-size: 0.938rem;
  line-height: normal;
  font-weight: var(--fw_500);
  color: rgb(var(--dark));
}

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 95px;
    padding-right: 95px;
  }
}

/* btn */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: var(--fw_400);
  padding: 1rem 1.75rem;
  border: none;
  line-height: 1;
  border-radius: 16px;
  corner-shape: squircle;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}

.btn:hover {
  animation: pop 0.3s linear;
}

.btn:hover svg {
  animation: hvr__buzz 0.15s linear infinite;
}

.btn-link {
  font-size: 15px;
  font-weight: var(--fw_400);
  line-height: normal;
  text-decoration: none;
}

/* animation */
/* buzz */
.hvr__buzz {
  display: inline-block;
  transform: perspective(1px) translateZ(0);
}

.hvr__buzz:hover,
.hvr__buzz:focus,
.hvr__buzz:active {
  -webkit-animation-name: hvr__buzz;
  animation-name: hvr__buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /* animation: hvr__buzz 0.15s linear infinite; */
}

@keyframes hvr__buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

/* pop */
.hvr__pop {
  display: inline-block;
  transform: translateZ(0);
}

.hvr__pop:hover {
  -webkit-animation-name: hvr__pop;
  animation-name: hvr__pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  /* animation: pop 0.3s linear; */
}

@keyframes pop {
  50% {
    transform: scale(1.04);
  }
}

/* text color */
.text-secondary {
  color: rgb(var(--secondary));
}

.text-para {
  color: rgb(var(--para));
}

.text-black {
  color: rgb(var(--black));
}

.text-muted {
  color: rgb(var(--muted));
}

.text-silver {
  color: rgb(var(--silver));
}

.text-light {
  color: rgb(var(--light));
}

.text-ghost {
  color: rgb(var(--ghost));
}

/* acpc_header */
.acpc_header {
  height: 80px;
  -webkit-filter: drop-shadow(0px 4px 6px rgb(var(--black) / 0.05));
  filter: drop-shadow(0px 4px 6px rgb(var(--black) / 0.05));
}

@media (min-width: 640px) {
  .acpc_header .acpch_logo {
    background: rgb(var(--white));
    padding: 10px 30px 20px 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    corner-shape: squircle;
    position: absolute;
    top: 0;
    left: 0;
  }

  .acpc_header .acpch_logo:before,
  .acpc_header .acpch_logo:after {
    content: "";
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 32px;
    height: 32px;
  }

  .acpc_header .acpch_logo:before {
    background-image: url(/wp-content/uploads/2026/03/start_svg.svg);
    top: 80px;
    left: -32px;
  }

  .acpc_header .acpch_logo:after {
    background-image: url(/wp-content/uploads/2026/03/end_svg.svg);
    top: 80px;
    right: -32px;
  }

}

/* /acpc_header */
/* acpc_banner */
.acpc_banner {
  padding-top: 180px;
}

.acpc_overlay:before,
.acpc_overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.acpc_overlay:before {
  background: linear-gradient(0deg, rgba(43, 116, 189, 0.6), rgba(43, 116, 189, 0.6)), rgba(22, 22, 22, 0.6);
  opacity: 0.7;
  z-index: 1;
}

.acpc_overlay:after {
  background: linear-gradient(270deg, rgba(22, 22, 22, 0.5) 0%, rgba(22, 22, 22, 0.5) 100%);
  z-index: 0;
}

.noise {
  position: absolute;
  inset: -200%;
  width: 400%;
  height: 400%;
  pointer-events: none;
  background-image: url(/wp-content/uploads/2026/03/dots.jpg);
  will-change: transform;
  animation: noiseMove 1.1s steps(2) infinite;
  opacity: 0.2;
}

@keyframes noiseMove {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-0.5%, -1%);
  }

  40% {
    transform: translate(-1%, 0.5%);
  }

  60% {
    transform: translate(0.8%, -0.6%);
  }

  80% {
    transform: translate(-0.4%, 0.8%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* acpcb_text */
.acpcb_text {
  padding-block-start: 40px;
  padding-block-end: 40px;
}

.acpcb_text .acpcb_badge {
  padding: 8px 18px;
  background: rgb(var(--white) / 0.06);
  border-bottom: 2px solid rgb(var(--white) / 0.08);
  color: rgb(var(--white) / 0.8);
  /* backdrop-filter: blur(5px); */
  font-size: 14px;
  border-radius: 16px;
  corner-shape: squircle;
}

.acpcb_text h1 {
  font-size: 48px;
  line-height: 64px;
}

.acpcb_text .b__intro p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 1.5rem;
}

/* acpcb_form */
.acpcb_form {
  padding: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  corner-shape: squircle;
}

.acpcb_form:before,
.acpcb_form:after {
  content: "";
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 32px;
  height: 32px;
}

.acpcb_form:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-image: url(/wp-content/uploads/2026/03/start_svg.svg);
  bottom: 0;
  left: -32px;
}

.acpcb_form:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-image: url(/wp-content/uploads/2026/03/end_svg.svg);
  bottom: 0;
  right: -32px;
}

.acpcb_form form p {
  margin-bottom: 0 !important;
}

.form-select,
.acpcb_form form .form-control {
  font-size: 15px;
  color: rgb(var(--dark));
  font-weight: var(--fw_400);
  background-color: rgb(var(--white));
  border-color: rgb(var(--dark) / 0.12);
  border-radius: 16px;
  corner-shape: squircle;
}

.form-select,
.acpcb_form form .form-control:not(textarea) {
  height: 48px;
}

.acpcb_form form .form-control.wpcf7-file {
  padding: 12px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

#contact-form {
  scroll-padding-top: 200px;
}

::-webkit-input-placeholder {
  color: rgb(var(--para) / 0.50) !important;
}

::-moz-placeholder {
  color: rgb(var(--para) / 0.50) !important;
}

:-ms-input-placeholder {
  color: rgb(var(--para) / 0.50) !important;
}

:-moz-placeholder {
  color: rgb(var(--para) / 0.50) !important;
}

/* b__help */
.b__help .bh__items {
  flex: 1;
  padding: 16px 20px;
  background: rgb(var(--white) / 0.04);
  border-bottom: 2px solid rgb(var(--white) / 0.06);
  backdrop-filter: blur(5px);
  border-radius: 22px;
  corner-shape: squircle;
}

.b__help .bh__items .bh__icn {
  opacity: 0.8;
}

.b__help p {
  font-size: 15px;
  line-height: normal;
}

.b__help small {
  font-size: 14px;
  opacity: 0.8;
}

.tooltip {
  opacity: 1 !important;
}

/* .custom-tooltip .tooltip-inner { 
  background-color: rgb(var(--white)) !important;
  color: rgb(var(--secondary));
  box-shadow: 0 0 30px rgb(0 0 0 / 20%);
}
.custom-tooltip .tooltip-arrow::before {
  border-top-color: rgb(var(--white)) !important;
} */

/* /acpc_banner */
.title span {
  font-size: 12px;
  color: rgb(var(--secondary) / 0.6);
  letter-spacing: 0.1em;
}

.title span:before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgb(var(--secondary) / 0.6);
  border-radius: 50rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.title h2 {
  font-size: 38px;
  line-height: 52px;
  letter-spacing: -0.02em;
}

.title h3 {
  font-size: 24px;
  line-height: 42px;
  letter-spacing: -0.02em;
}

.title.title_white span {
  color: rgb(var(--white) / 0.6);
}

.title.title_white span:before {
  background: rgb(var(--white) / 0.6);
}

.wwci_items {
  padding: 18px;
  height: 100%;
  border-radius: 30px;
  corner-shape: squircle;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}

.wwci_items a {
  height: 100%;
}

.wwci_items:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}

.wwci_items .wwci_img {
  padding: 10px;
  height: 200px;
  overflow: hidden;
  border-radius: 22px;
  corner-shape: squircle;
}

.wwci_items .wwci_img>img {
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}

.wwci_items:hover .wwci_img>img {
  transform: scale(1.14) rotate(-12deg);
  -webkit-transform: scale(1.14) rotate(-12deg);
}

.wwci_items .wwci_text {
  padding: 30px 10px 12px;
}

.wwci_items .wwci_text h3 {
  font-size: 18px;
  line-height: 28px;
}

.wwci_items:hover .wwci_text h3 {
  text-decoration: underline;
}

/* who_we_serve */
.wws_list {
  border: 1px solid rgb(var(--dark) / 0.1);
  border-radius: 30px;
  corner-shape: squircle;
}

.wws_card .wwsc_top {
  border-bottom: 1px solid rgb(var(--dark) / 0.1);
}

.wws_card .wwsc_top .wwsc_icn {
  width: 60px;
  height: 60px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-radius: 22px;
  corner-shape: squircle;
}

.wws_card .wwsc_top .wwsc_icn {
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}

.wws_card:hover .wwsc_top .wwsc_icn {
  animation: pop 0.3s linear;
}

.wws_card .wwsc_top .wwsc_text h3 {
  font-size: 22px;
}

.wws_card .wwsc_list li {
  font-size: 15px;
  line-height: 25px;
  padding-left: 8px;
}

.wws_card .wwsc_list li:not(:last-child) {
  margin-bottom: 12px;
}

.wws_card .wwsc_list li:before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50rem;
  position: relative;
  top: 8px;
}

.wws_card.wws_start .wwsc_top .wwsc_icn {
  background: rgb(var(--primary) / 0.1);
  border-bottom-color: rgb(var(--primary) / 0.1);
}

.wws_card.wws_start .wwsc_list li:before {
  background: rgb(var(--primary));
  box-shadow: 0 0 0px 8px rgb(var(--primary) / 0.1);
}

.wws_card.wws_end .wwsc_top .wwsc_icn {
  background: rgb(var(--secondary) / 0.1);
  border-bottom-color: rgb(var(--secondary) / 0.1);
}

.wws_card.wws_end .wwsc_list li:before {
  background: rgb(var(--secondary));
  box-shadow: 0 0 0px 8px rgb(var(--secondary) / 0.1);
}

@media (min-width: 768px) {
  .wws_card.wws_start {
    border-right: 1px solid rgb(var(--dark) / 0.1);
  }
}

@media (max-width: 767px) {
  .wws_card.wws_start {
    border-bottom: 1px solid rgb(var(--dark) / 0.1);
  }
}

/* /who_we_serve */
/* support_diy */
.support_diy {
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.1) 0%, #F3F4F6 100%);
}

.sds_list li:not(:last-child) {
  margin-bottom: 14px;
}

.sds_list li:before {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-flex;
  border-radius: 50rem;
  background-color: rgb(var(--secondary) / 0.1);
  background-image: url(/wp-content/uploads/2026/03/check_icn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  align-self: baseline;
}

.sds_list h4 {
  font-size: 15px;
}

.sds_list p {
  font-size: 14px;
  line-height: 24px;
}

.sdel_card {
  padding: 40px 30px;
  border: 1px solid rgb(var(--dark) / 0.06);
  box-shadow: 0px 5px 20px rgb(var(--black) / 0.02);
  border-radius: 30px;
  corner-shape: squircle;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}

.sdel_card:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}

.sdel_card .sde_icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgb(var(--secondary) / 0.1);
  border-bottom: 3px solid rgb(var(--secondary) / 0.1);
  border-radius: 22px;
  corner-shape: squircle;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}

.sdel_card:hover .sde_icn {
  animation: pop 0.3s linear;
}

.sdel_card .sde_text h3 {
  font-size: 18px;
  line-height: 28px;
}

.sd_start.sticky-top {
  top: 150px;
}

/* /support_diy */
/* buy_local */
.buyl_card {
  padding: 30px;
  border-bottom-style: solid;
  border-bottom-width: 5px;
  border-radius: 30px;
  corner-shape: squircle;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}

.buyl_card:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}

.buyl_card .buyl_top .buyl_icn {
  width: 40px;
  height: 40px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-radius: 16px;
  corner-shape: squircle;
}

.buyl_card .buyl_top h3 {
  font-size: 18px;
  line-height: 28px;
}

.buyl_card .buyl_list {
  gap: 6px;
}

.buyl_card .buyl_list li {
  padding: 8px 14px;
  font-size: 14px;
}

.buyl_card>p {
  font-size: 14px;
}

.buyl_card.buyl_one {
  background: rgb(var(--primary) / 0.06);
  border-bottom-color: rgb(var(--primary) / 0.1);
}

.buyl_card.buyl_one .buyl_top .buyl_icn {
  background: rgb(var(--primary) / 0.06);
  border-bottom-color: rgb(var(--primary) / 0.1);
}

.buyl_card.buyl_two {
  background: rgb(var(--secondary) / 0.06);
  border-bottom-color: rgb(var(--secondary) / 0.1);
}

.buyl_card.buyl_two .buyl_top .buyl_icn {
  background: rgb(var(--secondary) / 0.06);
  border-bottom-color: rgb(var(--secondary) / 0.1);
}

.buyl_card.buyl_three {
  background: rgb(var(--dark) / 0.06);
  border-bottom-color: rgb(var(--dark) / 0.1);
}

.buyl_card.buyl_three .buyl_top .buyl_icn {
  background: rgb(var(--dark) / 0.06);
  border-bottom-color: rgb(var(--dark) / 0.1);
}

/* /buy_local */
/* store_location */
.store_location {
  background-color: rgb(var(--dark_bg));
  background-image: url(/wp-content/uploads/2026/03/line_svg.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.dots {
  background-image: url(/wp-content/uploads/2026/03/dots.jpg);
  background-size: auto;
  opacity: 0.05;
}

.slo_start {
  padding: 40px;
  background: rgb(var(--white) / 0.02);
  border: 1px solid rgb(var(--white) / 0.04);
  backdrop-filter: blur(5px);
  align-self: stretch;
  border-radius: 30px;
  corner-shape: squircle;
}

.slh_list .slhl_items:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.slh_list .slhl_items:not(:last-child):after {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(var(--white) / 0.1) 0%, rgb(var(--white) / 0) 100%);
  border-radius: 50rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.slh_list .slhl_items .slhl_icon {
  width: 50px;
  height: 50px;
  background: rgb(var(--white) / 0.08);
  border-bottom: 3px solid rgb(var(--white) / 0.08);
  border-radius: 22px;
  corner-shape: squircle;
}

.slh_list .slhl_items .slhl_label {
  font-size: 15px;
  color: rgb(var(--white) / 0.8);
}

.slh_list .slhl_items .slhl_value {
  font-size: 16px;
}

.hours_list {
  padding: 20px;
  background: rgb(var(--white) / 0.04);
  border: 1px solid rgb(var(--white) / 0.06);
  border-radius: 22px;
  corner-shape: squircle;
}

.hours_list .hours_items:not(:last-child) {
  padding-bottom: 10px;
}

.hours_list .hours_items>span:first-child {
  font-size: 14px;
}

.slo_map {
  border-radius: 30px;
  corner-shape: squircle;
}

.slo_map iframe {
  height: 430px;
}

.footh_list .footh_items .hours_closed,
.hours_closed {
  opacity: 0.8;
}

.slh_tip {
  padding: 30px;
}

.tip_list .tip_items>span {
  font-size: 14px;
}

.tip_list .tip_items:not(:last-child) {
  padding-bottom: 6px;
}

/* /store_location */
/* we_supply */
.we_supply h3 {
  font-size: 22px;
  letter-spacing: 0.1em;
}

.ws_slider_e {
  margin-bottom: 4px;
}

.ws_slider .owl-stage .owl-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 20px;
  background: rgb(var(--dark) / 0.06);
}

.ws_slider .owl-stage .owl-item img {
  max-width: fit-content;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}

.ws_slider .owl-stage .owl-item:hover img {
  animation: pop 0.3s linear;
}

/* /we_supply */
/* coming_soon */
.coming_soon {
  background-color: rgb(var(--cs_bg));
  background-image: url(/wp-content/uploads/2026/03/cs_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* /coming_soon */
/* acpc_footer */
.acpc_footer {
  background-image: url(/wp-content/uploads/2026/03/foot_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.copyright p,
.foot_ione p {
  font-size: 14px;
  line-height: 24px;
}

.copyright {
  border-top: 1px solid rgb(var(--dark) / 0.08);
}

.foot_ratting {
  padding: 12px 18px;
  border-radius: 22px;
  corner-shape: squircle;
}

.foot_ratting strong {
  font-size: 22px;
}

.foot_ratting span {
  font-size: 14px;
}

.foot_itwo .foo_it_items:not(:last-child) {
  margin-bottom: 20px;
}

.foot_itwo .foo_it_items .foo_it_icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(var(--dark) / 0.06);
  border-radius: 16px;
  corner-shape: squircle;
}

.foot_itwo .foo_it_items .foo_it_value:not(.foo_it_call) {
  font-size: 16px;
}

.foot_itwo .foo_it_items .foo_it_value.foo_it_call {
  font-size: 22px;
}

.footh_list {
  padding: 22px;
  border: 1px solid rgb(var(--dark) / 0.06);
  border-radius: 22px;
  corner-shape: squircle;
}

.footh_list .footh_items:not(:last-child) {
  margin-bottom: 14px;
}

/* /acpc_footer */
.floating {
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 3;
}

.floating a {
  width: 48px;
  height: 48px;
  background-color: rgb(var(--white));
  border-radius: 22px;
  corner-shape: squircle;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}

.floating a:hover {
  animation: pop 0.3s linear;
}

.floating a:hover svg {
  animation: hvr__buzz 0.15s linear infinite;
}

#backtotop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background-color: rgb(var(--primary));
  z-index: 9;
  border-radius: 22px;
  corner-shape: squircle;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

#backtotop:hover {
  background-color: rgb(var(--primary_hover));
  animation: pop 0.3s linear;
}

#floating_action {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

#backtotop.show,
#floating_action.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.acpcb_farea form .wpcf7-response-output {
  opacity: 0;
  visibility: hidden;
  display: none;
}

/* mobileForm */
.mobile__formOC {
  height: 100dvh !important;
  padding-top: env(safe-area-inset-top);
  border: 0 !important;
  background: rgb(var(--white) / 0.2);
  backdrop-filter: blur(8px);
}

.mobile__formOC .btn-close {
  position: absolute;
  top: -20px;
  right: -10px;
}

.mobile__formOC .offcanvas-body {
  height: 100%;
}

.mobile__formOC .title h3 {
  font-size: 18px;
}

.mobile__formOC .title p {
  font-size: 14px;
}

.mobile__formOC .acpcb_form {
  border-radius: 30px !important;
}

/* /mobileForm */
/* media css */
.section {
  padding-block: 100px;
}

@media (max-width: 1366px) {
  .slh_action a {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .section {
    padding-block: 80px;
  }

  .acpc_footer .container {
    max-width: 100%;
  }

  .acpc_header .acpch_logo img {
    height: 100px;
  }
}

@media (max-width: 992px) {
  .section {
    padding-block: 60px;
  }

  .acpc_header .acpch_logo img {
    height: 90px;
  }

  .acpc_banner {
    padding-top: 140px;
  }

  .title h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .foot_itwo .foo_it_items:not(:last-child) {
    margin-bottom: 10px;
  }

  .slo_star {
    padding: 30px;
  }

  .acpcb_text {
    padding-block-start: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 50px;
  }

  .acpc_banner .container,
  .acpc_header .container {
    max-width: 100%;
  }

  .acpc_header .acpch_logo img {
    height: 80px;
  }

  .acpch_action .acpch_call>span {
    display: none;
  }

  .acpc_banner {
    padding-top: 130px;
  }

  .slh_tip,
  .slo_start,
  .acpcb_form {
    padding: 30px 20px 20px 20px;
  }

  .acpcb_text {
    padding-block-start: 20px;
  }

  .hours_list {
    padding: 15px;
  }

  .hours_list .hours_items:not(:last-child) {
    padding-bottom: 6px;
  }

  .hours_list .hours_items>span:first-child {
    font-size: 13px;
  }

  .hours_list .hours_items>span:last-child {
    font-size: 15px;
  }
}

@media (max-width: 641px) {
  .section {
    padding-block: 40px;
  }

  .acpc_row {
    align-items: center;
  }

  .acpc_header .acpch_logo img {
    height: 60px;
  }

  .acpc_banner {
    padding-top: 90px;
  }

  .acpch_action .btn {
    padding: 14px 18px;
  }

  .acpc_header {
    height: 70px;
  }

  .acpcb_text .acpcb_badge {
    padding: 6px 14px;
  }

  .acpcb_text h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .acpcb_text .b__intro p {
    margin-bottom: 1rem;
  }

  .b__action .btn {
    width: 100%;
  }

  .b__help {
    gap: 5px !important;
  }

  .b__help .bh__items {
    flex-direction: column;
    padding: 12px;
    gap: 6px !important;
    text-align: center;
  }

  .b__help p {
    font-size: 14px;
  }

  .b__help small {
    font-size: 13px;
  }

  .acpcb_text {
    padding-block-start: 10px;
  }

  .hours_list {
    padding: 10px;
  }

  .hours_list .hours_items:not(:last-child) {
    padding-bottom: 4px;
  }

  .hours_list .hours_items>span:first-child {
    font-size: 12px;
  }

  .hours_list .hours_items>span:last-child {
    font-size: 14px;
  }
}

@media (max-width: 575px) {

  .slh_action {
    flex-direction: column;
  }

  .b__action>.btn {
    flex-direction: column;
    display: flex;
    line-height: 1.2;
    flex: auto;
  }

  .acpch_action .btn {
    padding: 12px 16px;
  }

  .acpc_header .acpch_logo img {
    height: 50px;
  }
}

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

  .coming_action .btn {
    width: 100%;
  }
}