@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

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-family: "Montserrat", sans-serif;
    font-weight: 400;
}


/***** Font Files *****/

@font-face {
    font-family: 'Arame-Thin';
    src: url(../fonts/Arame-Thin.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Blender_Pro';
    src: url(../fonts/fonnts.com-Blender_Pro_Medium.ttf);
    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;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.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: 'Arame-Thin';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Arame-Thin';
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Arame-Thin';
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Arame-Thin';
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Arame-Thin';
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 23px;
    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 */

.menuSec {
    padding: 0px 0;
    position: relative;
}

.menuSec img {
    margin: 0;
    margin-left: 5px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 30px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 0px;
    font-size: 14px;
    font-family: 'Montserrat';
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec .row {
    align-items: center;
}

.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: #d70000;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec ul li a.active {
    position: relative;
    color: #fff !important;
}

.menuSec ul li a.active::before {
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    background-color: #ffffff5e;
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}



.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.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;
}

.container-fluid {
    padding: 0 3%;
}

a.btn-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #d71d1f;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 100px;
    padding-left: 5px;
    transition: all 0.4s ease;
}

a.btn-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(215, 29, 31, 0.4);
}

a.btn-1:hover span {
    background-color: #003271 !important;
    color: #fff !important;
}

a.btn-1:hover i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

a.btn-1 span {
    transition: all 0.4s ease;
}

a.btn-1 i {
    transition: all 0.4s ease;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.menuSec::before {
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #ffffff6e;
}

.ank-ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

a.btn-1 span {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #000000;
    text-transform: uppercase;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
}

a.btn-1 i {
    color: #fff;
}

/*banner css start */
/*banner css start */
.social-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    background: #e10600;
    display: flex;
    align-items: center;
    padding: 15px 0;
    z-index: 99;
    height: 78%;
    flex-direction: column;
    gap: 11px;
}

.social-bar a {
    color: #fff;
    margin: 10px 0;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-bar a:hover {
    transform: scale(1.2);
    background-color: #fff;
    color: #ce1816;
    border: unset;
}

.follow-text {
    margin-top: 225px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    font-family: 'Arame-Thin';
    position: relative;
}



.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;
}

.menuSec .row {
    align-items: center;
}



.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;
}

.baner-ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vid-ank a {
    display: flex;
    align-items: baseline;
    color: #fff;
    font-size: 16px;
    font-family: 'Arame-Thin';
    color: #fff;
}

section.main_slider::before {
    background: radial-gradient(circle, rgba(0, 50, 113, 0) 0%, rgba(0, 50, 113, 1) 100%);
    position: absolute;
    top: 0;
    height: 99%;
    left: 0;
    content: '';
    width: 100%;
    z-index: 1;
}

.banner_text h1 {
    font-size: 62px;
    line-height: 1;
    color: #fff;
    margin-bottom: 30px;
}

.banner_text {
    position: relative;
    z-index: 111;
    padding-left: 4%;
}

.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;
}

.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;
}

img.img-fluid {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.banner_text h5 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner_text h1 span {
    display: block;
}

section.main_slider {
    position: relative;
    z-index: 5;
}

.banner_img {
    position: absolute;
    bottom: 0;
    width: 45%;
    z-index: 9;
}

.follow-text::before {
    position: absolute;
    top: 112px;
    left: 0px;
    width: 1px;
    height: 228px;
    content: '';
    background-color: #fff;
    right: 0;
    margin: 0 auto;
}

.banner_img::before {
    position: absolute;
    top: 160px;
    content: '';
    width: 59%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-bef.png);
    margin: 0 auto;
    left: 64px;
    right: 0;
    z-index: -1;
}

.banner_text p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
    font-weight: 400;
    width: 88%;
    margin-bottom: 21px;
}

section.main_slider h3 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 26px;
    letter-spacing: 2px;
    color: #ffffff40;
}

section.main_slider video {
    width: 100%;
    height: 100%;
}

/*banner css end*/
/*families trust start*/

.families-trust-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 10px;
}

section.families-trust {
    padding: 30px 0px 100px;
}

.families-txt ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.families-trust-img {
    position: relative;
}

