:root {
  --bodyFont: "Poppins", sans-serif;
  --titleFont: "Tomorrow", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --primaryColor: #ed2a00;
  --titleColor: #ffffff;
  --textColor: #474747;
  --bodyColor: #000000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --menuColor: #000000;
  --borderColor: #e6e6e6;
  --borderColor2: #ffffff14;
  --btnTextColor: #000000;
  --btnTextHoverColor: var(--primaryColor);
  --btnBgColor: var(--primaryColor);
  --btnBgHoverColor: var(--primaryColor5);
  --linkColor: var(--secondaryColor);
  --linkHoverColor: var(--primaryColor);
  --neutralColor0: #ffffff;
  --neutralColor10: #fafafa;
  --neutralColor20: #f5f5f6;
  --neutralColor30: #ebebed;
  --neutralColor40: #dfdfe1;
  --neutralColor50: #c2c2c6;
  --neutralColor60: #b3b3b8;
  --neutralColor70: #a7a7ac;
  --neutralColor80: #98999e;
  --neutralColor90: #898a91;
  --neutralColor100: #7b7b83;
  --neutralColor200: #6c6d75;
  --neutralColor300: #5d5e67;
  --neutralColor400: #51525c;
  --neutralColor500: #42434e;
  --neutralColor600: #363742;
  --neutralColor700: #252632;
  --neutralColor800: #161725;
  --neutralColor900: #0a0b19;
  --neutralColor1000: #0d0d0d;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.themephi-button:not(.link_btn) a {
  display: inline-flex;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--titleFont);
  line-height: 16px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  transition: all 0.9s ease-in-out;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.themephi-button:not(.link_btn) a::before {
  position: absolute;
  content: "";
  transform: translate(-50%, -50%);
  top: var(--y);
  left: var(--x);
  width: 0px;
  height: 0px;
  transition: all 0.9s ease-in-out;
  z-index: -1;
}
.themephi-button:not(.link_btn) a:hover {
  color: var(--btnTextColor);
}
.themephi-button:not(.link_btn) a:hover::before {
  width: 400%;
  height: 400%;
}
.themephi-button:not(.link_btn) a svg {
  width: 20px;
  position: relative;
}
.themephi-button:not(.link_btn) a i {
  font-size: 20px;
}
.themephi-button:not(.link_btn).primary_btn a {
  color: var(--blackColor);
  background: var(--btnBgColor);
}
.themephi-button:not(.link_btn).primary_btn a::before {
  background: var(--btnBgHoverColor);
}
.themephi-button:not(.link_btn).primary_btn a:hover {
  color: var(--btnTextColor);
}
.themephi-button:not(.link_btn).secondary_btn a {
  background: var(--secondaryColor);
  color: var(--whiteColor);
}
.themephi-button:not(.link_btn).secondary_btn a:before {
  background: var(--primaryColor);
}
.themephi-button:not(.link_btn).another_btn a {
  background-color: var(--primaryColor);
  border: 1px solid var(--borderColor);
  border-radius: 100px;
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  text-align: center;
  gap: 0;
  transition: all 0.7s ease;
}
.themephi-button:not(.link_btn).another_btn a i {
  color: var(--primaryColor);
  font-weight: 600;
  background-color: var(--secondaryColor);
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.themephi-button:not(.link_btn).another_btn a:hover {
  border-color: var(--primaryColor);
  color: var(--textColor);
}
.themephi-button:not(.link_btn).another_btn a:hover i {
  color: var(--secondaryColor);
  transform: rotateY(-180deg);
  background-color: var(--primaryColor);
}
.themephi-button.link_btn a {
  color: var(--btnTextColor);
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--bodyFont);
  background: transparent;
  position: relative;
  transition: 0.3s;
  z-index: 1;
  overflow: hidden;
}
.themephi-button.link_btn a i {
  color: var(--btnTextHoverColor);
}
.themephi-button.link_btn a:hover {
  color: var(--btnTextHoverColor);
}
.themephi-button.link_btn a:hover i {
  color: var(--btnTextColor);
}
.themephi-button.link_btn a::before {
  display: none;
}

