@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Montserrat", sans-serif; */


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Geist", sans-serif;
    color: #393939;
    overflow-x: hidden;
}
.how_face h2{
    text-transform:none !important;
}
a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

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

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    font-weight: 400;
    line-height: 29px;
    font-family: "Geist", sans-serif;
    font-size: 19px;
    color: #929292;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 12px;
    color: #ffffff;
    z-index: 1;
    background: #ee422e;
    position: relative;
    font-size: 20px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 12px;
    background-color: #06a9bf;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Geist", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #0DA9BE;
    font-weight: 400;
    margin: 0 0 17px;
    text-transform: capitalize;
    padding: 14px 30px;
    background: #f3fafb;
    width: fit-content;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 {
    font-family: "Geist", sans-serif;
    font-size: 45px;
    line-height: 1.2;
    color: #1d2930;
    font-weight: 600;
    margin: 0 0 20px;
}

h3 {
    font-family: "Geist", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #1D2930;
    font-weight: 500;
    margin: 0 0 28px;
}

h4 {
    font-family: "Geist", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Geist", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #929292;
    font-weight: 400;
    margin: 0 0 20px;
}

h6 {
    font-family: "Geist", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 20px #00000021;
  
}
header{
  transition: 0.3s ease-in-out;
}
header.fixed .logo a img {
    width: 60px;
    transition: 0.5s;
}
header.fixed .menuSec ul li a {
    font-size: 18px;
    transition: 0.5s;
}
.menuSec {
    padding: 20px 0 10px;
    background: transparent;
    z-index: 9;
    position: relative;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
    position: relative;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #1D2930;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #0fa7bf;
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*  banner css end  */


/* +++++++++++++++++++++++++++++++++++++++ HOME +++++++++++++++++++++++++++++++++++++++ */

.header-btn {
    display: flex;
    align-items: center;
    justify-content: right;
}

.logo a img {
    width: 90px;
    transition: 0.5s;
}

img.vec3 {
    position: absolute;
    right: 0;
    z-index: -1;
    top: 0;
}

section.banner {
    padding: 130px 0 110px 0;
}

.reveal-text span {
    display: block;
}

.reveal-text .char {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal-text .char.show {
    opacity: 1;
    transform: translateY(0);
    color: #1d2930;
}

.reveal-text span span.char.show {
    color: #0da9be !important;
}

.banner-text {
    z-index: 9;
    position: relative;
}

.banner-img img {
    position: absolute;
    width: 600px;
    top: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

img.vec2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: auto;
    height: auto;
}

img.vec1 {
    position: absolute;
    bottom: -620px;
    width: 700px;
    z-index: -1;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

h2 span {
    color: #0da9be;
    display: block;
}

.and-app h4 {
    font-size: 24px;
    color: #1D2930;
    font-weight: 700;
}

.banner-img img {}

.and-app {
    margin-top: 70px;
}

.and-app>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-text h1 i {
    font-size: 5px;
    line-height: 1;
}

.and-app>div a img {
    width: 185px;
}

section.powerfull-features {
    background: #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(249, 249, 249, 1) 75%);
    padding: 100px 0;
    position: relative;
}

.top-heading h2 {
    font-size: 45px;
    color: #1D2930;
    text-transform: capitalize;
    text-align: center;
    font-weight: 500;
}

.top-heading h2 span {
    display: block;
}

.top-heading p {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    color: #1D2930;
    font-weight: 500;
}

.top-heading {
    margin-bottom: 30px;
}

.feat-mobile img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.feat-vect4 img {
    position: absolute;
    left: 0;
    top: 230px;
    width: 380px;
}

.feat-vect5 img {
    position: absolute;
    right: 0;
    width: 400px;
    bottom: 100px;
}

.feat-mobile h5 {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
}

.feat-box ul {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    margin: 0;
    box-shadow: 0 0 10px #cccccc2b;
    margin-left: 24%;
    width: 96%;
    z-index: 99;
    position: relative;
}

.feat-box ul li span {
    width: 70px;
    height: 70px;
    background: #ee422e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feat-box h3 {
    font-size: 24px;
    color: #1D2930;
    margin-bottom: 10px;
    font-weight: 600;
}

.feat-box p {
    font-size: 16px;
    color: #929292;
    line-height: 24px;
    margin: 0;
    width: 90%;
    margin: 0;
}
.feat-box ul li span img {
    width: 40px;
}
.feat-box {
    margin-top: -210px;
}

.feat-box.feat-box2 ul {
    margin: 0;
    margin-left: -70px;
}

.feat-box.feat-box2 {
    margin-top: 600px;
}

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


/* Works Sec Css Starts  */

section.face-vitals {
    padding: 100px 0;
    background: #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(242, 250, 252, 1) 75%);
}

.works-rate-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-rate-card-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 4px 0 #00000038;
    padding: 20px;
    position: absolute;
    background-color: #fff;
    gap: 10px;
    z-index: 999;
}

.works-rate-card-head {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.works-rate-card-head-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.works-rate-card-head-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.works-rate-card-mid {
    width: 100%;
}

.works-rate-card-mid-txt {
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 5px;
    width: 100%;
}

.works-rate-card-mid-txt .counter {
    font-size: 52px;
    line-height: 1;
    color: #1D2930;
    font-weight: 500;
    display: block;
}

.works-rate-card-mid-txt span {
    font-size: 54px;
    line-height: 1;
    color: #000;
    font-family: "Geist";
    font-weight: 400;
}

.works-img-ex-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    width: 350px;
    margin: 0 auto;
}


/* .works-img-ex-main::before {
    content: "";
    position: absolute;
    top: 90%;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-top: 5px solid #ee422e;
    width: 80%;
    overflow: hidden;
    z-index: 9;
    animation: move 6s linear infinite alternate;
}

@keyframes move {
    from {
        top: 10%;
    }
    to {
        top: 90%;
    }
} */

.works-img-ex-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgb(255 255 255 / 89%) 100%);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.works-img-ex {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 90%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    /* margin: 5px; */
}


/* .works-img-ex::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: url("../images/works-bord.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    z-index: 9;
} */

.works-img-ex img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.works-rate-left {
    top: -16%;
    left: 6%;
}

.works-rate-card-head-txt h6 {
    margin: 0;
    font-weight: 600;
}

.works-rate-right {
    bottom: -29%;
    right: 0;
}

.works-space {
    margin: 70px 0 0 0;
}

.top-head h2 {
    font-size: 60px;
    color: #1D2930;
    text-transform: capitalize;
}

.top-head h2 span {
    color: #0da9be;
    display: inline;
}

.top-head p {
    font-weight: 500;
}

section.face-vitals .row {
    align-items: center;
}

.top-head p {
    font-weight: 500;
}

.vital-box ul li span {
    width: 90px;
    height: 90px;
    background: #0da9be;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.vital-box ul li {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    margin: 0;
    padding-left: 0;
    transform: translateX(320px);
}

.vital-box ul li h3 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.vital-box ul li p {
    color: #929292;
    width: 80%;
    line-height: 25px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.vital-box ul li:nth-child(2) span {
    background: #ee422e;
}

.works-img-ex.hide-pseudo::before,
.works-img-ex-main.hide-pseudo::before {
    display: none;
}


/* Works Sec Css Ends  */

.app-wrap {
    background: #161616;
    padding: 40px;
    border-radius: 30px;
}

.app-wrap h2 {
    color: #fff;
    font-size: 42px;
}

.app-wrap p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.scan-wrap ul li span {
    background: #fff;
    display: block;
    width: fit-content;
}

.scan-wrap ul li span img {
    width: 130px;
    border: 6px solid #fff;
}

.scan-wrap ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    margin-top: 20px;
}

.scan-wrap ul li:first-child {
    width: 30%;
    border-right: 1px solid #fff;
}

.scan-wrap ul li:last-child {
    width: 70%;
}

.scan-wrap ul li div h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 30px;
}

