﻿/*
************
*************************

Template Name: Name - Template Name
Description: Template description
Author: author name
Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header

******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&amp;display=swap");


body {
  font-family: "Recoleta Alt";
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 18px;
  line-height: 1.6;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a,
.button, button {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.txr-demo-item {
    position: relative;
    overflow: hidden;
    .new-bs {
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        background-color: #ff0000;
        letter-spacing: 1.5px;
        padding: 4px 80px;
        transform: rotate(-40deg);
        position: absolute;
        left: -57px;
        top: 26px;
        z-index: 1;
        box-shadow: 0px 0px 14px 18px #0000003b;
    }
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Recoleta Alt";
  color: var(--clr-body-heading);
  margin-top: 0px;
  line-height: 1.12;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 62px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  font-family: "Recoleta Alt";
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--clr-body-text);
}

hr {
  border-bottom: 1px solid var(--clr-bg-gray-3);
  border-top: 0 none;
  padding: 0;
  opacity: 1;
}

label {
  color: var(--clr-common-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-webkit-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
input:-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
input::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
input:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

textarea::-webkit-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
textarea:-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
textarea::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--Linear, linear-gradient(180deg, #5A56F0 -1.33%, #FD50B9 100%));
  border-radius: 30px;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.w_img img {
  width: 100%;
}

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/* <<<<<<<    Margin & Padding     >>>>>>>>> */
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  --bs-gutter-x: 30px;
}
.row.g-0 {
  --bs-gutter-x: 0;
}

@media (min-width: 1600px) {
  .container.h1-container {
    max-width: 1750px;
  }
}
@media (min-width: 1200px) {
  .container.h2-container {
    max-width: 1320px;
  }
}
/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-black: #222222;
  --clr-common-black-soft: #0D0D0D;
  --clr-common-black-deep: #000000;
  --clr-body-heading: #00071A;
  --clr-body-text-white: #ffffff;
  --clr-body-text: #4D515F;
  --clr-color-blue: #000A30;
  --clr-hover-primary: #FF7425;
  --clr-theme-primary: #FF7425;
  --clr-bg-primary: #FF7425;
  --clr-bg-white: #ffffff;
  --clr-bg-gray: #171717;
  --clr-bg-gd: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
}

.fix {
  overflow: hidden;
}

.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.no-after::after {
  display: none;
}

.p-relative {
  position: relative;
}

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

.black-bg {
  background-color: #0D0D0D;
}

.reveal-type {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}
.reveal-type .line {
  display: inline-block !important;
}

.reveal-type-2 {
  text-transform: unset !important;
  letter-spacing: -0.7px;
}
.reveal-type-2 .line {
  display: inline-block !important;
}

.split-in-right {
  text-transform: unset !important;
}

.split-in-fade {
  text-transform: unset !important;
}

.split-in-left {
  text-transform: unset !important;
}