.families-txt {
    width: 64%;
    background-color: #fff;
    padding: 20px 30px;
    position: absolute;
    bottom: 65px;
    right: -150px;
    border-radius: 10px;
}

.use-ful-links ul li p {
    font-size: 14px;
    color: #fff;
    margin: unset;
    line-height: 21px;
}

.use-ful-links ul li i {
    color: #fff;
    font-size: 15px;
}

.families-txt h2 {
    font-size: 60px;
    line-height: 1;
    color: #1b1b1b;
}

.families-txt p {
    font-size: 15px;
    color: #a5a5a5;
}

.families-txt ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

.families-txt ul li h5 {
    font-size: 16px;
    text-transform: uppercase;
    color: #100f0f;
    margin-bottom: unset;
}

section.families-trust .container-fluid {
    position: relative;
    z-index: 1;
}

section.families-trust .container-fluid::before {
    position: absolute;
    top: -30px;
    right: 35px;
    width: 80%;
    content: '';
    height: 110%;
    z-index: -1;
    background-color: #033472;
    border-radius: 10px;
}

/*families trust end*/

/*footer start*/
.fot-top {
    padding: 80px 0px 40px;
    background-image: url(../images/ft-top-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.ft-logo p {
    font-size: 16px;
    color: #fff;
    width: 73%;
    line-height: 28px;
}

.ft-logo a img {
    margin-bottom: 35px;
}

.use-ful-links h4 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 13px;
    width: fit-content;
}

.use-ful-links ul li a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
}

.use-ful-links ul li {
    padding-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.use-ful-links.on ul li a {
    text-transform: uppercase;
}

.use-ful-links ul li p span {
    display: block;
}

.use-ful-links.tw {
    margin-left: -50px;
}

.use-ful-links p {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins';
    width: 91%;
}

.use-ful-links form input {
    width: 100%;
    padding: 12px;
    background-color: unset;
    border: 1px solid #fff;
    border-radius: 100px;
    margin: 0 0 30px;
    color: #ffff;
}

.use-ful-links form input::placeholder {
    color: #fff;
}

button.btn-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #d71d1f;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 100px;
    padding-left: 5px;
    border: unset;
}

.cat-txt:hover h4 {
    position: relative;
    margin-bottom: 30px;
}

.cat-txt:hover h4::before {
    position: absolute;
    bottom: -15px;
    left: -19px;
    width: 183px;
    content: '';
    height: 1px;
    background-color: #fff;
}

button.btn-1 span {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #000000;
    text-transform: uppercase;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.4s ease;
}

button.btn-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(215, 29, 31, 0.4);
}

button.btn-1:hover span {
    background-color: #003271 !important;
    color: #fff !important;
}

button.btn-1 i {
    color: #fff;
}

.fot-bot {
    background-color: #003271;
    text-align: center;
    padding: 20px 0px;
}

.fot-bot p {
    font-size: 16px;
    color: #fff;
    margin: unset;
}

.use-ful-links.on ul li a:hover {
    color: #ce1816;
    transition: 1s;
}

/*footer end*/
/*get-in-touch start*/
section.get-in-touch {
    padding: 100px 0px;
    position: relative;
    margin: 0px 0px 0px;
}

.get-in-touch-bx {
    padding: 30px;
    background-color: #003271;
    margin-top: 100px;
    position: relative;
    padding-left: unset;
    z-index: 1;
    border-top-right-radius: 10px;
}

.get-in-touch-bx h3 {
    font-size: 67px;
    line-height: 1;
    color: #fff;
}

.get-in-touch-bx p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
}

.get-in-touch-bx form input {
    width: 100%;
    padding: 12px;
    color: #fff;
    background-color: unset;
    border: 1px solid #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.get-in-touch-bx form input::placeholder {
    color: #fff;
}

.get-in-touch-bx form textarea {
    width: 100%;
    padding: 12px;
    color: #fff;
    background-color: unset;
    border: 1px solid #fff;
    margin-bottom: 20px;
    resize: none;
    height: 150px;
    border-radius: 5px;
}

.get-in-touch-bx form select {
    width: 100%;
    padding: 12px;
    color: #fff;
    background-color: unset;
    border: 1px solid #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-appearance: auto;
}

