@charset "UTF-8";
/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #d4217f;
  --theme-color2: #F93E5E;
  --title-color: #121212;
  --body-color: #000;
  --smoke-color: #D8DDE1;
  --smoke-color2: #f4f4f4;
  --smoke-color3: #EBEEFF;
  --smoke-color4: #F9F8FF;
  --black-color: #000000;
  --black-color2: #0A0A0A;
  --gray-color: #D8DDE1;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --title-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1350px;
  --container-gutters: 24px;
  --section-space: 100px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]) {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}


a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

p:empty {
  display: none;
}

p {
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}

p a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

h1 {
  font-size: 84px;
  line-height: 1.208;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  line-height: 1.278;
}

h4 {
  font-size: 30px;
  line-height: 1.333;
}

/* Large devices */
@media (max-width: 1199px) {
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }
  h2 {
    font-size: 26px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  h1 {
    font-size: 32px;
  }
}

/*------------------- 2.1. Container -------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}

/* Hight Resoulation devices */

@media only screen and (min-width: 1300px) {
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1680px;
  }
}

/*------------------- 2.3. Input -------------------*/
.form-control,
textarea,
input {
  height: 50px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid var(--gray-color);
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 100px;
  font-size: 14px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.form-control:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
}

.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-control::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-control::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}

.form-control:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-control::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}

textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 30px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 16px;
  color: var(--body-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

.form-messages {
  display: none;
}

/*------------------- 2.4. Slider -------------------*/

.th-slider.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
  padding: 25px 0;
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border-radius: 30px;
  color: var(--title-color);
  border: 1px solid var(--title-color);
  position: absolute;
  top: 50%;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  line-height: var(--icon-size, 60px);
  font-size: var(--icon-font-size, 20px);
  margin-top: calc(var(--icon-size, 0px) / -2);
  z-index: 3;
  border-radius: 50%;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .slider-arrow {
    display: none !important;
  }
}

.slider-arrow.slider-next {
  right: var(--pos-x, -120px);
  left: auto;
}

.slider-arrow:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: var(--theme-color);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slider-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -70px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .slider-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -17px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }
  .slider-arrow.slider-next {
    margin-right: 0;
    margin-left: 40px;
  }
}

/*------------------- 2.4. nice-select -------------------*/
:root {
  --input-height: 50px;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  background-image: linear-gradient(to right, #d4217f, #c00bab, #d4217f);
  background-size: 220% 150%;
  font-family: var(--body-font);
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white-color);
  line-height: 1;
  padding: 21px 28px;
  border-radius: 0px;
  -webkit-transform: perspective(0) translateZ(0);
  transform: perspective(0) translateZ(0);
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.th-btn.th-icon i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.th-btn:before, .th-btn:after {
  content: "";
  position: absolute;
  height: 50%;
  width: 0;
  background-color: var(--title-color);
  -webkit-transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.th-btn:before {
  top: 0;
  left: 0;
  right: auto;
}

.th-btn:after {
  bottom: 0;
  right: 0;
  left: auto;
}

.th-btn:hover {
  color: var(--white-color);
  box-shadow: none;
}

.th-btn:hover.th-icon i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.th-btn:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}

.th-btn:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.th-btn.style1{
  color: #fff;
}
.th-btn.style1:before, .th-btn.style1:after {
  background-color: var(--white-color);
}

.th-btn.style1:hover {
  color: var(--title-color);
}

.th-btn.style1:hover:before, .th-btn.style1:hover:after {
  background-color: var(--white-color);
}

.th-btn.th-radius {
  border-radius: 100px;
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 10px);
  margin-top: -0.32em;
}

.sub-title {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--title-color);
  font-family: var(--title-font);
  margin-bottom: 30px;
  border-radius: 30px;
  padding: 3px 20px;
  display: inline-block;
  margin-top: 0;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .sub-title {
    font-size: 18px;
  }
}

.sub-title.style1 {
  background: var(--theme-color);
  color: var(--white-color);
}

.sub-title:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 151px;
  background: var(--theme-color);
  z-index: -1;
}

.sub-title:has(img) {
  margin-top: 0;
}

.sub-title.sub-title6 {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding: 0 75px;
}