.scroll-top {
  position: fixed;
  left: 30px !important;
  right: auto !important;
  bottom: 0;
  height: 60px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 20px 20px 0px 0px;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition: all 300ms linear;
  background: var(--Linear, linear-gradient(180deg, #5A56F0 -1.33%, #FD50B9 100%));
  font-size: 20px;
  text-align: center;
  color: #fff;
  transform: translateY(80px);
}

.scroll-top-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px;
  padding-top: 16px;
}
.scroll-top-wrap .icon-2 {
  font-size: 16px;
  position: absolute;
  left: 33%;
  bottom: 22%;
  transform: translate(-50%, -50%);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes p-i-2 {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(30deg);
  }
  20% {
    transform: rotate(-30deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  60% {
    filter: grayscale(100%);
  }
  80% {
    filter: grayscale(0%);
  }
}
@keyframes p-img-1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes p-img-2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes p-bg-img {
  0% {
    background-position: center;
  }
  40% {
    background-position: bottom;
  }
  80% {
    background-position: top;
  }
  100% {
    background-position: center;
  }
}
@keyframes f-bg-text {
  0% {
    opacity: 0.04;
    transform: translateY(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50px);
  }
  100% {
    opacity: 0.04;
    transform: translateY(0px);
  }
}
@keyframes s-bg-img {
  0% {
    background-position: center;
  }
  70% {
    background-position: top;
  }
  100% {
    background-position: center;
  }
}
@keyframes marquee-animation {
  0% {
    translateX: 0%;
  }
  100% {
    translate: -100%;
  }
}
@keyframes inner-page-slider-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes inner-page-slider-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideup {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slidedown {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes r-bg-img {
  0% {
    background-position: top;
  }
  50% {
    background-position: revert;
  }
  100% {
    background-position: top;
  }
}
@-webkit-keyframes videoBtn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes videoBtn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.subtitle-wrap {
  display: inline-block;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(90, 86, 240, 0.2) -1.33%, rgba(253, 80, 185, 0.2) 100%);
  margin-bottom: 20px;
}
.subtitle-wrap .subtitle-1 {
  display: inline-block;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 0;
}

.section-title-1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .section-title-1 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-1 {
    font-size: 40px;
  }
}
.section-title-1 .style-color {
  display: inline-block;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-1-transparent {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-header-1-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-header-1-logo {
    width: 180px;
  }
}
.txr-header-1-wrap {
  width: 100%;
  max-width: 1750px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.txr-header-1-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.txr-header-1-action {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0 48px;
}
@media (max-width: 767px) {
  .txr-header-1-action {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .txr-header-1-action .txr-btn-3 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-header-1-action .txr-btn-3 {
    display: inline-block;
  }
}

.txr-header-1-menu ul .has-dropdown {
  position: relative;
  z-index: 5;
  text-align: start;
}
.txr-header-1-menu ul li {
  display: inline-block;
  margin: 0 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-header-1-menu ul li {
    margin: 0 5px;
  }
}
.txr-header-1-menu ul li a {
  font-size: 18px;
  font-family: "Recoleta Alt";
  color: #FFFFFF;
  font-weight: 600;
  padding: 23px 0;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
}
.txr-header-1-menu ul li a::after {
  position: absolute;
  content: "";
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  width: 22px;
  height: 22px;
  border-radius: 50%;
  left: 100%;
  top: 21px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
}
.txr-header-1-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.txr-header-1-menu ul li .submenu li {
  display: block;
  margin: 0;
  position: relative;
  z-index: 5;
}
.txr-header-1-menu ul li .submenu li a {
  display: block;
  padding: 15px 25px;
  color: #00071A;
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}
.txr-header-1-menu ul li .submenu li a::after {
  top: 14px;
}
.txr-header-1-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.txr-header-1-menu ul li .submenu li:hover > a {
  background-color: var(--clr-hover-primary);
  background-color: transparent;
}
.txr-header-1-menu ul li .submenu li:hover > a::after {
  left: 21px;
}
.txr-header-1-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(28, 42, 78, 0.231372549);
}
.txr-header-1-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.txr-header-1-menu ul li:hover > a::after {
  opacity: 1;
  visibility: visible;
  left: -4px;
}

.sticky_header_1 {
  top: 30px;
  -webkit-transition: all 600ms linear 0s;
  -moz-transition: all 600ms linear 0s;
  -ms-transition: all 600ms linear 0s;
  -o-transition: all 600ms linear 0s;
  transition: all 600ms linear 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky_header_1 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.sticky_header_1:is(.sticky1) {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #00071A;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slideInDown 0.5s;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    transform: translateY(-400px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.sidemenu-area {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.sidemenu-area::-webkit-scrollbar {
  width: 0px;
  background-color: transparent;
  opacity: 0;
}
.sidemenu-area::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 5px;
  opacity: 0;
}
.sidemenu-area::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
  opacity: 0;
}
.sidemenu-area::-webkit-scrollbar-thumb:hover {
  background: var(--clr-theme-secondary);
}

.sidemenu-area {
  position: relative;
  overflow-Y: scroll;
  overflow-x: hidden;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100vh;
  position: fixed;
  z-index: 333;
  top: 0;
  padding: 50px 50px;
  background-color: #fff;
  left: -500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.sidemenu-area:is(.active) {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.sidemenu-close-btn {
  width: 50px;
  height: 40px;
  border: 1px solid #FD50B9;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #FD50B9;
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  position: absolute;
  right: 1px;
  top: 70px;
  cursor: pointer;
}
.sidemenu-close-btn:hover {
  background-color: #FD50B9;
  color: #fff;
}
.sidemenu-profile {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 25px;
  position: relative;
  left: -20%;
  -webkit-transition: all 600ms linear 0s;
  -moz-transition: all 600ms linear 0s;
  -ms-transition: all 600ms linear 0s;
  -o-transition: all 600ms linear 0s;
  transition: all 600ms linear 0s;
}
.sidemenu-profile:is(.is_show) {
  left: 0;
}
.sidemenu-profile .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #FD50B9;
  overflow: hidden;
  margin-bottom: 19px;
}
.sidemenu-profile .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidemenu-profile .name {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1px;
  color: #00071A;
}
.sidemenu-social-link {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 30px;
  position: relative;
  left: -60%;
  -webkit-transition: all 600ms linear 0s;
  -moz-transition: all 600ms linear 0s;
  -ms-transition: all 600ms linear 0s;
  -o-transition: all 600ms linear 0s;
  transition: all 600ms linear 0s;
  transition-delay: 500ms;
}
.sidemenu-social-link:is(.is_show) {
  left: 0;
}
.sidemenu-social-link .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: var(--clr-body-heading);
  margin-bottom: 17px;
}
.sidemenu-social-link ul {
  list-style: none;
}
.sidemenu-social-link ul li {
  display: inline-block;
}
.sidemenu-social-link ul li:not(:first-child) {
  margin-left: 12px;
}
.sidemenu-social-link ul li a {
  display: inline-block;
  background-color: var(--clr-common-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 19px;
  color: var(--clr-body-heading);
  text-align: center;
  border-radius: 50%;
}
.sidemenu-social-link ul li a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.sidemenu-contact-info {
  position: relative;
  left: -80%;
  -webkit-transition: all 600ms linear 0s;
  -moz-transition: all 600ms linear 0s;
  -ms-transition: all 600ms linear 0s;
  -o-transition: all 600ms linear 0s;
  transition: all 600ms linear 0s;
  transition-delay: 600ms;
}
.sidemenu-contact-info:is(.is_show) {
  left: 0;
}
.sidemenu-contact-info > .title {
  color: var(--clr-body-heading);
  font-weight: 700;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 26px;
}
.sidemenu-contact-info .info-box {
  margin-bottom: 16px;
}
.sidemenu-contact-info .info-box .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--clr-body-heading);
  margin-bottom: 4px;
}
.sidemenu-contact-info .info-box .title i {
  margin-right: 10px;
}
.sidemenu-contact-info .info-box p {
  color: var(--clr-body-text-4);
  margin-bottom: 0;
}

.sidebar-mobile-menu-wrap {
  position: relative;
  left: -40%;
  -webkit-transition: all 600ms linear 0s;
  -moz-transition: all 600ms linear 0s;
  -ms-transition: all 600ms linear 0s;
  -o-transition: all 600ms linear 0s;
  transition: all 600ms linear 0s;
  transition-delay: 400ms;
}
.sidebar-mobile-menu-wrap:is(.is_show) {
  left: 0;
}
.sidebar-mobile-menu-wrap .mobile_menu {
  overflow: hidden;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav {
  background: transparent;
  margin-top: 0;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li {
  padding: 0;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li a {
  font-weight: 600;
  padding: 15px 0;
  width: 100%;
  font-size: 16px;
  text-transform: capitalize;
  border-top: none;
  color: #00071A;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li a:hover {
  color: #FD50B9;
  background-color: transparent;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li:is(.has-dropdown-menu) a::after {
  display: none;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .mean-expand {
  border: none !important;
  background: transparent;
  border-style: none;
  width: 40px;
  height: 53px;
  line-height: 53px;
  padding: 0;
  margin: 0;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .mean-expand:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--clr-theme-primary);
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .mean-expand:is(.mean-clicked) {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--clr-theme-primary);
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .submenu {
  border-top: none;
  background-color: transparent;
  position: unset;
  width: 100%;
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform-origin: top;
  transform: scaleY(1);
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .submenu li a {
  padding: 5px 0;
  border: none;
  padding-left: 35px;
  font-size: 16px;
  color: #00071A;
}
.sidebar-mobile-menu-wrap .mobile_menu .mean-bar .mean-nav ul li .submenu li a:hover {
  color: #FD50B9;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.8);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
  transform: scaleX(0);
  transform-origin: left;
}
.offcanvas-overlay:is(.overlay_open) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.offcanvas-overlay:is(.visible) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.offcanvas-overlay:is(.active) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

.txr-hero-area {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: gray;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.txr-hero-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00071A;
  opacity: 0.8;
}
.txr-hero-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.txr-hero-wrap .hero-greditent-bg-1 {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 221px;
}
.txr-hero-content .hero-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.11;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-hero-content .hero-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-hero-content .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .txr-hero-content .hero-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-hero-content .hero-title {
    font-size: 50px;
  }
}
.txr-hero-content .hero-btn-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .txr-hero-content .hero-btn-wrap {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-hero-content .hero-btn-wrap {
    flex-wrap: nowrap;
  }
}

.txr-hero-bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.txr-hero-bg-content {
  height: 100%;
}
.txr-hero-bg-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.txr-hero-bg-item-wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  height: 100%;
}
.txr-hero-bg-item .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 290px;
  flex: 0 0 auto;
}
.txr-hero-bg-item .img-wrap img {
  width: 100%;
}

.txr-hero-bg-item.item-1 {
  animation: slideup 20s linear infinite;
  justify-content: flex-end;
}

.txr-hero-bg-item.item-2 {
  animation: slidedown 20s linear infinite;
  justify-content: flex-start;
}

.txr-hero-bg-item.item-3 {
  animation: slideup 20s linear infinite;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .txr-hero-bg-item.item-3 {
    display: none;
  }
}

.txr-hero-bg-item.item-4 {
  animation: slidedown 20s linear infinite;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-hero-bg-item.item-4 {
    display: none;
  }
}

.txr-hero-bg-item.item-5 {
  animation: slideup 20s linear infinite;
  justify-content: flex-end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-hero-bg-item.item-5 {
    display: none;
  }
}

.txr-menu-btn-1 {
  position: relative;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: #00071A;
  color: #fff;
  outline: none;
  border: none;
  font-size: 25px;
  overflow: hidden;
}
.txr-menu-btn-1 i {
  position: relative;
  z-index: 1;
}
.txr-menu-btn-1::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  border-radius: 50%;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  left: 0;
  right: auto;
  top: 0%;
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-menu-btn-1 {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
}
.txr-menu-btn-1:hover::before {
  left: auto;
  right: 0;
  width: 100%;
}

.txr-btn-1 {
  position: relative;
  display: inline-block;
  font-family: "Recoleta Alt";
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 100px;
  background: transparent;
  padding: 21px 37px;
  box-shadow: 0 0 0px 0px #FD50B9 inset, 0 0 0 0 #FD50B9;
  transition: all 500ms ease-in-out;
}
.txr-btn-1::after {
  border-radius: 100px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  top: 0;
  left: 0;
  z-index: -1;
}
.txr-btn-1:hover {
  color: #fff;
  box-shadow: 0 0 10px 0 #FD50B9 inset, 0 0 10px 4px #FD50B9;
  background: #fff;
}
.txr-btn-1:hover .btn-1-text {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txr-btn-2 {
  position: relative;
  display: inline-block;
  font-family: "Recoleta Alt";
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 100px;
  background: transparent;
  padding: 21px 37px;
  box-shadow: 0 0 0px 0px #FD50B9 inset, 0 0 0 0 #FD50B9;
  transition: all 500ms ease-in-out;
  border: 1px solid #fff;
}
.txr-btn-2 ::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  z-index: -1;
}
.txr-btn-2:hover {
  color: #fff;
  box-shadow: 0 0 10px 0 #FD50B9 inset, 0 0 10px 4px #FD50B9;
  border-color: #FD50B9;
  background-color: #fff;
}
.txr-btn-2:hover .btn-2-text {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txr-btn-3 {
  position: relative;
  display: inline-block;
  font-family: "Recoleta Alt";
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 100px;
  background: transparent;
  padding: 21px 37px;
  box-shadow: 0 0 0px 0px #FD50B9 inset, 0 0 0 0 #FD50B9;
  transition: all 500ms ease-in-out;
}
.txr-btn-3 .btn-3-text i {
  transform: rotate(-45deg);
  transition: all 500ms ease-in-out;
}
.txr-btn-3::after {
  border-radius: 100px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  top: 0;
  left: 0;
  z-index: -1;
}
.txr-btn-3:hover {
  color: #fff;
  box-shadow: 0 0 10px 0 #FD50B9 inset, 0 0 10px 4px #FD50B9;
  background: #fff;
}
.txr-btn-3:hover .btn-3-text {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-btn-3:hover .btn-3-text i {
  transform: rotate(0deg);
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txr-btn-4 {
  position: relative;
  display: inline-block;
  font-family: "Recoleta Alt";
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 100px;
  background: transparent;
  padding: 21px 37px;
  box-shadow: 0 0 0px 0px #FD50B9 inset, 0 0 0 0 #FD50B9;
  transition: all 500ms ease-in-out;
  border: 1px solid #FD50B9;
}
.txr-btn-4 ::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  z-index: -1;
}
.txr-btn-4 .btn-4-text {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-btn-4:hover {
  color: #fff;
  box-shadow: 0 0 10px 0 #FD50B9 inset, 0 0 10px 4px #FD50B9;
  border-color: #FD50B9;
  background-color: #fff;
}

.txr-footer-btn {
  position: relative;
  display: inline-block;
  font-family: "Recoleta Alt";
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 100px;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  padding: 21px 40px;
  overflow: hidden;
  animation: footer-btn 1s linear infinite;
}
.txr-footer-btn .f-b-icon {
  margin-right: 6px;
  margin-top: -5px;
}
.txr-footer-btn::after {
  position: absolute;
  content: "";
  width: 12%;
  height: 114%;
  background-color: #fff;
  left: -20%;
  top: -12px;
  transform: rotate(10deg);
  transition: 500ms all ease;
}
.txr-footer-btn::before {
  position: absolute;
  content: "";
  width: 12%;
  height: 114%;
  background-color: #fff;
  right: -20%;
  top: 0;
  transform: rotate(10deg);
  transition: 500ms all ease;
}
.txr-footer-btn:hover {
  color: #fff;
  animation: footer-btn 10s linear infinite;
}
.txr-footer-btn:hover::after {
  left: 0%;
}
.txr-footer-btn:hover::before {
  right: 0%;
}

.redius-btn-1 {
  font-size: 30px;
  width: 148px;
  height: 148px;
  line-height: 148px;
  color: #FD50B9;
  background-color: transparent;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  outline: 0;
  border: 1px solid #FD50B9;
  cursor: pointer;
}
.redius-btn-1 .icon {
  position: relative;
  z-index: 2;
}
.redius-btn-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  border-radius: 50%;
  animation: none;
  opacity: 1;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}
.redius-btn-1::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 30px 60px rgba(43, 0, 29, 0.1411764706);
  animation: videoBtn 1.75s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 1;
}
.redius-btn-1:hover {
  color: #FD50B9;
}
.redius-btn-1:hover::after {
  background: linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%);
  backdrop-filter: blur(10px);
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.txr-demo-area {
  background: #fff;
  margin-top: 100vh;
}
.txr-demo-section-title {
  position: relative;
}
.txr-demo-section-title .subtitle {
  font-size: 18px;
  font-weight: 600;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 35px;
}
.txr-demo-section-title .subtitle .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #FF3838;
  border-radius: 50%;
  border: 3px solid #fff;
  outline: 2px solid #FF3838;
  margin-right: 10px;
}
.txr-demo-section-title .title {
  margin: auto;
  font-size: 52px;
  line-height: 1.19;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 1090px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-demo-section-title .title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-demo-section-title .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-demo-section-title .title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .txr-demo-section-title .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-demo-section-title .title {
    font-size: 32px;
  }
}
.txr-demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-demo-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .txr-demo-wrap {
    grid-template-columns: 1fr;
  }
}
.txr-demo-item {
  width: 100%;
  height: auto;
  background: #FFF;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.txr-demo-item .demo-img {
  position: relative;
  width: 100%;
  height: 740px;
  overflow: hidden;
  background-position: top;
  background-size: cover;
  -webkit-transition: all 15s linear 0s;
  -moz-transition: all 15s linear 0s;
  -ms-transition: all 15s linear 0s;
  -o-transition: all 15s linear 0s;
  transition: all 15s linear 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-demo-item .demo-img {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .txr-demo-item .demo-img {
    height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-demo-item .demo-img {
    height: 700px;
  }
}
.txr-demo-item .demo-img::after {
  position: absolute;
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.txr-demo-item .demo-img img {
  width: 100%;
}
.txr-demo-item .demo-img .demo-coming-wrap {
  position: absolute;
  left: 0;
  top: 0;
  background: lch(0 0 0/0.9);
  color: red;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.txr-demo-item .demo-img .demo-coming-wrap .text {
  font-size: 30px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-demo-item .demo-img .demo-btn-position {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.txr-demo-item .demo-img .demo-btn-position .view-demo-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%);
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  text-align: center;
  line-height: 142px;
  font-size: 18px;
}
.txr-demo-item .demo-img .demo-btn-position .view-demo-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  background: transparent;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
}
.txr-demo-item .demo-img .demo-btn-position .view-demo-btn:hover::after {
  width: 90%;
  height: 90%;
  opacity: 1;
}
.txr-demo-item .demo-img .demo-btn-wrap {
  position: relative;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  width: 142px;
  height: 142px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.txr-demo-item .demo-img .demo-btn-wrap a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  padding: 14px 0;
}
.txr-demo-item .demo-img .demo-btn-wrap a .text {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.txr-demo-item .demo-img .demo-btn-wrap .single-page .btn-bg {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(180deg);
  opacity: 0;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.txr-demo-item .demo-img .demo-btn-wrap .single-page:hover .btn-bg {
  transform: rotate(0deg);
  opacity: 1;
}
.txr-demo-item .demo-img .demo-btn-wrap .multi-page .btn-bg-2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(0deg);
  opacity: 0;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.txr-demo-item .demo-img .demo-btn-wrap .multi-page:hover .btn-bg-2 {
  transform: rotate(-180deg);
  opacity: 1;
}
.txr-demo-item .demo-img .demo-name {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 60px 60px 0px 0px;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  font-size: 22px;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 19px 10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .txr-demo-item .demo-img .demo-name {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-demo-item .demo-img .demo-name {
    font-size: 22px;
  }
}
.txr-demo-item:hover {
  box-shadow: none;
  transform: translateY(-10px);
}
.txr-demo-item:hover .demo-img {
  background-position: bottom;
}
.txr-demo-item:hover .demo-img::after {
  opacity: 0.4;
  visibility: visible;
}
.txr-demo-item:hover .demo-img .demo-btn-position {
  top: 50%;
  opacity: 1;
}

.txr-counter {
  position: absolute;
  left: 50%;
  top: -134px;
  z-index: -1;
  transform: translateX(-50%);
  opacity: 0.1;
}
@media (max-width: 767px) {
  .txr-counter {
    top: -65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-counter {
    top: -65px;
  }
}
.txr-counter .title {
  font-size: 450px;
  font-weight: 900;
  line-height: 1;
  color: #FD50B9;
  overflow: hidden;
  margin-bottom: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .txr-counter .title {
    font-size: 330px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .txr-counter .title {
    font-size: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-counter .title {
    font-size: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-counter .title {
    font-size: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-counter .title {
    font-size: 180px;
  }
}
@media (max-width: 767px) {
  .txr-counter .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-counter .title {
    font-size: 100px;
  }
}
.txr-counter .title .odometer.odometer-auto-theme {
  font-family: unset;
  line-height: 1;
}

.txr-theme-plugin-area {
  animation: p-bg-img 20s linear infinite;
  background-color: #fff;
}
.txr-theme-plugin-bg {
  position: relative;
  border-radius: 0px 0px 150px 150px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.txr-theme-plugin-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  border-radius: 0px 0px 150px 150px;
}
.txr-theme-plugin-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-theme-plugin-wrap {
    padding-left: 50px;
    padding-right: 50px;
    gap: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-theme-plugin-wrap {
    padding-left: 50px;
    padding-right: 50px;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .txr-theme-plugin-wrap {
    padding-left: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.txr-theme-plugin-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.txr-theme-plugin-item .logo {
  flex: 0 0 auto;
}
.txr-theme-plugin-item .plugin-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.66;
  margin-bottom: 0;
  color: #00071A;
}
@media (max-width: 767px) {
  .txr-theme-plugin-item .plugin-name {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-theme-plugin-item .plugin-name {
    font-size: 24px;
  }
}

.txr-theme-plugin-screenshot-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 1;
}
.txr-theme-plugin-screenshot-wrap .plugin-icon-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  animation: p-i-2 5s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-2 {
    left: 15px;
  }
}
@media (max-width: 767px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-2 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-2 {
    left: 15px;
    display: inline-block;
  }
}
.txr-theme-plugin-screenshot-wrap .plugin-icon-1 {
  position: absolute;
  right: -80px;
  top: 145px;
  animation: p-i-2 5s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-1 {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-1 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-theme-plugin-screenshot-wrap .plugin-icon-1 {
    right: 15px;
    display: inline-block;
  }
}
.txr-theme-plugin-screenshot-frm {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.txr-theme-plugin-screenshot-frm .plugin-img-1 {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: p-img-1 7s linear infinite;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-theme-plugin-screenshot-frm .plugin-img-1 {
    width: 80%;
  }
}
.txr-theme-plugin-screenshot-frm .plugin-img-2 {
  position: absolute;
  left: 49%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: -2;
  animation: p-img-2 7s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-theme-plugin-screenshot-frm .plugin-img-2 {
    width: 80%;
  }
}
.txr-theme-plugin-screenshot-frm .plugin-img-3 {
  position: absolute;
  left: 49%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: -3;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-theme-plugin-screenshot-frm .plugin-img-3 {
    width: 80%;
  }
}

.txr-feature-area {
  background: #00071A;
  position: relative;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.txr-feature-area .bg-text {
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  left: 0%;
  top: 5%;
  writing-mode: vertical-lr;
  margin: 0;
  opacity: 0.04;
  animation: f-bg-text 10s linear infinite;
}
@media (max-width: 767px) {
  .txr-feature-section-title .section-title-1 br {
    display: none;
  }
}
.txr-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-feature-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .txr-feature-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-feature-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.txr-feature-item {
  width: 100%;
  border-radius: 12px;
  background: #0A1023;
  box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.15) inset;
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 25px;
  padding-top: 45px;
}
.txr-feature-item .feature-name {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-feature-item .feature-name {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-feature-item .feature-name {
    font-size: 20px;
  }
}
.txr-feature-item .icon {
  margin-bottom: 40px;
}

.txr-tutorial-area {
  position: relative;
  background-color: #fff;
}
.txr-tutorial-area .bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
}
.txr-tutorial-area .bg-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.txr-tutorial-area .section-btn-wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .txr-tutorial-area .section-btn-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .txr-tutorial-area .section-btn-wrap .txr-btn-1 {
    padding: 21px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-tutorial-area .section-btn-wrap .txr-btn-1 {
    padding: 19px 37px;
  }
}
@media (max-width: 767px) {
  .txr-tutorial-area .section-btn-wrap .txr-btn-border-2 {
    padding: 21px 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-tutorial-area .section-btn-wrap .txr-btn-border-2 {
    padding: 19px 37px;
  }
}
.txr-tutorial-section-title .section-title-1 {
  color: #00071A;
}
@media (max-width: 767px) {
  .txr-tutorial-section-title .section-title-1 br {
    display: none;
  }
}
.txr-tutorial-img {
  position: relative;
  width: 100%;
  height: 710px;
  background-size: cover;
  background-position: top;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
}
@media (max-width: 767px) {
  .txr-tutorial-img {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-tutorial-img {
    height: 600px;
  }
}
.txr-tutorial-img::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 400ms linear 0s;
  -moz-transition: all 400ms linear 0s;
  -ms-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.txr-tutorial-img .btn-position {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -ms-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
  z-index: 1;
}
.txr-tutorial-img:hover::after {
  opacity: 0.5;
  visibility: visible;
}
.txr-tutorial-img:hover .btn-position {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.txr-inner-page-area {
  background: #00071A;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.txr-inner-page-area .starlight {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.txr-inner-page-section-title {
  position: relative;
  z-index: 1;
}
.txr-inner-page-section-title .txr-counter {
  top: -123px;
}
@media (max-width: 767px) {
  .txr-inner-page-section-title .txr-counter {
    top: -58px;
  }
}
.txr-inner-page-section-title .txr-counter .title {
  color: #fff;
  font-size: 340px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 320px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 180px;
  }
}
@media (max-width: 767px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-inner-page-section-title .txr-counter .title {
    font-size: 100px;
  }
}
.txr-inner-page-overflow {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.txr-inner-page-wrap-1 {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;
  animation: inner-page-slider-left 40s linear infinite;
}
.txr-inner-page-wrap-2 {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  animation: inner-page-slider-right 40s linear infinite;
}
.txr-inner-page-item {
  flex: 0 0 auto;
  width: 450px;
  height: 310px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 3s linear 0s;
  -moz-transition: all 3s linear 0s;
  -ms-transition: all 3s linear 0s;
  -o-transition: all 3s linear 0s;
  transition: all 3s linear 0s;
}

.txr-responsive-area {
  position: relative;
  background-size: cover;
  animation: r-bg-img 15s linear infinite;
}
.txr-responsive-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 250px;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.txr-responsive-section-title .subtitle-wrap {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
}
.txr-responsive-section-title .subtitle-wrap .subtitle-1 {
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
}
@media (max-width: 767px) {
  .txr-responsive-section-title .section-title-1 br {
    display: none;
  }
}
.txr-responsive-feature {
  display: flex;
  justify-content: center;
  gap: 35px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-responsive-feature {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .txr-responsive-feature {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: left;
  }
}
.txr-responsive-feature li {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .txr-responsive-feature li {
    font-size: 18px;
  }
}
.txr-responsive-feature li .icon {
  margin-right: 10px;
}
.txr-responsive-img-wrap .img {
  width: 100%;
}

.txr-testimonial-area {
  position: relative;
  background-color: #fff;
}
.txr-testimonial-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 360px;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.txr-testimonial-title-wrap {
  display: grid;
  grid-template-columns: 1fr 355px;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-testimonial-title-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .txr-testimonial-title-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.txr-testimonial-title-wrap .testimonial-pera {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #4D515F;
  margin-bottom: 0;
}
.txr-testimonial-title .section-title-1 {
  color: #00071A;
}
.txr-testimonial-wrap {
  display: flex;
  width: 100%;
  gap: 20px;
  overflow: hidden;
  height: 1020px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-testimonial-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-testimonial-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .txr-testimonial-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-testimonial-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.txr-testimonial-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.txr-testimonial-content:is(.t-content-4) {
  justify-content: flex-end;
  animation: slideup 20s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-testimonial-content:is(.t-content-4) {
    display: none;
  }
}
.txr-testimonial-content:is(.t-content-3) {
  justify-content: flex-start;
  animation: slidedown 20s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-testimonial-content:is(.t-content-3) {
    display: none;
  }
}
.txr-testimonial-content:is(.t-content-2) {
  animation: slideup 20s linear infinite;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .txr-testimonial-content:is(.t-content-2) {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-testimonial-content:is(.t-content-2) {
    display: inline-block;
  }
}
.txr-testimonial-content:is(.t-content-1) {
  animation: slidedown 20s linear infinite;
  justify-content: flex-start;
}
.txr-testimonial-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 5px 30px 0px rgba(0, 7, 26, 0.08);
  padding: 25px;
  margin-bottom: 20px;
}
.txr-testimonial-item .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.txr-testimonial-item .header .icon {
  flex: 0 0 auto;
}
.txr-testimonial-item .header .name {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #00071A;
  text-transform: capitalize;
  line-height: 1;
}
.txr-testimonial-item .header .name span {
  display: inline-block;
  font-weight: 400;
  color: #4D515F;
}
.txr-testimonial-item .text {
  font-size: 20px;
  line-height: 160%;
  color: #00071A;
  margin-bottom: 15px;
}
.txr-testimonial-item .ratting-wrap i {
  font-size: 16px;
  color: #FFB820;
}

.txr-support-area {
  background-color: #fff;
  position: relative;
}
.txr-support-wrap {
  width: 100%;
  border-radius: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: s-bg-img 15s linear infinite;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-support-wrap {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .txr-support-wrap {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }
}
.txr-support-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #000;
  opacity: 0.3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-support-wrap::after {
    border-radius: 10px;
  }
}
.txr-support-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 95px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-support-item {
    padding: 95px 15px;
  }
}
@media (max-width: 767px) {
  .txr-support-item {
    padding: 40px 15px;
  }
}
.txr-support-item:not(:last-child) {
  border-right: 1px solid #fff;
}
.txr-support-item .s-logo {
  margin-bottom: 30px;
}
.txr-support-item .s-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-support-item .s-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-support-item .s-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .txr-support-item .s-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-support-item .s-title {
    font-size: 28px;
  }
}
.txr-support-item .s-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 0;
}

.txr-faq-area {
  position: relative;
  background-color: #fff;
}
.txr-faq-title .section-title-1 {
  color: #00071A;
}

.txr-faq-item-wrap .accordion-item {
  position: relative;
  background: transparent;
  border-radius: 10px;
  border: 1px dashed rgba(21, 32, 40, 0.5);
  margin-bottom: 15px;
}
.txr-faq-item-wrap .accordion-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  border-radius: 10px;
  border: 1px dashed var(--Linear, #5A56F0);
  background: linear-gradient(90deg, rgba(90, 86, 240, 0.08) -1.33%, rgba(253, 80, 185, 0.08) 100%);
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  opacity: 0;
  visibility: hidden;
}
.txr-faq-item-wrap .accordion-item:is(.faq_bg) {
  border-color: transparent;
}
.txr-faq-item-wrap .accordion-item:is(.faq_bg)::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.txr-faq-item-wrap .accordion-item:is(.faq_bg) .accordion-header .accordion-button .text {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txr-faq-item-wrap .accordion-item:is(.faq_bg) .line {
  background: var(--linear, linear-gradient(90deg, #E02626 0%, #F0831F 100%));
}
.txr-faq-item-wrap .accordion-item .line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--919191, #919191);
}
.txr-faq-item-wrap .accordion-item .accordion-header {
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.txr-faq-item-wrap .accordion-item .accordion-header .accordion-button {
  padding-right: 20px;
  padding-left: 20px;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  outline: none;
  box-shadow: none;
  -webkit-transition: all 300ms linear 0s;
  -moz-transition: all 300ms linear 0s;
  -ms-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}
.txr-faq-item-wrap .accordion-item .accordion-header .accordion-button .text {
  font-size: 20px;
  font-weight: 500;
  color: #00071A;
  line-height: 1.5;
}
/* Center FAQ icon within its gradient circle */
.txr-faq-item-wrap .accordion-header .accordion-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; /* optional: slightly larger for breathing room */
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5A56F0, #FD50B9);
    font-size: 11px;
    color: #fff;
    line-height: 1; /* prevents vertical drift */
}

.txr-faq-item-wrap .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.txr-faq-item-wrap .accordion-item .accordion-body {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.txr-faq-item-wrap .accordion-item .accordion-body .faq-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #00071A;
  margin-bottom: 0;
  opacity: 0.8;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.txr-text-slide-area {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 100vh;
}
@media (max-width: 767px) {
  .txr-text-slide-area {
    margin-bottom: 0;
  }
}
.txr-text-slide-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  animation: marquee-animation 30s linear infinite;
}
.txr-text-slide-item {
  font-size: 180px;
  margin-bottom: 0;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .txr-text-slide-item {
    font-size: 140px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .txr-text-slide-item {
    font-size: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-text-slide-item {
    font-size: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-text-slide-item {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-text-slide-item {
    font-size: 60px;
  }
}
.txr-text-slide-item:is(.style-1) {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-text-slide-item:is(.style-2) {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FD50B9;
  color: transparent;
}


.txr-footer-area {
  background-color: #00071A;
  background-repeat: no-repeat;
  background-size: cover;
  animation: p-bg-img 20s linear infinite;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.txr-footer-area:is(.active) {
  z-index: 2;
}
@media (max-width: 767px) {
  .txr-footer-area {
    display: block;
    height: 100%;
    position: relative;
  }
}
.txr-footer-top-content .footer-logo {
  margin-bottom: 30px;
}
.txr-footer-top-content .footer-title {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txr-footer-top-content .footer-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .txr-footer-top-content .footer-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txr-footer-top-content .footer-title {
    font-size: 40px;
  }
}
.txr-footer-top-content .footer-title .p-color {
  background: linear-gradient(90deg, #5A56F0 57.44%, #FD50B9 95.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-footer-top-content .text {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 43px;
}
.txr-footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.txr-footer-bottom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.txr-footer-bottom-wrap .author-name {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
  line-height: 40px;
  opacity: 0.8;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .author-name {
    text-align: center;
  }
}
.txr-footer-bottom-wrap .author-name i {
  color: #C62828;
}
.txr-footer-bottom-wrap .author-name a {
  color: #C62828;
}
.txr-footer-bottom-wrap .author-name a:hover {
  color: #fff;
}
.txr-footer-bottom-wrap .f-b-social-link {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .f-b-social-link {
    text-align: center;
  }
}
.txr-footer-bottom-wrap .f-b-social-link li {
  list-style: none;
  display: inline-block;
}
.txr-footer-bottom-wrap .f-b-social-link li a {
  position: relative;
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  display: inline-block;
  margin: 0 5px;
}
.txr-footer-bottom-wrap .f-b-social-link li a i {
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 500ms;
  position: relative;
  z-index: 1;
}
.txr-footer-bottom-wrap .f-b-social-link li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--Linear, linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%));
  opacity: 0.2;
  left: 0;
  top: 0;
  border-radius: 50%;
  transition: 500ms;
}
.txr-footer-bottom-wrap .f-b-social-link li a:hover i {
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
}
.txr-footer-bottom-wrap .f-b-social-link li a:hover::after {
  opacity: 1;
}
.txr-footer-bottom-wrap .copyright-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: #fff;
  opacity: 0.8;
  display: inline-block;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .copyright-text {
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
.odometer.odometer-animating-up, .odometer.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition-duration: 30s !important;
    -moz-transition-duration: 30s !important;
    -ms-transition-duration: 30s !important;
    -o-transition-duration: 30s !important;
    transition-duration: 30s !important
}

/* 1) Reset the item wrapper */
.txr-faq-item-wrap .accordion-item {
    background: transparent;
    border: 1px solid var(--border, rgba(255,255,255,.2));
    border-radius: 14px;
    overflow: hidden; /* keeps corners clean */
    margin-bottom: 14px;
}

/* 2) Header button */
.txr-faq-item-wrap .accordion-button {
    background: var(--card, rgba(255,255,255,.04));
    color: var(--text, #eaeaea);
    box-shadow: none !important;
    border: 0;
    border-radius: 14px; /* closed state corners */
}

    .txr-faq-item-wrap .accordion-button:focus {
        box-shadow: none;
    }

    /* Open header style */
    .txr-faq-item-wrap .accordion-button:not(.collapsed) {
        background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
        color: var(--accent, #c592ff);
        border-bottom: 1px solid var(--border, rgba(255,255,255,.14));
        border-bottom-left-radius: 0; /* square bottom when open */
        border-bottom-right-radius: 0;
    }

/* 3) Content (the black box you’re seeing) */
.txr-faq-item-wrap .accordion-collapse {
    border: 0;
    background: transparent;
}

.txr-faq-item-wrap .accordion-body {
    background: var(--panel, rgba(255,255,255,.03)); /* was turning full black */
    color: var(--text, #ddd);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* 4) Kill any dark overlay from the template */
.txr-faq-item-wrap .accordion-item.faq_bg,
.txr-faq-item-wrap .faq_bg .accordion-body {
    background: transparent !important; /* remove black gradient/overlay */
}

/* 5) Plus icon color tweak (optional) */
.txr-faq-item-wrap .accordion-button .icon i {
    color: var(--accent, #c592ff);
}

/* ===== FAQ FIX (scoped to this section) ===== */
#documentation .txr-faq-item-wrap .accordion-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    overflow: hidden; /* keeps corners clean */
    background: rgba(255,255,255,.02);
    position: relative;

}

    /* kill template's extra left bar / separators */
    #documentation .txr-faq-item-wrap .accordion-item::before,
    #documentation .txr-faq-item-wrap .accordion-item::after {
        display: none !important;
    }

    /* some demos added .faq_bg which paints a dark overlay—remove it */
    #documentation .txr-faq-item-wrap .accordion-item.faq_bg {
        background: rgba(255,255,255,.02) !important;
    }

/* header button */
#documentation .txr-faq-item-wrap .accordion-button {
    background: transparent;
    color: #eae6ff; /* adjust to your palette */
    padding: 16px 18px;
    border: 0;
    border-radius: 0; /* radius handled by item wrapper */
    box-shadow: none !important;
}

    /* open header: subtle tint + divider between header/body */
    #documentation .txr-faq-item-wrap .accordion-button:not(.collapsed) {
        background: linear-gradient(180deg, rgba(197,146,255,.12), rgba(197,146,255,.05));
        color: #c592ff;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

/* body */
#documentation .txr-faq-item-wrap .accordion-body {
    background: transparent; /* remove black box */
    color: #dcd7f7;
    padding: 16px 18px 18px;
}

/* remove any borders/lines injected by theme between items/columns */
#documentation .txr-faq-item-wrap .accordion-collapse,
#documentation .txr-faq-item-wrap .accordion-item + .accordion-item {
    border: 0 !important;
}

/* icon color (optional) */
#documentation .txr-faq-item-wrap .accordion-button .icon i {
    color: #c592ff;
}

/* when open, keep rounded corners only on the outer box */
#documentation .txr-faq-item-wrap .accordion-collapse.show {
    overflow: hidden;
}
/* === Contact / Quote Form === */
.txr-contact-area {
    position: relative;
    background-size: cover;
    background-position: center;
}

.txr-contact-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.txr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.txr-field {
    display: flex;
    flex-direction: column;
}

.txr-field-full {
    grid-column: 1 / -1;
}

.txr-field label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--clr-body-heading);
}

.txr-field input,
.txr-field select,
.txr-field textarea {
    appearance: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.txr-field textarea {
    resize: vertical;
}

    .txr-field input:focus,
    .txr-field select:focus,
    .txr-field textarea:focus {
        outline: none;
        border-color: #5A56F0;
        box-shadow: 0 0 0 3px rgba(90,86,240,0.15);
    }

.txr-check-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--clr-body-text);
}

.txr-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.txr-form-note {
    margin: 0;
    font-size: 14px;
}

/* use your existing gradient button look (txr-btn-1) and ensure icon aligns */
.txr-btn-1 .btn-1-text i {
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .txr-grid {
        grid-template-columns: 1fr;
    }

    .txr-contact-card {
        padding: 28px;
    }
}
/* Override label color to gradient blue-purple */
.txr-contact-card label {
    background: linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}
/* Fix checkbox click & alignment */
.txr-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .txr-check-label input[type="checkbox"] {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 4px solid #5A56F0;
        border-radius: 10px;
        position: relative;
    }

        .txr-check-label input[type="checkbox"]:checked::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 5px;
            width: 20px;
            height: 10px;
            border: solid #FD50B9;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

/* === Gradient Checkbox with Draw + Bold Tick Animation (No Background Fill) === */
.txr-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(90deg, #5A56F0 -1.33%, #FD50B9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    /* Checkbox box */
    .txr-check-label input[type="checkbox"] {
        appearance: none;
        width: 22px;
        height: 22px;
        border: 2px solid #5A56F0;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: transparent;
    }

        /* Tick mark (initially hidden) */
        .txr-check-label input[type="checkbox"]::after {
            content: "";
            position: absolute;
            top: 2px; /* fine-tuned vertical alignment */
            left: 2px; /* fine-tuned horizontal alignment */
            width: 18px; /* wider */
            height: 12px; /* taller */
            border: solid;
            border-image: linear-gradient(90deg, #5A56F0, #FD50B9) 1;
            border-width: 0 10px 10px 0; /* <-- Bold stroke */
            transform: scale(0) rotate(45deg);
            opacity: 0;
            transition: all 0.4s ease;
        }

        /* Animate tick + pulse on check */
        .txr-check-label input[type="checkbox"]:checked {
            animation: txrZoomPulse 0.45s ease;
        }

            /* Draw the checkmark */
            .txr-check-label input[type="checkbox"]:checked::after {
                opacity: 1;
                transform: scale(1) rotate(45deg);
                animation: txrCheckDraw 0.35s ease forwards;
            }

/* Keyframes for tick drawing */
@keyframes txrCheckDraw {
    0% {
        opacity: 0;
        transform: scale(0) rotate(45deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.2) rotate(45deg);
    }

    100% {
        transform: scale(1) rotate(45deg);
    }
}

/* Keyframes for pulse pop */
@keyframes txrZoomPulse {
    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(90, 86, 240, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: none;
    }
}
/* Toggle FAQ +/- using Bootstrap's .collapsed state */
.accordion-button .icon {
    position: relative;
    display: inline-grid;
    place-items: center;
}

    /* default: show +, hide - */
    .accordion-button .icon .fa-minus {
        display: none;
    }

    .accordion-button .icon .fa-plus {
        display: inline-block;
    }

/* expanded: hide +, show -  */
.accordion-button:not(.collapsed) .icon .fa-plus {
    display: none;
}

.accordion-button:not(.collapsed) .icon .fa-minus {
    display: inline-block;
}
/* Kill template's injected Pro pseudo-icon on FAQ buttons */
.txr-faq-item-wrap .accordion-header .accordion-button .icon::before,
.txr-faq-item-wrap .accordion-header .accordion-button .icon::after {
    content: none !important;
    font-family: inherit !important;
}

/* Center the real icons in the circle */
.txr-faq-item-wrap .accordion-header .accordion-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(90deg,#5A56F0,#FD50B9);
    font-size: 11px;
    color: #fff;
    line-height: 1;
}

/* Toggle + / − based on Bootstrap's collapsed state */
.accordion-button .icon .fa-minus {
    display: none;
}

.accordion-button .icon .fa-plus {
    display: inline-block;
}

.accordion-button:not(.collapsed) .icon .fa-plus {
    display: none;
}

.accordion-button:not(.collapsed) .icon .fa-minus {
    display: inline-block;
}
/* default (desktop) */
.chooseus-img {
    content: url("../img/Webifyr/3.png");
}

/* for mobile screens */
@media (max-width: 767px) {
    .chooseus-img {
        content: url("../img/Webifyr/mobile-icon.png");
    }
}



/* Fullscreen overlay */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0f; /* dark background, almost black */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    /* optional: subtle glow circle behind the logo */
    #preloader .preloader-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #preloader .preloader-inner::after {
            content: "";
            position: absolute;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient( circle at 50% 50%, rgba(93, 86, 240, 0.3) 0%, rgba(253, 80, 185, 0.05) 70%, rgba(10,10,15,0) 80% );
            filter: blur(12px);
            z-index: 0;
        }

/* the logo itself */
.loader-logo {
    width: 80px; /* adjust size */
    height: auto;
    z-index: 2;
    animation: spin 2s linear infinite;
    image-rendering: auto;
}

/* spin keyframes */
@keyframes spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

/* hidden state */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* MOBILE FIX FOR CHOOSE-US CARDS */

/* Mobile: make the whole card a solid rounded block */
@media (max-width: 768px) {
    .card-chooseus {
        background: #050509;      /* same dark color as the top of the card */
        border-radius: 24px;
        padding-bottom: 24px;     /* room for the bottom text */
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden;         /* keep the rounded corners clean */
    }

    .card-chooseus .chooseus-content {
        padding: 16px 20px 0 20px;  /* comfy padding for text */
        position: static !important;
    }

    .card-chooseus .chooseus-content p {
        white-space: normal !important;
        overflow: visible !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 8px;
    }
}