.scan-wrap ul li div .d-flex {
    gap: 20px;
}

.scan-wrap ul li div .d-flex a img {
    width: 140px;
}

.scan-wrap {
    width: 90%;
    margin: 0 0 0 auto;
}


/* Tracking  */

.bar-card-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #00000017;
    width: 100%;
    margin-top: -240px;
    margin-left: 20%;
}

.bar-card-right {
    margin: 250px 0 0 -60px;
    padding-left: 50px;
    width: 90%;
}

.bar-card-left .bar-card-txt h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #ee422e;
}

.bar-card-right .bar-card-txt h5 {
    font-size: 24px;
    line-height: 30px;
    color: #0da9be;
    font-weight: 600;
}

.bar-card-list {
    width: 100%;
}

.bar-card-list ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 0;
}

.bar-card-list ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.bar-card-list ul li img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.bar-card-list ul li p {
    font-size: 18px;
    line-height: 23px;
    margin: 0;
    color: #929292;
}

img.track-phn-frame {
    width: 400px;
    height: 800px;
}

img.phone-detail {
    position: absolute;
    left: -15px;
    right: 0;
    margin: 0 auto;
    width: 379px;
    top: 10px;
    height: 781px;
}

img.gif-img {
    position: absolute;
    z-index: 99;
    margin: 0 auto;
    display: block;
    left: -8px;
    right: 0;
    margin: 0 auto;
    top: 11%;
    width: 37%;
}

