:root {
  --blue: #0097f3;
  --black: #212529;
  --gray: #dcdddd;
  --light-gray: #f8f8f8;
  --form-gray: #c3c3c3;
}

@font-face {
  font-family: "GTWalsheim";
  src: url(../../assets/font/GTWalsheim.ttf);
}

section {
  padding: 100px 0;
}

@media (min-width: 1200px) {
  .custom-container {
    width: 85%;
    margin: auto;
  }
}

@media (max-width: 1199px) {
  section {
    padding: 70px 0px;
  }

  .custom-container {
    width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 0px;
  }

  .custom-container {
    padding: 0 20px;
  }
}

h1 {
  font-size: 50px;
}

h2 {
  text-transform: uppercase;
  font-size: 35px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 18px;
}

/* Global Classes */
.clear-cta {
  width: 100%;
  padding: 10px 0px;
  transition: 0.5s;
  display: flex;
  justify-content: end;
}

.clear-cta .fa {
  font-size: 15px;
  margin-left: 10px;
}

.clear-cta a {
  color: #fff !important;
  font-size: 16px;
  border: 1px solid;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  width: max-content;
  font-weight: 500;
  transition: 0.5s;
}

.clear-cta a:hover {
  background-color: var(--blue);
  border-radius: 5px;
}

.white--cta {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.white--cta a {
  background: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid #000;
  color: #000 !important;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.5s;
}

.white--cta a:hover {
  color: #fff !important;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.white--cta .fa {
  font-size: 15px;
  margin-left: 10px;
}

.dark--cta {
  width: 100% !important;
  transition: 0.5s;
}

.dark--cta a {
  background: var(--black);
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--black);
  transition: 0.5s;
}

.dark--cta .fa {
  margin-right: 10px;
}

.dark--cta a:hover {
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--light-gray);
}

.dark--cta .fa {
  font-size: 15px;
  margin-left: 10px;
}
/* Global Classes */

/* Forms Popup */
.contact-pop-up,
.distributorship-pop-up,
.quote-pop-up,
.consult-pop-up,
.search-pop-up {
  width: 100%;
  z-index: 100;
  padding: 30px;
}

.quote-pop,
.contact-pop,
.distributorship--pop,
.consult-pop,
.search-pop {
  height: 100pc;
  z-index: 1000;
  padding: 55px 0 180px;
  background: #0009;
}

.distributorship--pop,
.contact-pop,
.consult-pop ,
.search-pop{
  display: none;
  padding-top: 80px;
}

.quote-pop {
  margin-top: -60px;
}

.search-pop-up {
  width: 40%;
  margin: auto;
}

.pop-up--form {
  padding: 85px;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated border effect */
.pop-up--form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #007bff;
  animation: borderTrail 6s linear infinite;
  z-index: 2;
}

/* Keyframes: makes the blue line circle the border */
@keyframes borderTrail {
  0% {
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    transform: none;
  }
  25% {
    top: 0;
    left: 100%;
    width: 30%;
    height: 2px;
    /* transform: translateX(-100%); */
  }
  50% {
    top: 100%;
    left: 100%;
    width: 50%;
    height: 2px;
    /* transform: translate(-100%, -100%); */
  }
  /*75% {
    top: 100%; left: 0;
    width: 2px; height: 50%;
    transform: translateY(-100%);
  }
  100% {
    top: 0; left: 0;
    width: 50%; height: 2px;
    transform: none;
  } */
}

.close--button {
  right: 40px;
  top: 30px;
}

.close--button p {
  font-size: 25px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  line-height: normal;
}

.close--button p:hover {
  color: var(--black) !important;
}
/* Forms Popup */

/* Sticky Side Buttons */
.side-sticky {
  position: fixed;
  right: 2px;
  z-index: 100;
  top: 50%;
}

