/* CSS Document */
/** variables **/
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #F05123;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 1000;
}

#backToTopBtn:hover {
  background-color: #ebebeb;
  color: #848484;
}

/** Text Reset **/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.25em;
  letter-spacing: 0;
  line-height: 1.1em;
}

h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-weight: 900;
}

p {
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.5em;
  font-weight: normal;
}

.h3-title h3 {
  font-size: 33px;
}

.h4-title h4 {
  font-size: 20px;
}

.h5-title h5 {
  font-size: 1.5vw;
}

.h6-title h6 {
  font-size: 12px;
}

@media screen and (min-width: 1920px) {
  .h1-title h1 {
    font-size: 6vw;
  }
  .h2-title h2 {
    font-size: 3.5vw;
  }
}
/** Desktop XLarge **/
@media screen and (max-width: 1920px) {
  .h1-title h1 {
    font-size: 7vw;
  }
  .h2-title h2 {
    font-size: 3.5vw;
  }
}
/** Desktop Large **/
@media screen and (max-width: 1200px) {
  .h1-title h1 {
    font-size: 8vw;
  }
  .h2-title h2 {
    font-size: 5vw;
  }
}
/** Tablet Large **/
@media screen and (max-width: 1024px) {
  .h1-title h1 {
    font-size: 9vw;
  }
}
/** Mobile LG **/
@media screen and (max-width: 767px) {
  .h1-title h1 {
    font-size: 9.5vw;
  }
  .h2-title h2 {
    font-size: 6vw;
  }
}
/** Mobile md **/
@media screen and (max-width: 480px) {
  .h1-title h1 {
    font-size: 8vw;
  }
}
/** Mobile sm **/
@media screen and (max-width: 375px) {
  .h1-title h1 {
    font-size: 10vw;
  }
}
[cust-tooltip]:before,
[cust-tooltip]:after {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  -webkit-font-smoothing: antialiased;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  transition: 0.6s ease-in-out 0.4s;
}

[cust-tooltip]:before {
  content: "";
  height: 0;
  width: 0;
  top: calc(100% - 9px);
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent #333 transparent;
}

[cust-tooltip]:after {
  content: attr(cust-tooltip);
  white-space: nowrap;
  background: #333;
  padding: 0.5rem 1rem 0.5rem 1rem;
  font-size: 0.9rem;
  box-sizing: border-box;
  top: calc(100% + 11px);
  color: #fff;
  border-radius: 2px;
  text-shadow: 0px 1px 1px #000;
  z-index: 9;
}

[cust-tooltip]:hover:before,
[cust-tooltip]:hover:after {
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease-in-out 0.3s;
}

/* utility start */
.rounded {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* Custom Ajax Search, replaces plugin */
.custom-ajax #ajax-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

#ajax-search-form #ajax-search-input, #ajax-search-form #ajax-form-submit, #ajax-search-form #ajax-category-select {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Ajax Search Bar Styles [overides] */
.find-stuff-ajax .aws-search-form {
  height: 60px;
  width: 100%;
  border: solid 5px #ffffff;
  border-radius: 200px;
  background-color: #ffffff;
}
.find-stuff-ajax .aws-search-form .aws-wrapper input {
  width: 90%;
  border-color: #ffffff;
  border-top-left-radius: 200px !important;
  border-bottom-left-radius: 200px !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.find-stuff-ajax .aws-search-form .aws-search-btn.aws-form-btn {
  border-color: #ffffff;
  border-radius: 200px !important;
  width: 10%;
  background-image: linear-gradient(to right, #af2046, #f05123);
  z-index: 10;
  transform: scale(1);
  overflow: hidden;
  transition: ease-in-out 300ms;
}
.find-stuff-ajax .aws-search-form .aws-search-btn.aws-form-btn:after {
  background-image: linear-gradient(to right, #f05123, #af2046);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  z-index: -10;
  transition: opacity 0.5s;
}
.find-stuff-ajax .aws-search-form .aws-search-btn.aws-form-btn:hover:after {
  opacity: 1;
}
.find-stuff-ajax .aws-search-form .aws-search-btn.aws-form-btn:hover {
  transform: scale(0.9);
}
.find-stuff-ajax .aws-search-form .aws-search-btn_icon {
  width: 100%;
  color: #ffffff;
}

/** Mobile LG **/
@media screen and (max-width: 767px) {
  .find-stuff-ajax .aws-search-form .aws-wrapper input {
    width: 75%;
  }
  .find-stuff-ajax .aws-search-form .aws-search-btn.aws-form-btn {
    width: 25%;
  }
} /* search bar dimensions */
/* AudioEye Start */
#ae_launcher.ae-cta-position-preset-left-lower {
  left: 15px !important;
  bottom: 60px !important;
}

.svtxt {
  font-size: 0.65vw;
}

.lvtxt h6 {
  font-size: 0.8vw !important;
  text-transform: capitalize;
}

.lvtxt h6:hover {
  color: #F05123;
}

.pvtxt h5 {
  font-size: 1.25vw;
  color: #F05123;
  font-weight: bold !important;
}

@media screen and (max-width: 1440px) {
  .svtxt {
    font-size: 0.9vw;
  }
  .lvtxt h6 {
    font-size: 1.1vw !important;
    text-transform: capitalize;
  }
  .pvtxt h5 {
    font-size: 1.5vw;
    color: #F05123;
    font-weight: bold !important;
  }
}
@media screen and (max-width: 1024px) {
  .svtxt {
    font-size: 1vw;
  }
  .pvtxt h5 {
    font-size: 2vw;
    color: #F05123;
    font-weight: bold !important;
  }
}
@media screen and (max-width: 767px) {
  .svtxt {
    font-size: 5vw;
  }
  .pvtxt h5 {
    font-size: 6vw;
  }
  .lvtxt h6 {
    font-size: 18px !important;
  }
}
/** link styling **/
a {
  color: #f05123;
  text-decoration: underline;
  text-decoration-color: #f05123;
}
a:hover {
  color: #ebebeb;
  text-decoration-color: #ebebeb;
}
a:active {
  color: #f05123;
  text-decoration-color: #f05123;
}

[data-elementor-type=footer] .foot-list li a {
  font-size: 16px;
}

[data-elementor-type=footer] p {
  font-size: 16px;
}

/** Desktop XLarge **/
/** Desktop Large **/
/** Tablet Large **/
/** Mobile LG **/
/** Mobile md **/
/** Mobile sm **//*# sourceMappingURL=styles-master.css.map */