.slider-themephi-button {
  display: inline-block;
  color: var(--whiteColor);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--titleFont);
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--primaryColor);
  border-radius: 2px;
  position: relative;
  transition: 0.3s;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.slider-themephi-button:hover {
  background: var(--titleColor);
}
.slider-themephi-button svg {
  width: 20px;
  position: relative;
}
.slider-themephi-button::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--titleColor);
  transform: translateY(110%);
  transition: 0.3s;
  z-index: -1;
}
.slider-themephi-button:hover::after {
  transform: translateY(0%);
}
.slider-themephi-button.style-2:hover {
  background: var(--titleColor);
  color: var(--whiteColor) !important;
}

.slider-call-area {
  display: flex;
  align-items: flex-start;
}
.slider-call-area .icon i {
  width: 52px;
  height: 52px;
  background: var(--whiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryColor);
  font-weight: 600;
  margin-right: 15px;
  margin-bottom: 20px;
}
.slider-call-area .slider-detail span {
  display: block;
  text-transform: capitalize;
  color: var(--bodyColor);
  margin-bottom: 10px;
}
.slider-call-area .slider-detail a {
  font-weight: 700;
  font-size: 24px;
  color: var(--whiteColor);
  line-height: 37px;
  transition: 0.3s;
}
.slider-call-area .slider-detail a:hover {
  color: var(--primaryColor);
}

#rev_slider_2_1_wrapper .zeus .tp-tab {
  text-align: center;
}
#rev_slider_2_1_wrapper .zeus .tp-tab .tp-tab-title {
  display: inline-block;
  background: transparent;
  line-height: 8px;
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tp-tabs-inner-wrapper .tp-tab.selected .tp-tab-title {
  position: relative;
}
.tp-tabs-inner-wrapper .tp-tab.selected .tp-tab-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--blackColor);
  margin-top: 10px;
}

.slider-themephi-button.handyman_slider_btn.rs-layer {
  padding: 15px 60px 15px 24px;
  position: relative;
}
.slider-themephi-button.handyman_slider_btn.rs-layer:hover {
  color: var(--whiteColor) !important;
}
.slider-themephi-button.handyman_slider_btn.rs-layer::before {
  content: "\ea65";
  font-family: "tp-icons";
  display: inline-block;
  background: var(--primaryColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--whiteColor);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-themephi-button.engineer.rs-layer {
  background: transparent !important;
  border: 1px solid var(--whiteColor) !important;
  color: var(--whiteColor) !important;
  display: flex;
  align-items: center;
  padding: 18px 30px 18px 30px;
}
.slider-themephi-button.engineer.rs-layer:hover {
  border: 1px solid var(--primaryColor) !important;
}
.slider-themephi-button.engineer.rs-layer:hover::after {
  background: var(--primaryColor) !important;
}

.slider-themephi-button.engineer.btn-1.rs-layer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 70px 18px 30px !important;
}
.slider-themephi-button.engineer.btn-1.rs-layer::before {
  content: "\ea65";
  font-family: "tp-icons";
  display: inline-block;
  background: var(--whiteColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--primaryColor);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.engineer_slider .tp-tabs-inner-wrapper .tp-tab-title {
  color: var(--whiteColor);
  background: transparent;
  width: 67px !important;
  height: 67px !important;
  line-height: 67px !important;
  text-align: center;
  padding: 20px 10px !important;
  border: 2px solid var(--whiteColor);
  border-radius: 50px;
}

.engineer_slider .tp-tabs-inner-wrapper .tp-tab.selected .tp-tab-title::after {
  content: "";
  display: none;
}

.engineer_slider #rev_slider_6_1_wrapper .zeus .tp-tab.selected .tp-tab-title {
  color: var(--primaryColor) !important;
  background: var(--whiteColor);
}

button.metform-btn.metform-submit-btn.elevate_metform_btn svg {
  background: var(--whiteColor);
  width: 40px;
  height: 40px;
  padding: 13px;
  margin-left: 14px;
}/*# sourceMappingURL=button.css.map */