.sub-title.sub-title6:before, .sub-title.sub-title6:after {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 66px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='66' height='15' viewBox='0 0 66 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M57.0598 0.551471H8.94024C4.36574 0.551471 0.657371 3.66243 0.657371 7.5C0.657371 11.3376 4.36574 14.4485 8.94024 14.4485H57.0598C61.6343 14.4485 65.3426 11.3376 65.3426 7.5C65.3426 3.66243 61.6343 0.551471 57.0598 0.551471ZM8.94024 0C4.00268 0 0 3.35786 0 7.5C0 11.6421 4.00268 15 8.94024 15H57.0598C61.9973 15 66 11.6421 66 7.5C66 3.35786 61.9973 0 57.0598 0H8.94024Z' fill='%236D2CF8'/%3E%3Cpath d='M58.6224 10.0778C58.8944 9.80583 58.8944 9.36509 58.6224 9.09311L57.4162 7.88697C58.0248 6.81319 57.7991 5.56272 56.9983 4.76305C55.9815 3.74631 54.3255 3.74499 53.3075 4.76305C52.2901 5.78044 52.2901 7.43645 53.3075 8.45384C54.1001 9.24545 55.3488 9.48103 56.4307 8.87102L57.6375 10.0778C57.9097 10.3498 58.3504 10.3498 58.6224 10.0778ZM56.0137 7.469C55.5472 7.93555 54.759 7.93555 54.2925 7.469C53.8177 6.99425 53.8177 6.22237 54.2925 5.74775C54.7745 5.26572 55.5309 5.26493 56.0137 5.74775C56.4858 6.21986 56.4939 6.98883 56.0137 7.469Z' fill='%236D2CF8'/%3E%3Cpath d='M45.947 7H8.37271C7.98783 7 7.67627 7.31143 7.67627 7.69644C7.67627 8.08146 7.9877 8.39288 8.37271 8.39288H45.947C46.3319 8.39288 46.6435 8.08146 46.6435 7.69644C46.6435 7.31143 46.3319 7 45.947 7Z' fill='%236D2CF8'/%3E%3C/svg%3E%0A");
  background-color: transparent;
}

.sub-title.sub-title6.style1 {
  background-color: transparent;
  color: var(--title-color);
  padding-right: 0px;
}

.sub-title.sub-title6.style1:after {
  display: none;
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
}

.title-area .sec-title {
  margin-bottom: 15px;
}

.title-area .th-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
}

/*------------------- 3.4. Common -------------------*/

.shape-mockup {
  position: absolute;
  z-index: -1;
}

.shape-mockup.z-index-3 {
  z-index: 3;
}