.sticky-item {
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  width: 85px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.side-sticky .row {
  gap: 5px;
}

.sticky-item p {
  font-size: 12px;
  text-align: center;
}

.sticky-item.contact {
  color: #fff;
  background: #1f1f1f;
  padding: 7px 0;
  border: 1px solid;
}

.sticky-item.contact:hover {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}

.sticky-item.distributor {
  background: #fff;
  padding: 7px 2px;
  border: 1px solid #000;
  color: #000;
}

.sticky-item.distributor:hover {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.sticky-item.consultation {
  background: var(--blue);
  color: #fff;
  padding: 7px 2px;
  border: 1px solid #fff;
}

.sticky-item.consultation:hover {
  background: #000;
}

.sticky-left {
  z-index: 100;
  position: fixed;
  top: 60%;
  left: 2px;
  width: 100px;
  padding: 3px 0;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.sticky-left:hover {
  background: #000;
}

.sticky-left i {
  font-size: 25px;
}

.sticky-left p {
  font-size: 12px;
  text-align: center;
}

@media (min-width: 1200px) {
  .pop-up-content {
    padding-right: 70px;
  }
}

@media (max-width: 1199px) {
  .side-sticky a {
    padding-right: 3px;
  }
}

@media (max-width: 767px) {
  .sticky-left {
    padding: 2px 0px;
    top: 80%;
  }

  .side-sticky {
    top: 65%;
  }

  .side-sticky i,
  .sticky-left i {
    font-size: 22px;
  }

  .sticky-item p {
    font-size: 10px;
  }
}
/* Sticky Side Buttons */

/* Conatact Info */
.contact--info .contact-info-flex {
  gap: 10px;
}

.contact--info .contact-info-flex img {
  width: 16px;
}

.contact--info .contact-info-flex a:hover {
  color: #0097f3 !important;
}
/* Contact Info */

/* CF7 */
.contact-form-row {
  row-gap: 20px;
}

.wpcf7 {
  position: relative;
}

.wpcf7 .col-xl-12 p,
.wpcf7 .col-xl-6 p,
.wpcf7 .col-lg-6 p,
.wpcf7 .col-lg-12 p,
.wpcf7 .col-md-12 p,
.wpcf7 .col-md-6 p {
  margin-bottom: 0 !important;
}

.wpcf7 input[type="file"] {
  background: #fff;
}

.wpcf7 input,
.wpcf7 select {
  width: 100%;
  height: 55px;
  border-radius: 5px !important;
  padding: 15px !important;
}

.wpcf7 textarea {
  padding: 15px !important;
  height: 195px !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.sumbit--contact {
  padding: 12px 0;
  font-family: "GTWalsheimProRegular";
  font-weight: 500;
  background: #000;
  color: #fff;
  border: 1px solid var(--black);
  transition: 0.5s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.sumbit--contact:hover {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-response-output {
  position: absolute;
  margin: 15px 0 0 !important;
  width: 100%;
  border-color: #dc3232 !important;
  text-align: center;
}
/* CF7 */

/* Client Feedback */

section.client-feedback {
  background: url("https://hushtecsolutions.com/wp-content/uploads/2025/05/section-client-bg.jpg")
    no-repeat center / cover;
  color: #fff;
}

section.client-feedback .card {
  padding: 20px;
  background: var(--light-gray);
  border: 1px solid;
  height: 100%;
  border-radius: 5px;
  color: var(--black);
}

section.client-feedback h3 {
  color: var(--blue) !important;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: unset !important;
}

section.client-feedback h3::before {
  content: url(../../assets/img/global/testimonial.png);
}

section.client-feedback .card p {
  font-size: 16px;
}

@media (max-width: 991px) {
  section.client-feedback .row {
    gap: 30px;
  }
}

/* Client Feedback */

/* Client Logos */

section.clients--logos .item {
  height: 80px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.52);
  margin: 0 10px 10px 0;
  border: 0.5px solid var(--gray);
}

section.clients--logos .item img {
  object-fit: contain;
  height: 100%;
}

/* Client Logos */
