: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-addon-services.services-style1 .services-part {
  padding: 50px 40px;
  border: 1px solid var(--neutralColor100);
  margin-bottom: 30px;
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .services-icon {
  width: 90px;
  height: 90px;
  max-height: 100%;
  border: 1px solid var(--neutralColor100);
  display: inline-block;
  text-align: center;
  line-height: 90px;
  margin-bottom: 30px;
  font-size: 50px;
}
.themephi-addon-services.services-style1 .services-part .services-icon img {
  filter: brightness(100%) invert(0);
  transition: filter 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.themephi-addon-services.services-style1 .services-part .services-icon i {
  color: var(--blackColor);
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.themephi-addon-services.services-style1 .services-part .service-meta li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style1 .services-part .service-meta li span,
.themephi-addon-services.services-style1 .services-part .service-meta li a {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .title {
  font-size: 24px;
}
.themephi-addon-services.services-style1 .services-part .title a {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .services-desc {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .services-btn .btn_text {
  display: inline-block;
  border: 1px solid var(--neutralColor100);
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part .services-btn i {
  display: inline-block;
  padding: 15px 17px;
  border: 1px solid var(--neutralColor100);
  border-radius: 50%;
  transition: 0.3s ease;
}
.themephi-addon-services.services-style1 .services-part:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}
.themephi-addon-services.services-style1 .services-part:hover .services-icon img {
  filter: brightness(0%) invert(1);
}
.themephi-addon-services.services-style1 .services-part:hover .services-icon i {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style1 .services-part:hover .service-meta li span,
.themephi-addon-services.services-style1 .services-part:hover .service-meta li a {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style1 .services-part:hover .title a {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style1 .services-part:hover .services-desc {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style1 .services-part:hover .services-btn {
  display: inline-block;
}
.themephi-addon-services.services-style1 .services-part:hover .services-btn .btn_text {
  background-color: var(--whiteColor);
  border-color: transparent;
}
.themephi-addon-services.services-style1 .services-part:hover .services-btn i {
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}
.themephi-addon-services.services-style2 {
  height: 100%;
}
.themephi-addon-services.services-style2 .services-part {
  display: flex !important;
  flex-direction: row-reverse;
  height: 100%;
}
@media (max-width: 575px) {
  .themephi-addon-services.services-style2 .services-part {
    flex-direction: column;
  }
}
.themephi-addon-services.services-style2 .services-part .services-icon {
  display: inline-flex;
  flex: 1;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .themephi-addon-services.services-style2 .services-part .services-icon {
    width: 100%;
    height: auto;
  }
}
.themephi-addon-services.services-style2 .services-part .services-text {
  background-color: var(--neutralColor900);
  padding: 33px 35px;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .themephi-addon-services.services-style2 .services-part .services-text {
    width: 100%;
    height: auto;
  }
}
.themephi-addon-services.services-style2 .services-part .services-text .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}
.themephi-addon-services.services-style2 .services-part .services-text .service-meta li {
  display: inline-block;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style2 .services-part .services-text .service-meta li span {
  color: var(--textColor);
  margin-right: 15px;
  display: inline-block;
}
.themephi-addon-services.services-style2 .services-part .services-text .service-meta li span i {
  display: inline-block;
  margin-right: 5px;
}
.themephi-addon-services.services-style2 .services-part .services-text .title {
  font-size: 32px;
}
.themephi-addon-services.services-style2 .services-part .services-text .title a {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style2 .services-part .services-text .services-desc {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style2 .services-part .services-text .services-btn {
  color: var(--whiteColor);
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.themephi-addon-services.services-style2 .services-part .services-text .post-counter {
  text-align: start;
  font-size: 220px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0.01) 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  display: block;
}
@media (max-width: 1366px) {
  .themephi-addon-services.services-style2 .services-part .services-text .post-counter {
    font-size: 190px;
  }
}
.themephi-addon-services.services-style3 .services-part {
  display: flex;
  background-color: var(--neutralColor80);
  padding: 20px;
  margin-bottom: 30px;
  align-items: center;
}
.themephi-addon-services.services-style3 .services-part .services-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 45%;
  max-width: 100%;
}
.themephi-addon-services.services-style3 .services-part .services-icon img {
  width: 100%;
}
@media (max-width: 767px) {
  .themephi-addon-services.services-style3 .services-part .services-icon {
    width: auto;
  }
}
.themephi-addon-services.services-style3 .services-part .services-text {
  padding: 0px 40px;
}
.themephi-addon-services.services-style3 .services-part .services-text .meta_cat {
  background-color: var(--neutralColor900);
  color: var(--whiteColor);
  padding: 3px 10px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}
.themephi-addon-services.services-style3 .services-part .services-text .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}
.themephi-addon-services.services-style3 .services-part .services-text .service-meta li {
  display: inline-block;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style3 .services-part .services-text .service-meta li span {
  color: var(--neutralColor800);
  margin-right: 15px;
  display: inline-block;
}
.themephi-addon-services.services-style3 .services-part .services-text .service-meta li span i {
  display: inline-block;
  margin-right: 5px;
}
.themephi-addon-services.services-style3 .services-part .services-text .title {
  margin-bottom: 10px;
  font-size: 32px;
  text-transform: uppercase;
}
.themephi-addon-services.services-style3 .services-part .services-text .title a {
  color: var(--neutralColor900);
}
.themephi-addon-services.services-style3 .services-part .services-text .services-desc {
  color: var(--neutralColor800);
  margin-bottom: 0;
}
.themephi-addon-services.services-style3 .services-part .services-text .services-btn {
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  padding: 12px 25px;
  border: 1px solid var(--neutralColor800);
  color: var(--neutralColor800);
  background-color: transparent;
  display: inline-block;
}
.themephi-addon-services.services-style3 .services-part .services-text .services-btn:hover {
  color: var(--whiteColor);
  background-color: var(--neutralColor800);
}
.themephi-addon-services.services-style4 .services-part {
  margin-bottom: 30px;
}
.themephi-addon-services.services-style4 .services-part .services-icon {
  margin-bottom: 25px;
}
.themephi-addon-services.services-style4 .services-part .services-text .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.themephi-addon-services.services-style4 .services-part .services-text .service-meta li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style4 .services-part .services-text .service-meta li span {
  display: inline-block;
}
.themephi-addon-services.services-style4 .services-part .services-text .service-meta li span i {
  display: inline-block;
  margin-right: 5px;
}
.themephi-addon-services.services-style4 .services-part .services-text .title {
  font-size: 24px;
}
.themephi-addon-services.services-style4 .services-part .services-text .title a {
  color: var(--titleColor);
}
.themephi-addon-services.services-style4 .services-part .services-text .title a:hover {
  color: var(--primaryColor);
}
.themephi-addon-services.services-style4 .services-part .services-text .services-desc {
  color: var(--neutralColor80);
  margin-bottom: 0;
}
.themephi-addon-services.services-style4 .services-part .services-text .services-btn {
  color: var(--neutralColor80);
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}
.themephi-addon-services.services-style4 .services-part .services-text .services-btn:hover {
  color: var(--primaryColor);
}
.themephi-addon-services.services-style5 .services-part {
  position: relative;
  z-index: 1;
}
.themephi-addon-services.services-style5 .services-part::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(9, 9, 8) 60%);
  z-index: 0;
}
.themephi-addon-services.services-style5 .services-part .services-text-part-wrapper-absolute {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
}
.themephi-addon-services.services-style5 .services-part .services-text .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style5 .services-part .services-text .service-meta li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style5 .services-part .services-text .service-meta li span {
  display: inline-block;
  color: var(--whiteColor);
}
.themephi-addon-services.services-style5 .services-part .services-text .service-meta li span i {
  display: inline-block;
  margin-right: 5px;
}
.themephi-addon-services.services-style5 .services-part .services-text .title {
  font-size: 24px;
}
.themephi-addon-services.services-style5 .services-part .services-text .title a {
  color: var(--titleColor);
}
.themephi-addon-services.services-style5 .services-part .services-text .title a:hover {
  color: var(--primaryColor);
}
.themephi-addon-services.services-style5 .services-part .services-text .services-desc {
  color: var(--textColor);
  margin-bottom: 0;
}
.themephi-addon-services.services-style5 .services-part .services-btn {
  color: var(--titleColor);
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}
.themephi-addon-services.services-style5 .services-part .services-btn:hover {
  color: var(--primaryColor);
}
.themephi-addon-services.services-style6 {
  padding: 40px;
  border: 1px solid var(--borderColor2);
  margin-bottom: 30px;
  transition: 0.3s ease;
  background-color: var(--bodyColor2);
  border-radius: 16px;
}
.themephi-addon-services.services-style6 .services-part .services-icon {
  width: 60px;
  height: 60px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 40px;
}
.themephi-addon-services.services-style6 .services-part .services-icon img {
  filter: brightness(100%) invert(0);
  transition: filter 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.themephi-addon-services.services-style6 .services-part .services-icon i {
  color: var(--blackColor);
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6 .services-part .service-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.themephi-addon-services.services-style6 .services-part .service-meta li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.themephi-addon-services.services-style6 .services-part .service-meta li span,
.themephi-addon-services.services-style6 .services-part .service-meta li a {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6 .services-part .title {
  font-size: 24px;
}
.themephi-addon-services.services-style6 .services-part .title a {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6 .services-part .services-desc {
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6 .services-part .services-btn .btn_text {
  display: inline-block;
  border: 1px solid var(--neutralColor100);
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6 .services-part .services-btn i {
  display: inline-block;
  padding: 15px 17px;
  border: 1px solid var(--neutralColor100);
  border-radius: 50%;
  transition: 0.3s ease;
}
.themephi-addon-services.services-style6:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}
.themephi-addon-services.services-style6:hover .services-icon img {
  filter: brightness(0%) invert(1);
}
.themephi-addon-services.services-style6:hover .services-icon i {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style6:hover .service-meta li span,
.themephi-addon-services.services-style6:hover .service-meta li a {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style6:hover .title a {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style6:hover .services-desc {
  color: var(--whiteColor);
}
.themephi-addon-services.services-style6:hover .services-btn {
  display: inline-block;
}
.themephi-addon-services.services-style6:hover .services-btn .btn_text {
  background-color: var(--whiteColor);
  border-color: transparent;
}
.themephi-addon-services.services-style6:hover .services-btn i {
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}

.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(2) .services-text,
.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(3) .services-text,
.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(6) .services-text,
.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(8) .services-text,
.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(8) .services-text,
.tp-services-wrapper.services-wrapper-style2 .row.g-0 > div:nth-child(12) .services-text {
  background-color: var(--primaryColor);
}
.tp-services-wrapper.services-wrapper-style5 .row.g-0 > div:nth-child(even) .services-part {
  transform: translateY(30px);
}
@media (max-width: 767px) {
  .tp-services-wrapper.services-wrapper-style5 .row.g-0 > div:nth-child(even) .services-part {
    transform: translateY(0px);
  }
}

.mt-30 {
  margin-top: 30px;
}

.themephi-addon-services.elementor-postion-top .services-part {
  display: block;
  text-align: center;
  flex-direction: unset;
}
.themephi-addon-services.elementor-postion-left .services-part {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .themephi-addon-services.elementor-postion-left .services-part {
    flex-wrap: wrap;
  }
}
.themephi-addon-services.elementor-postion-left .services-part .services-icon {
  display: inline-flex;
  flex: 0 0 auto;
}
.themephi-addon-services.elementor-postion-left.elementor-vertical-align-top .services-part {
  align-items: start;
}
.themephi-addon-services.elementor-postion-left.elementor-vertical-align-middle .services-part {
  align-items: center;
}
.themephi-addon-services.elementor-postion-left.elementor-vertical-align-bottom .services-part {
  align-items: end;
}
.themephi-addon-services.elementor-postion-right .services-part {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .themephi-addon-services.elementor-postion-right .services-part {
    flex-wrap: wrap;
  }
}
.themephi-addon-services.elementor-postion-right .services-part .services-icon {
  display: inline-flex;
  flex: 0 0 auto;
}
.themephi-addon-services.elementor-postion-right.elementor-vertical-align-top .services-part {
  align-items: start;
}
.themephi-addon-services.elementor-postion-right.elementor-vertical-align-middle .services-part {
  align-items: center;
}
.themephi-addon-services.elementor-postion-right.elementor-vertical-align-bottom .services-part {
  align-items: end;
}
.themephi-addon-services.elementor-postion-bottom .services-part {
  display: flex;
  flex-direction: column-reverse;
}

.services-text-part-wrapper.elementor-postion-top {
  display: block;
  flex-direction: unset;
}
.services-text-part-wrapper.elementor-postion-left {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.services-text-part-wrapper.elementor-postion-left .services-text {
  width: -moz-max-content;
  width: max-content;
}
.services-text-part-wrapper.elementor-postion-left .services-btn-part {
  margin-right: 10px;
}
.services-text-part-wrapper.elementor-postion-left.elementor-vertical-align-top {
  align-items: start;
}
.services-text-part-wrapper.elementor-postion-left.elementor-vertical-align-middle {
  align-items: center;
}
.services-text-part-wrapper.elementor-postion-left.elementor-vertical-align-bottom {
  align-items: end;
}
.services-text-part-wrapper.elementor-postion-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.services-text-part-wrapper.elementor-postion-right .services-text {
  width: -moz-max-content;
  width: max-content;
}
.services-text-part-wrapper.elementor-postion-right .services-btn-part {
  margin-left: 10px;
}
.services-text-part-wrapper.elementor-postion-right.elementor-vertical-align-top {
  align-items: start;
}
.services-text-part-wrapper.elementor-postion-right.elementor-vertical-align-middle {
  align-items: center;
}
.services-text-part-wrapper.elementor-postion-right.elementor-vertical-align-bottom {
  align-items: end;
}
.services-text-part-wrapper.elementor-postion-bottom {
  display: flex;
  flex-direction: column;
}

.tp-services-wrapper.services-wrapper-style2 ul.page-numbers {
  margin-top: 30px;
}
.tp-services-wrapper.services-wrapper-style3 .elementor-postion-right .services-part .services-text {
  padding-left: 20px;
}
.tp-services-wrapper.services-wrapper-style3 .row > div:nth-child(even) .services-part {
  flex-direction: row-reverse;
}
.tp-services-wrapper.services-wrapper-style3 .row > div:nth-child(even) .services-part .services-text {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .tp-services-wrapper.services-wrapper-style3 .row > div:nth-child(even) .services-part .services-text {
    padding-left: 0px;
  }
}
.tp-services-wrapper.services-wrapper-style3 .row > div:nth-child(even) .elementor-postion-right .services-part {
  flex-direction: row;
}
.tp-services-wrapper.services-wrapper-style3 .row > div:nth-child(even) .elementor-postion-right .services-part .services-text {
  padding-left: 40px;
}
.tp-services-wrapper.services-wrapper-style5 ul.page-numbers {
  margin-top: 60px;
}
.tp-services-wrapper ul.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.tp-services-wrapper ul.page-numbers li {
  display: inline-block;
}
.tp-services-wrapper ul.page-numbers li span.current {
  background: var(--primaryColor);
  color: var(--titleColor);
  font-size: 16px;
  text-decoration: none;
  transition: 1.3s;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  border: 1px solid var(--primaryColor);
  font-weight: 700;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 2px;
}
.tp-services-wrapper ul.page-numbers li span,
.tp-services-wrapper ul.page-numbers li a {
  line-height: 50px;
  color: var(--primaryColor);
  font-size: 16px;
  text-decoration: none;
  transition: 1.3s;
  text-align: center;
  background: transparent;
  opacity: 1;
  display: inline-block;
  vertical-align: top;
  border: 1px solid var(--primaryColor);
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 2px;
  cursor: pointer;
}
.tp-services-wrapper ul.page-numbers li a.next {
  position: relative;
}
.tp-services-wrapper ul.page-numbers li a:hover {
  background: var(--primaryColor);
  color: var(--titleColor);
}/*# sourceMappingURL=services-grid.css.map */