.z-index-3 {
  z-index: 3;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*------------------- 3.8. Text Color -------------------*/

.text-white {
  color: var(--white-color) !important;
}

/*------------------- 3.10. Animation -------------------*/

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

.th-ani {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.th-ani:hover {
  -webkit-transform: translate(0, -15px);
  -ms-transform: translate(0, -15px);
  transform: translate(0, -15px);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/*------------------- 4.1. Widget  -------------------*/

.wp-block-archives a:not(:hover) {
  color: inherit;
}

.widget {
  /* padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px); */
  margin-bottom: 40px;
  position: relative;
  border-radius: 30px;
}

.widget_call {
  /* background-color: var(--title-color); */
  position: relative;
  z-index: 2;
}

.widget-call h4 {
  margin-bottom: 5px;
}

.widget-call p{
  font-size: 18px;
  margin-bottom: 25px;
}

.widget-call .info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.widget-call .info-box_link {
  font-size: 18px;
  color: var(--white-color);
}

.widget-call .info-box_link:hover {
  color: var(--white-color);
}

.widget-call .info-box_icon {
  width: 55px;
  height: 55px;
  min-width: 50px;
  line-height: 55px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  margin-right: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget-call .info-box_icon:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}

.widget-call .info-box_subtitle {
  font-size: 14px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.widget-call .info-box_text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

.widget-call .info-box_text:last-child {
  margin-bottom: 0;
}

.widget-call .info-box:not(:last-child) {
  margin-bottom: 20px;
}

.widget_banner:has(.widget-map) {
  padding: 0;
  line-height: 0px;
}

/* Medium Large devices */

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}


.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .header-logo {
    max-width: 150px;
  }
}


.header-layout2 .main-menu > ul > li > a:not(:hover) {
  color: var(--white-color);
}

.header-layout2 .header-button .icon-btn:not(:hover) {
  color: var(--white-color);
}

.header-layout3 .header-links li a:not(:hover) {
  color: var(--white-color);
}

.header-layout3 .menu-area {
  padding-top: 10px;
}

.header-layout3 .main-menu > ul > li > a:not(:hover) {
  color: var(--white-color);
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.copyright-wrap {
  background-color: #222222;
  padding: 15px 0;
}

.copyright-text {
  margin: 0;
  color: var(--white-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .copyright-text {
    text-align: center;
  }
}

.footer-layout3 {
  background-color: var(--title-color);
}

blockquote:not(:has(> cite)) p:last-child,
.wp-block-quote:not(:has(> cite)) p:last-child {
  margin-bottom: -0.3em;
}

blockquote p:has(cite),
.wp-block-quote p:has(cite) {
  padding-bottom: 10px;
}

/* Hero Global ---------------------------------- */
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.call-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.call-btn .btn-text {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

@media (max-width: 1199px) {
  .btn-group:has(.call-btn) {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .btn-group:has(.call-btn) {
    gap: 20px;
  }
}

/* Hero 1 ---------------------------------- */
.hero-text {
  font-family: var(--body-font);
  font-weight: 300;
  margin-bottom: 30px;
}

/* hero 3 start ------------------------------*/

.hero-3 .hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.hero-img img{  
  width: 600px;
}
@media (max-width: 1299px) {
  .hero-3 .hero-img {
    margin-right: -200px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-img {
    position: relative;
    margin: 0;
  }
}

.hero-3 .th-circle .circle {
  position: absolute;
  width: 10px;
  height: 10px;
  display: block;
  background-color: var(--theme-color);
  border-radius: 50%;
}

.hero-3 .th-circle .circle.style2 {
  width: 16px;
  height: 16px;
  bottom: 22%;
  right: 10%;
  background-color: var(--theme-color);
  -webkit-animation: fadeLeftRight 3s infinite ease-in-out;
  animation: fadeLeftRight 3s infinite ease-in-out;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-3 .th-circle .circle.style2 {
    display: none;
  }
}

.hero-style3 {
  padding: 250px 0 80px 0;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style3 {
    padding: 246px 0 0px 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-style3 {
    padding: 160px 0 60px 0 !important;
    text-align: center;
  }
}

.hero-style3 .hero-title {
  font-size: 52px;
  color: var(--white-color);
  font-weight: 600;
}

@media (max-width: 1399px) {
  .hero-style3 .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .hero-style3 .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .hero-style3 .hero-title {
    font-size: 30px;
  }
  .hero-style3 .th-btn {
    font-size: 15px !important;
    width: 100% !important;
  }
  .hero-img img{
    display: none;
  }
}

.hero-style3 .hero-text {
  font-size: 18px;
  color: #fff;
  max-width: 635px;
  margin-bottom: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style3 .hero-text {
    max-width: 100%;
    display: block;
    margin: auto auto 30px auto;
  }
}

.hero-style3 .th-btn {
  font-size: 18px;
  min-width: 156px;
  padding: 19.5px 32px;
}

.hero-style3 .btn-group {
  gap: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style3 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Contact Page ---------------------------------- */
.contact-area {
  position: relative;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.contact-form2 {
  background-color: var(--white-color);
  padding: 25px;
  border-radius: 6px;
  border: 1px solid var(--smoke-color);
  position: relative;
}

.contact-form2 h3{
  font-size: 24px;
}
@media (max-width: 1299px) {
  .contact-form2 {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .contact-form2 {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .contact-form2 {
    padding: 30px 20px;
  }
}

.contact-form2 .form-control,
.contact-form2 textarea,
.contact-form2 input {
  border: none;
  border-radius: 0;
  background: var(--smoke-color2);
  border-bottom: 1px solid var(--smoke-color);
  color: var(--body-color);
  font-weight: 400;
}

.contact-form2 .form-control::-moz-placeholder,
.contact-form2 textarea::-moz-placeholder,
.contact-form2 input::-moz-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control::-webkit-input-placeholder,
.contact-form2 textarea::-webkit-input-placeholder,
.contact-form2 input::-webkit-input-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control:-ms-input-placeholder,
.contact-form2 textarea:-ms-input-placeholder,
.contact-form2 input:-ms-input-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control::-webkit-input-placeholder, .contact-form2 textarea::-webkit-input-placeholder, .contact-form2 input::-webkit-input-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control::-moz-placeholder, .contact-form2 textarea::-moz-placeholder, .contact-form2 input::-moz-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control:-ms-input-placeholder, .contact-form2 textarea:-ms-input-placeholder, .contact-form2 input:-ms-input-placeholder {
  color: var(--body-color);
}

.contact-form2 .form-control::-ms-input-placeholder, .contact-form2 textarea::-ms-input-placeholder, .contact-form2 input::-ms-input-placeholder {
  color: var(--body-color);
}

.contact-form2 textarea {
  min-height: 105px;
  border-radius: 0;
  padding-top: 16px;
  padding-bottom: 17px;
}

.contact-form2 .th-btn {
  padding: 19.5px 42px;
}

@media (max-width: 1199px) {
  .img-box4 {
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .img-box4 {
    display: block;
    margin-bottom: 0;
  }
}

.img-box4 .img1 {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .img-box4 .img1:before {
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .img-box4 .img1:before {
    width: 100%;
    height: 100%;
  }
}

/* About area 2 start ----------------------------*/

.call-btn.style2 {
  gap: 15px;
}

.call-btn.style2 .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  text-align: center;
  color: var(--white-color);
  background-image: linear-gradient(to right, #d4217f, #c00bab, #d4217f);
  background-size: 220% 150%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.call-btn.style2 .icon:hover {
  background-color: var(--title-color);
}

.call-btn.style2 .btn-text {
  font-weight: 400;
  display: block;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.8)
}

.call-btn.style2 .btn-title {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
}

.call-btn.style2 .btn-title:hover{
  color: var(--theme-color);
}

/* testimonial 3 start ------------------------------*/
.testiSlider3 {
  position: relative;
  overflow: hidden;
  margin: 0 -97px !important;
  /* Small devices */
}

@media (max-width: 767px) {
  .testiSlider3 {
    margin: 0 !important;
  }
}

.testiSlider3 .swiper-slide.swiper-slide-active .testi-box:before {
  background: transparent;
}

.testiSlider3 .swiper-slide.swiper-slide-prev .testi-box:before {
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
  -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.testiSlider3 .slider-arrow {
  top: unset;
  bottom: 0;
  left: 22.5%;
  --icon-size: 50px;
  background-color: var(--white-color);
  border: 1px solid var(--smoke-color);
  box-shadow: none;
  color: var(--title-color);
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.testiSlider3 .slider-arrow:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--title-color);
}

@media (max-width: 1799px) {
  .testiSlider3 .slider-arrow {
    left: 18%;
  }
}

.testiSlider3 .slider-arrow.slider-next {
  right: 22.5%;
  left: auto;
}

@media (max-width: 1799px) {
  .testiSlider3 .slider-arrow.slider-next {
    right: 18%;
  }
}

.testiSlider3 .swiper-pagination-bullets {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 45px 0 10px 0;
  padding-bottom: 20px;
  line-height: 14px;
  height: 20px;
}

.testiSlider3 .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 18px;
  --swiper-pagination-bullet-horizontal-gap: 17px;
  margin: 5px 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
  background-color: var(--smoke-color);
  color: var(--smoke-color);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.testiSlider3 .swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--smoke-color);
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  border-radius: inherit;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.testiSlider3 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--title-color);
}

.testiSlider3 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  border-color: var(--smoke-color);
}

.testiSlider3 .slider-pagination {
  position: relative;
}

.testiSlider3 .slider-pagination:after, .testiSlider3 .slider-pagination:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 410px;
  height: 1px;
  background-color: var(--smoke-color);
  /* Small devices */
}

@media (max-width: 767px) {
  .testiSlider3 .slider-pagination:after, .testiSlider3 .slider-pagination:before {
    display: none;
  }
}

.testiSlider3 .slider-pagination:before {
  margin-left: -27rem;
}

.testiSlider3 .slider-pagination:after {
  margin-left: 1.5rem;
}

.testi-box {
  position: relative;
  border: 1px solid #E3E7F0;
  border-radius: 30px;
  padding: 35px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}

@media (max-width: 1500px) {
  .testi-box {
    padding: 40px;
  }
}

@media (max-width: 1299px) {
  .testi-box {
    padding: 30px;
  }
}

.testi-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  z-index: 1;
}

@media (max-width: 1199px) {
  .testi-box {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .testi-box {
    padding: 30px;
  }
}

.testi-box .box-text {
  font-size: 15px;
  margin-top: -0.5rem;
  color: var(--title-color);
  border-bottom: 1px solid var(--smoke-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-weight: 400;
}

@media (min-width: 1499px) {
  .testi-box .box-text {
    height: 240px;
  }
}

@media (min-width: 1199px) and (max-width: 1499px) {
  .testi-box .box-text {
    height: 300px;
  }
}

.testi-box .box-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.testi-box .box-author img {
  width: 80px;
}

.testi-box .box-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .testi-box .box-title {
    font-size: 18px;
    line-height: 28px;
  }
}

.testi-box .box-desig {
  font-weight: 400;
  font-size: 14px;
  font-family: var(--body-font);
  color: var(--body-color);
}

.testi-box .box-review i {
  color: #F3BA0E;
  font-size: 14px;
}

.testi-box:hover {
  border: 1px solid #797E88;
}

.testi-box.th-ani:hover {
  -webkit-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  transform: translate(0, -5px);
}
/* Counter 1 ---------------------------------- */
.counter-card {
  position: relative;
}

.counter-card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.counter-card-wrap .divider {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 71px;
  background-image: url("../img/shape/shape-6.png");
  background-repeat: no-repeat;
}

.counter-card-wrap .divider:last-of-type {
  display: none;
}

.counter-card .box-number {
  font-size: 48px;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: -0.2em;
  text-align: center;
}

.counter-card .media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Medium devices */
@media (max-width: 991px) {
  .counter-card-wrap {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px 0;
  }
  .counter-card-wrap .divider {
    display: none;
  }
  .counter-card .box-number {
    font-size: 36px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .counter-card {
    text-align: center;
  }
  .counter-card:not(:last-child) {
    margin-bottom: 25px;
  }
}

/* brand start ------------------------*/

.brand-item {
  /* width: 217px; */
  height: 60px;
  overflow: hidden;
  position: relative;
  display: block;
  margin-left: auto;
  /* Large devices */
}

@media (max-width: 1199px) {
  .brand-item {
    margin-right: auto;
  }
}

.brand-item img {
  margin: 0 auto;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/*------------------- 4.00. Simple Sections  -------------------*/

.two-column:has(.checklist.style6) {
  gap: 30px;
}
/*------------------- 4.00. Faq -------------------*/
/* Faq 1 ---------------------------------- */
.accordion-card {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: transparent;
  border: 1px solid #5C6574;
  border-radius: 30px;
  overflow: hidden;
}

.accordion-card:not(:last-child) {
  margin-bottom: 24px;
}

.accordion-card .accordion-button {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--title-font);
  border: 0;
  color: var(--title-color);
  background-color: transparent;
  padding: 12px 45px 12px 30px;
  min-height: 70px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.accordion-card .accordion-button:after {
  content: "\f107";
  height: 100%;
  width: auto;
  line-height: 1;
  background-color: transparent;
  font-family: var(--icon-font);
  color: var(--title-color);
  font-weight: 700;
  font-size: 1em;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 30px;
  -webkit-clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
  padding-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion-card .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-card .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-radius: 0;
}

.accordion-card .accordion-button:not(.collapsed):after {
  content: '\f106';
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.accordion-card .accordion-collapse {
  border: none;
}

.accordion-card .accordion-body {
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-top: 1px solid #797E88;
  margin: 0px 30px 30px 30px;
  padding: 30px 0 0 0;
}

.accordion-card .faq-text {
  line-height: 26px;
  margin-top: -0.4rem;
  margin-bottom: -0.48em;
}

/* Extra small devices */
@media (max-width: 575px) {
  .accordion-card .accordion-button {
    font-size: 16px;
  }
}

/* cta 2 area start --------------------*/
.cta-area2 {
  position: relative;
  max-width: 1760px;
  display: block;
  margin: auto;
  background: #121212;
  border-radius: 0px 0px 50px 50px;
  z-index: 3;
}

/*------------------- 4.00. Marquee -------------------*/
/* Marquee 1---------------------------------- */
.marquee-area {
  position: relative;
  /* min-height: 235px; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

.marquee-content {
  position: relative;
  padding: 37px 0;
  z-index: 2;
  overflow: hidden;
}

.marquee {
  position: relative;
  --duration: 120s;
  --gap: 35px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: var(--gap);
}

.marquee:first-child {
  --duration: 100s;
}

.marquee:last-child {
  --duration: 80s;
}

.marquee .marquee-group {
  -ms-flex-negative: 0;
  padding: 10px 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: var(--gap);
  -webkit-animation: scroll var(--duration) linear infinite;
  animation: scroll var(--duration) linear infinite;
}

.marquee .marquee-group .item {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--title-color);
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.marquee .marquee-group .item span {
  margin: 0px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.marquee .marquee-group .item img {
  margin: 0;
  margin-right: 35px;
}

/* marquee-area3 start -----------------------------*/

/* .marquee-area3:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--title-color);
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  z-index: -1;
} */

/*------------------- 4.00. Process -------------------*/
/* Processs area ------------------------*/

.process-item {
  position: relative;
  /* background-color: var(--white-color); */
  /* border-radius: 6px; */
  /* border: 1px solid #ccc; */
  padding: 5px 20px 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  margin-top: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  /* Large devices */
}

@media (max-width: 1199px) {
  .process-item {
    max-width: 100%;
  }
}

/* .process-item:before {
  content: "";
  position: absolute;
  inset: 0;
  top: -6px;
  right: 6px;
  bottom: 6px;
  background-color: var(--white-color);
  border: 1px solid var(--title-color);
  border-radius: 0px;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
} */

.process-item .box-number {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  margin-top: 8px;
  text-align: center;
  border-radius: 50px;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
  background: var(--theme-color);
  border: 1px solid var(--title-color);
}

.process-item .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 3px;
}

.process-item .box-text {
  margin-bottom: -0.3rem;
}
/*circle counter start ------------------------*/

.choose-area {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  padding: 180px 0 120px 0;
  background-image: linear-gradient(to right, #d4217f, #c00bab, #d4217f);
  background-size: 220% 150%;
  position: relative;
}
/* .feature-box end -------------------------------*/
/* choose-feature start -------------------------------*/
.choose-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .choose-feature {
    display: block;
    margin: auto;
    text-align: center;
  }
}

.choose-feature:not(:last-child) {
  margin-bottom: 40px;
}

.choose-feature .box-icon {
  min-width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .choose-feature .box-icon {
    max-width: 72px;
    display: block;
    margin: auto auto 20px auto;
  }
}

.choose-feature .box-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 45px;
}

.choose-feature .box-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.choose-feature .box-text {
  color: #fff;
  margin-bottom: 0;
  /* max-width: 391px; */
}

.choose-feature:hover .box-icon img {
  -webkit-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.choose-image .img1 {
  min-width: 815px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .choose-image .img1 {
    min-width: 100%;
    margin-top: 20px;
  }
}

.choose-image .img1 .choose-shape {
  position: absolute;
  width: 1104px;
  height: 370px;
  left: -20%;
  bottom: -17%;
  z-index: -1;
}

/* software-area2 ---------------------*/
.software-area2 {
  position: relative;
  z-index: 2;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

/*-- margin Bottom --*/

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

/*-- margin Left --*/

/*-- margin Right --*/

.mb-n1 {
  margin-bottom: -.25rem;
}

.space {
  padding-top: var(--section-space);
}

.space {
  padding-bottom: var(--section-space);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space {
    padding-top: var(--section-space-mobile);
  }
  .space {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 40px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
.fw-600{
  font-weight: 600;
}

.brand-sec{
  position: relative;
  padding: 40px 0;
}
.brand-sec .brand-item.style4 {
  /* min-height: 108px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}


/* Continuous Marquee Animation */
.brand-sec .th-slider .swiper-wrapper {
  display: flex;
  animation: scroll-infinite 20s linear infinite;
  will-change: transform;
}

/* Marquee Keyframes */
@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Speed Control (Optional) */
:root {
  --marquee-speed: 20s; /* Adjust for speed (lower is faster) */
}

.brand-sec .th-slider .swiper-slide {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.brand-sec .brand-item.style4 img {
  opacity: 1;
  display: block;
  width: auto;
  max-height: 60px;
  max-width: 100%;
  margin: 0 auto !important;
}
.w-120px{
  width: 120px;
}

@media (min-width: 575px) {
  .cta-dashboard img {
    bottom: -15px;
  }
}

.contact-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: luminosity;
  opacity: .1;
  width: 100%;
  height: 100%;
}
.contact-area {
  position: relative;
  background-image: linear-gradient(to right, #d4217f, #c00bab, #d4217f);
  background-size: 220% 150%;
  padding-top: 60px;
}
.map{
  margin-top: 60px;
  position: relative;
}
.map iframe{
  margin-bottom: -10px;
}
.fs-14{
  font-size: 14px;
}
.sec-title2{
  font-size: 32px;
  line-height: 42px;
}
.cta-dashboard img{
  position: relative;
  margin-top: 40px;
  border-radius: 6px;
  transition: .3s all;
}
.cta-dashboard:hover img{
  bottom: -10px;
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 64px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 18px 0 0 18px;
  max-width: 50px;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.whatsapp-us img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.call-us svg{
  width: 40px;
  margin-right: 15px;
  color: var(--tp-theme-primary);
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}


.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .4)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  /* background-color: #f4f4f4; */
  /* padding: 25px; */
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width: 1200px) {
  .popup-content {
    width: 35%;
  }
}

@media(max-width: 547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #191919;
  z-index: 9;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 4px;
  right: 6px;
}
.close:hover{
  color: #000;
}

@media (max-width: 575px) {
  .th-btn{
    padding: 12px 16px !important;
  }
  .th-btn {
    font-weight: 500 !important;
  }
  .marquee .marquee-group .item span{
    font-size: 20px;
  }
  .industry-box .img-box img{
    width: 25px;
  }
  .industry-box .img-box{
    width: 50px;
    height: 50px !important;
    line-height: 50px !important;
    flex: 0 0 50px !important;
  }
  .industry-box{
    padding-right: 5px !important;
  }
  .sec-title2,
  .title-area .sec-title{
    font-size: 24px !important;
    line-height: 34px !important;
  }
  .process-item .box-title{
    font-size: 16px !important;
  }
  .contact-form2 h3{
    font-size: 20px !important;
  }
}

.industry-box {
  margin-bottom: 20px;
  width: 185px;
  transition: .4s;
}
.bg-light-grey {
  background: #f2f2f2;
}
.industry-box .img-box {
  width: 60px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  transition: .4s;
  display: flex;
  align-items: center;
  padding: 0 !important;
  text-align: center;
  justify-content: center;
  flex: 0 0 60px;
}

.industry-box p{
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 12px;
}

.industry-box:hover {
  background: linear-gradient(91deg, #f21d54 0, #ae24b0 100%);
  transition: .4s;
}
.industry-box:hover .img-box {
  border-radius: 4px;
  background: rgba(255, 255, 255, .16) !important;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  transition: .4s;
}
.industry-box:hover p {
  color: #fff !important;
  transition: .4s;
}
.industry-box:hover .img-box img {
  filter: invert(1);
}

@media (min-width: 992px) {
  .software-area2 .title-area{
    max-width: 600px;
  }
  .hero-logos{
    max-width: 650px;
  }
}
@media (max-width: 1366px) {
  .industry-box {
    width: 100%;
  }
  .d-indusries {
    display: none !important;
  }
  .m-indusries {
    display: flex !important;
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}
.testimonial{
  position: relative;
  background-color: #fff;
  z-index: 9;
}

@media(max-width: 1200px) {
  .hero-logos img{
    margin: 7px;
  }
}
.info-box_icon.whatsapp i{
  position: relative;
  top: 2px;
  font-size: 24px;
}

.counter-card {
  flex: 1 1 calc(50% - 10px); /* Each card takes 50% width minus gap */
  text-align: center;
}

/* Ensure full width on larger screens */
@media (min-width: 576px) {
  .counter-card {
    flex: 1 1 auto;
  }
}

/* Stack cards on very small screens */
@media (max-width: 400px) {
  .counter-card {
    flex: 1 1 100%;
  }
}
.cover_image{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.email-error{
  font-size: 13px;
  font-weight: 500;
}

#phone {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti--separate-dial-code .iti__selected-dial-code{
  color: #55585b;
}
.iti{
  width: 100%;
}
.w-20{
  width: 20px !important;
}