img.camera {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 89%;
    top: 3px;
}

.tracking-phone {
    position: relative;
}

.track-vect4 img {
    position: absolute;
    left: 0;
    top: 80px;
    width: 350px;
    z-index: -1;
}

section.tracking {
    position: relative;
    padding: 100px 0;
}

.track-vect5 img {
    position: absolute;
    width: 340px;
    right: 0;
    bottom: 110px;
    z-index: -1;
}


/* Privacy Css Start */

section.privacy-sec-start {
    padding: 100px 0px 100px;
    background: linear-gradient(180deg, rgb(254 248 248) 0%, rgba(255, 255, 255, 1) 80%, rgb(255 255 255) 46%);
}

.privacy-top-text {}

.privacy-box-img {
    background: #ee422e;
    padding: 10px;
    border-radius: 19px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.privacy-box-img img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.privacy-box p {
    width: 91%;
    font-size: 17px;
    color: #929292;
}

.privacy-box h4 {
    font-size: 24px;
    color: #1D2930;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-top-text {
    width: 62%;
    margin-bottom: 30px;
}

.privacy-box:hover {
    box-shadow: 0px 0px 6px 0px #6967671c;
    background: #fff;
}

.privacy-box {
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
}

.privacy-top-text h2 span {
    display: inline;
}

.privacy-top-text h2 {
    font-size: 60px;
    font-weight: 500;
}


/* Privacy Css End */


/*footer css start*/

footer {
    padding: 80px 10% 0px;
    background-color: #161616;
}

.privacy-top-text p {
    font-weight: 600;
    color: #1d2930;
    width: 89%;
}

.ft-links ul li a:hover {
    color: #eb3f2c;
}

.fto-logo img {
    width: 100px;
    height: 112px;
    object-fit: cover;
}

.fto-logo {
    background-color: #fff;
    padding: 10px;
    width: fit-content;
    border-radius: 15px;
    margin-bottom: 20px;
}

.ft-pa p {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.ft-pa ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    width: 80%;
}

.ft-links h4 {
    font-size: 34px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 50px;
}

.ft-links ul li a {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    transition: 0.5s;
}

.ft-links ul li {
    padding-bottom: 13px;
}

ul.Social-ft {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.Social-ft li img {
    width: 36px;
    object-fit: cover;
    border-radius: 8px;
}

.ft-links ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft-links ul li i {
    font-size: 22px;
    color: #e44026;
}

.ft-bot {
    padding: 30px 0px;
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #676767;
}

.ft-bot p {
    font-size: 20px;
    color: #ffffff9e;
    margin: unset;
}

.ft-links {
    margin-left: 14%;
}


/*footer css end*/

section.get-touch form input {
    width: 100%;
    height: 60px;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
section.get-touch form textarea {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    resize: none;
    overflow-y: hidden;
    padding-top: 15px;
    box-sizing: border-box;
}


section.get-touch form button {
    width: 100%;
    margin-top: 40px;
}

img.touc-vec1 {
    position: absolute;
    left: 0;
    width: 500px;
    bottom: 0;
}

section.get-touch h2 span {
    display: inline;
}

section.get-touch {
    position: relative;
    padding: 100px 0 110px;
}

section.get-touch h2 {
    font-size: 60px;
    font-weight: 500;
}

section.get-touch p b {
    font-weight: 500 !important;
    display: block;
    font-size: 24px;
    margin-bottom: 50px;
}


/* +++++++++++++++++++++++++++++++++++++++ HOME end +++++++++++++++++++++++++++++++++++++++ */

.vital-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* ICON */

.vital-item span {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f7f8;
    flex-shrink: 0;
}

.vital-item span img {
    max-width: 36px;
}


/* TEXT */

.vital-item h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.vital-item p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* 👇 INITIAL STEPPED MARGINS (LIKE IMAGE) */


/* 👇 WHEN ACTIVE → ALL LEFT ALIGNED */

.vital-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    /* animation start state */
    opacity: 0;
    transform: translateX(120px);
    transition: all 1.5s ease;
}

.vital-box ul li:nth-child(2) {
    transform: translateX(390px);
}

.vital-box ul li:nth-child(3) {
    transform: translateX(460px);
}

.vital-box .vital-item.show {
    opacity: 1;
    transform: translateX(0);
    margin-left: 0 !important;
}


/* menu-box */

.menu-btn .fa-xmark {
    color: #fff !important;
}

.mobile_menu.d-xl-none.d-lg-none.d-md-none ul {
    margin: 0;
}

.mobile_menu.d-xl-none.d-lg-none.d-md-none {
    position: fixed;
    left: 10px;
    z-index: 99999 !important;
    top: 10px;
}

.menu-btn i {
    font-size: 30px;
    line-height: 1;
    color: #ee422d;
}

.me-15px {
    margin-right: 10px !important;
}

.menu-box {
    position: fixed;
    top: 0;
    left: -500px;
    height: 100vh;
    width: 100vw;
    background: #2a2a2a;
    z-index: 999;
    /* display: none; */
    transition: 0.5s ease-in-out;
    opacity: 0;
    background: #0da9be;
}

.menu-box.open {
    /* display: block; */
    left: 0px;
    /* transition: 0.5s ease-in-out; */
    opacity: 1;
}

.menu-btn {
    position: relative;
    display: block;
    margin: 6px 0 0 5px;
}

a#menu-btn {
    z-index: 9999;
}

.mobile_menu ul#menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    padding: 0 0 0 100px;
}