.get-in-touch-bx form textarea::placeholder {
    color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    /* Removes the arrows */
    margin: 0;
    /* Removes the margin in older versions of Chrome */
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    /* Removes the spinner in Firefox */
}

.get-img {
    position: absolute;
    bottom: 99px;
    z-index: -1;
    height: 700px;
    width: 85%;
    right: 0;
}

.get-in-touch-bx::before {
    position: absolute;
    content: '';
    left: -47px;
    width: 47px;
    height: 100%;
    background-color: #0f3373;
    bottom: 0px;
    z-index: -1;
}

.get-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
}

/*get-in-touch end*/
/*about start*/
section.about {
    padding: 100px 0px;
    background-image: url(../images/abt-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 -100px;
    position: relative;
}

.abt-txt h2 {
    font-size: 75px;
    line-height: 1;
    color: #0e0d0d;
    margin-bottom: 20px;
}

.abt-txt h4 {
    font-size: 37px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abt-txt p {
    font-size: 15px;
    color: #141313;
    margin-bottom: 30px;
    line-height: 31px;
    width: 89%;
}

.abt-mis-txt {
    background-color: #003271;
    padding: 40px;
    margin-top: 84px;
    position: relative;
    right: 11px;
    width: 102.5%;
}

.abt-mis-txt h4 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.abt-mis-txt p {
    font-size: 15px;
    color: #fff;
    width: 89%;
}

.abt-img img {
    width: 100%;
    height: 794px;
    object-fit: cover;
    box-shadow: 0 0 7px #000000b3;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abt-img:hover img {
    transform: scale(1.03);
}

.abt-sm-img img {
    height: 385px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abt-sm-img:hover img {
    transform: scale(1.08);
}


.abt-sm-img {
    /* margin-top: 84px; */
    position: absolute;
    bottom: 100px;
    right: 0;
}

.abt-txt {
    padding-top: 30px;
}

/*about end*/
/*how-it-works start */
section.how-it-work {
    padding: 80px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/work-bg.jpg);
    margin-top: 80px;
}

.how-it-work-txt {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-work-txt h3 {
    font-size: 75px;
    line-height: 1;
    color: #fff;
    font-weight: 200;
}

.how-it-work-txt p {
    font-size: 16px;
    color: #fff;
    width: 40%;
    margin: 0 auto;
}

.success-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-box:hover img {
    transform: scale(1.08);
}

.main-bx-sm img {
    height: 80px;
    width: 70px;
    object-fit: contain;
}

.main-bx-sm {
    text-align: center;
    background-color: #295fa894;
    padding: 20px;
    border-right: 1px solid #fff;
}

.main-bx-sm h4 {
    font-size: 22px;
    color: #fff;
    line-height: 1;
    margin-top: 10px;
}

.main-bx-sm p {
    color: #fff;
}

.main-bx-sm:hover {
    transition: 1s;
    background-color: #d71d1f;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

/*how-it-works end */

/*testimonials start*/
.test-silder .slick-slide {
    opacity: 1;
    margin-top: 0;
    transition: margin 0.3s ease;
}

.test-silder-contorl {
    display: flex;
    margin: 20px 0px 0px;
    align-items: center;
    justify-content: center;
}

.a-trackr-btn {
    gap: 25px;
    width: 50%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.a-trackr-btn button {
    border: none;
    background-color: transparent;
}

.a-track-number {
    width: 520px;
    position: relative;
}

.a-track-number .slide_counter h2 {
    color: #1c1b1a;
    margin-bottom: 0;
    display: flex;
    height: 100%;
    gap: 190px;
    font-size: 53px;
    font-weight: 400;
    align-items: center;
    justify-content: space-between;
}

span.end_number {
    font-size: 34px;
    color: #cbcbcb;
}

.a-track-number .progress {
    display: block;
    width: 70%;
    height: 4px;
    border-radius: 10px;
    overflow: hidden;
    bottom: 0%;
    background-color: #e5e5e5;
    background-image: linear-gradient(to right, #ce1816, #ffffff4b);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size 0.4s ease-in-out;
    position: absolute;
    left: 0;
    top: 11px;
    right: 0;
    margin: auto;
}

.user img {
    width: 30px;
    object-fit: contain;
    height: 30px;
}

section.testimonials .postBox {
    position: relative;
    margin-bottom: 60px;
}

section.testimonials .postBox .postImg {
    position: relative;
}

section.testimonials .postBox .postImg img {
    position: relative;
    transition: 0.9s;
}

section.testimonials .postBox:hover .postImg img {
    filter: brightness(0.5);
    cursor: pointer;
    transform: translate(-2px, 0px);
}

section.testimonials .postBox .postext {
    padding: 20px 21px;
    box-sizing: border-box;
    box-shadow: 0px 0px 11px 0px #4444443b;
    border-radius: 6px;
    width: 68%;
    position: absolute;
    top: 25px;
    right: 22px;
    z-index: 5;
    background: #fff;
}

section.testimonials .postBox .postext h5 {
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    font-weight: 600;
    font-family: 'Arame-Thin';
    font-weight: 400;
    margin-bottom: 10px;
}

section.testimonials .postBox .postext p {
    font-size: 10px;
    color: #777575;
    font-family: 'Montserrat';
    line-height: 19px;
    font-weight: 500;
    font-style: italic;
}

section.testimonials .postBox .postext .lst-dt {
    display: flex;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    padding-top: 10px;
}

section.testimonials .postBox .postext .lst-dt .user {
    display: flex;
    gap: 10px;
    align-items: center;
}

section.testimonials .postBox .postext .lst-dt i {
    width: 35px;
    height: 35px;
    border: 1px solid #bdbdbd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    color: #ce1816;
    line-height: 0px;
    transition: 0.9s;
    cursor: pointer;
}

section.testimonials .slick-slide {
    margin: 0px 10px;
}

section.testimonials .postBox .postext .lst-dt:hover i {
    background: #ce1816;
    color: #fff;
    transform: rotate(360deg);
    border: 1px solid #fff;
}

section.testimonials .postBox .postext .lst-dt h6 {
    margin: 0px;
    font-family: 'Arame-Thin';
    font-size: 16px;
    font-weight: 500;
    color: #777575;
    margin-bottom: 8px;
}

section.testimonials .postBox .postext .lst-dt ul {
    display: flex;
    margin: 0px;
    gap: 10px;
}


section.testimonials .postBox .postImg {
    height: 254px;
    object-fit: cover;
    width: 75%;
}

section.testimonials .postBox .postImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

section.testimonials {
    padding: 80px 0px 0px 0px;
}

section.testimonials h3 {
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    background-color: #887367;
    padding: 30px 0px;
    color: #fff;
    margin-bottom: 50px;
}

.test-top-txt {
    text-align: center;
    margin-bottom: 30px;
}

.test-top-txt h2 {
    font-size: 72px;
    line-height: 1;
    color: #000000;
}

.test-top-txt p {
    font-size: 14px;
    color: #8e8d8d;
    width: 71%;
    margin: 0 auto;
}

/*testimonials end*/
/*testimonials end*/

/*categories start*/
.cate-slid .slick-active {
    opacity: 1;
}

.cate-slid {
    padding-left: 0%;
}

section.categories .container-fluid {
    padding-right: 0;
}

.cate-img img {
    width: 100%;
    height: 270px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    object-fit: cover;
}

section.categories .slick-slide {
    opacity: 1;
}

.cate-txt h3 {
    font-size: 75px;
    line-height: 82px;
    font-weight: 400;
    color: #fff;
}

.cate-txt p {
    font-size: 27px;
    width: 80%;
    color: #fff;
}

.cat-txt {
    padding: 10px 0px 20px;
}

.cat-txt h4 {
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 20px;
    color: #000;
}

section.categories {
    margin: 10px 0px 80px;
    position: relative;
    z-index: 1;
}

section.categories::before {
    position: absolute;
    content: '';
    width: 100%;
    top: -17px;
    left: 0;
    height: 462px;
    background-image: url(../images/cat-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.cate-txt {
    margin-bottom: 40px;
}

.cate-slid .slick-prev {
    left: auto;
    top: -48px;
    z-index: 6;
    right: 192px;
}

.cate-slid .slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

.cate-slid .slick-prev:before {
    content: "";
    background-image: url(../images/test-btn-left.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 68px;
    width: 70px;
    top: -40px;
    border-bottom: 1px solid #fff;
    border-bottom-left-radius: 6px;
}

.cate-slid .slick-next:before {
    content: "";
    background-image: url(../images/test-btn-right.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 70px;
    width: 70px;
    top: 21px;
    left: -114px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cate-slid .slick-next {
    right: 0;
    top: -110px;
    z-index: 5;
}

.cat-txt h4 span {
    display: block;
}

.cat-txt:hover {
    padding: 20px;
    background-color: #d71d1f;
    transition: 1s;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cat-txt:hover h4 {
    color: #fff;
}

.cat-txt:hover p {
    color: #fff;
}

.cat-txt:hover a {
    background-color: #003271;
}

.cat-txt p {
    font-size: 14px;
    color: #6a6a6a;
}

.cate-slid .slick-slide {
    margin: 0px 10px;
}

/*categories end*/
.vid-ank {
    position: relative;
    overflow: hidden;
}

/* video background overlay */
.vid-ank video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    /* hidden by default */
    visibility: hidden;
    pointer-events: none;
    /* clicks link pe hi jayen */
    transition: opacity 0.4s ease;
}

/* show video */
.vid-ank.video-active video {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ban-bot-bx {
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    bottom: 0;
    width: 80%;
    padding: 30px 20px;
    height: 169px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ban-bot-bx ul {
    display: flex;
    align-items: center;
    gap: 250px;
}

.ban-bot-bx ul li h3 {
    position: relative;
    font-size: 176px;
    font-family: 'Blender_Pro';
    color: #e6e8ed;
    width: 100%;
    margin: unset;
}

.ban-bot-bx h5 {
    font-size: 30px;
    color: #000000;
    position: absolute;
    top: 0;
    left: 30px;
    width: 108%;
    right: 0;
    line-height: 1;
    margin: unset;
}

.ban-bot-bx h5 span {
    display: block;
}

.ban-bot-bx ul li {
    position: relative;
}

.ban-bot-bx h5::before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 62px;
    height: 2px;
    content: '';
    background-color: #d70000;
}

.main-bx-sm.last {
    border-right: unset;
}

.get-in-touch-bx form select option {
    color: #000;
}

.star ul {
    display: flex;
    align-items: center;
    gap: 0px !important;
    margin-top: 4px !important;
}

.star ul li a i {
    border: unset !important;
    width: unset !important;
    height: unset !important;
    color: #ffb503 !important;
    font-size: 10px;
}

/* Success Stories CSS */
.success-stories {
    padding: 0px 0 100px;
}

.success-txt-top {
    text-align: center;
    margin-bottom: 20px;
}

.success-txt-top h3 {
    font-size: 72px;
    font-family: 'Arame-Thin';
    color: #000000;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1;
}

.success-txt-top p {
    font-size: 15px;
    color: #555;
    margin: 0 auto;
    width: 69%;
}

.success-box {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}

.success-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.success-box img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.video-box {
    height: 440px;
    /* Horizontal feel compared to side images */
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-interface {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 20px;
    color: #fff;
    z-index: 5;
    opacity: 0.9;
}

.play-pause,
.volume,
.fullscreen {
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.play-pause:hover,
.volume:hover,
.fullscreen:hover {
    color: #d71d1f;
}

.progress-container {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    /* Dummy progress */
    background: linear-gradient(90deg, #d71d1f, #ff4d4d);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(215, 29, 31, 0.5);
}

.time {
    font-size: 14px;
    font-family: 'Blender_Pro', sans-serif;
    letter-spacing: 1px;
}

.quality {
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid #fff;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .success-box img {
        height: 400px;
    }

    .video-box {
        height: 400px;
        margin: 20px 0;
    }

    .video-interface {
        height: 50px;
        padding: 0 15px;
        gap: 15px;
    }
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.video-box.is-paused video {
    opacity: 0;
}

.video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
    opacity: 0;
}

.video-box.is-paused .video-poster-overlay {
    opacity: 1;
}

.cate-slid .slick-prev:before,
.cate-slid .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cate-slid .slick-prev.slick-disabled:before,
.cate-slid .slick-next.slick-disabled:before {
    opacity: 1;
}