.logo img {
    width: 50%;
}

.menu-box>nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
}

.menu-box>nav a {
    font-size: 24px;
    color: white;
    text-transform: capitalize;
    line-height: 1;
    transition: 0.4s ease-in-out;
    position: relative;
    font-weight: 400 !important;
    display: block;
    width: 100%;
    padding: 0 0 0 20px;
}

.menu-box>nav a:after {
    position: absolute;
    content: "";
    width: 0;
    bottom: -5px;
    height: 2px;
    background: var(--primary);
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
}

.menu-box>nav a:hover:after {
    width: 100%;
}

ul#menu a.active:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70%;
    height: 2px;
    background: #fff;
    border-radius: 50px;
}

.slicknav_menu {
    display: none;
}


/* menu-box */

.three_steps_text {
    color: #1D2930;
}


/* FULL SCREEN LOADER */

.site-loader {
    position: fixed;
    inset: 0;
    background: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: #161616;
}


/* TEXT */

.loader-text {
    font-size: 52px;
    font-weight: 700;
    text-align: start;
}

.loader-text span {
    display: block;
}


/* CHARACTER ANIMATION */

.loader-text .char {
    opacity: 0;
    display: inline-block;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.loader-text .char.show {
    opacity: 1;
    transform: translateY(0);
}

h2.loader-text span {
    color: #0da9be79;
}

span.text-span span.char.show {
    color: #0da9be !important;
}

.circle-imggg {
    position: relative;
    z-index: 1;
}

.circle-imggg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25%;
    margin: auto;
}

.works-rate-card-mid-txt h6 {
    margin: 0 !important;
}

section.get-touch form input::placeholder {
    text-transform: capitalize;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay.active .popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-box {
    background: #fff;
    padding: 36px 32px 0;
    text-align: center;
    border-radius: 16px;
    max-width: 380px;
    width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}

.popup-box h2 {
    margin: 12px 0 8px;
    font-size: 28px;
    color: #1a1a1a;
}

.popup-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-box button {
    margin-bottom: 24px;
    padding: 10px 48px;
    border: none;
    background: #ee422e;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.popup-box button:hover {
    background: #c73320;
}

/* checkmark icon */
.popup-checkmark {
    margin: 0 auto;
    width: 70px;
    height: 70px;
}

.popup-checkmark svg {
    width: 70px;
    height: 70px;
}

.check-circle {
    stroke: #ee422e;
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: stroke-circle 0.5s ease forwards 0.15s;
}

.check-tick {
    stroke: #ee422e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-tick 0.35s ease forwards 0.55s;
}

@keyframes stroke-circle {
    to { stroke-dashoffset: 0; }
}

@keyframes stroke-tick {
    to { stroke-dashoffset: 0; }
}

/* auto-close progress bar */
.popup-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f0f0f0;
}

.popup-progress-fill {
    height: 100%;
    width: 100%;
    background: #ee422e;
    transition: width 3.5s linear;
}

/* submit button spinner */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* inline error message */
.form-error {
    color: #ee422e;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important; /* text color */
  caret-color: #000;
  transition: background-color 9999s ease-in-out 0s;
}
br.mobile-break + .char {
    display: none;
}
/*br.mobile-break {*/
/*        display: none;*/
/*    }*/