/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: #FFFFFF;
    background-image: url(../images/body-bg.png);
    background-size: cover;
    background-position: top;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input {
    outline: none !important;
}
/* GOBAL_CSS_CHANGES_END_HERE */
/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --main-color: #F25F00;
    --heading-color: #332C5C;
    --main-text-color: #58575F;
    --white: #FFFFFF;
    --poppins-bold: "Poppins-Bold";
    --poppins-medium: "Poppins-Medium";
    --poppins-regular: "Poppins-Regular";
    --manrope-bold: "Manrope-Bold";
    --manrope-medium: "Manrope-Medium";
    --manrope-regular: "Manrope-Regular";
    --nunitoSans-bold: "NunitoSans-Bold";
    --nunitoSans-regular: "NunitoSans-Regular";
}
/* GOBAL_VAR_CSS_CSS_HERE */
/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Poppins-Bold";
    src: url("../webfonts/Poppins-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Medium";
    src: url("../webfonts/Poppins-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Bold";
    src: url("../webfonts/Manrope-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Medium";
    src: url("../webfonts/Manrope-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Regular";
    src: url("../webfonts/Manrope-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "NunitoSans-Bold";
    src: url("../webfonts/NunitoSans-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Regular";
    src: url("../webfonts/NunitoSans-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
/* HEADER-CSS-START-FROM-HERE */
.header-main-wrapper {
    position: fixed;
    width: 100%;
    height: 100px;
    backdrop-filter: blur(10px);
    background: rgb(255 255 255 / 36%);
    z-index: 999999;
}
.main-header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px 0px 0px;
}
.header-links ul{
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-links ul li a{
    font-family: var(--nunitoSans-bold);
    font-size: 16px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s all;
    padding: 0px 0px 0px 0px;
}
.header-links ul li a:hover {
    color: var(--main-color);
}
.header-btn-flex{
    display: flex;
    gap: 20px;
    font-family: var(--nunitoSans-bold);
    font-size: 18px;
    align-items: center;
}
.header-btn-1 a{
    color: var(--main-color);
    transition: 0.3s all;
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-family: var(--manrope-bold);
    font-size: 16px;
}
.header-btn-1 a:hover{
    color: var(--white);
    background-color: var(--main-color);
    transition: 0.3s all;
}
.header-btn-2 a{
    color: var(--white);
    transition: 0.3s all;
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: var(--main-color);
    font-family: var(--manrope-bold);
    font-size: 16px;
}
.header-btn-2 a:hover{
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
    transition: 0.3s all;
}
.header-links ul li{
    display: block;
    position: relative;
    transition-duration: 0.5s;
}
.header-links ul li i{
    color: #000;
    transition: 0.3s all;
}
.header-links ul li ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: all 0.5s ease;
	left: 0;
	display: none;
	z-index: 9999;
	background-color: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
	width: 160px;
	padding: 10px 0px 0px 10px;
	transform: translate(-20px, 0px);
}
.header-links ul li ul li a{
	margin: 0px 0px 0px 0px;
	color: #332C5C;
	font-size: 14px;
	font-family: var(--nunitoSans-bold);
	line-height: 2;
}
.header-links ul li ul a {
	font-size: 16px;
}
.header-links ul li ul li a:hover{
    background: var(--white);
    color: var(--red);
}
.header-links ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
.header-links ul li:hover{
    cursor: pointer;
    transition: 0.3s all;
}
.header-links ul li a i {
    font-size: 14px;
    transform: rotate(180deg);
}
.header-links ul li a:hover i {
    transform: rotate(360deg);
    color: var(--main-color);
}


.index-banner-wrapper {
    padding: 100px 0px 0px 0px;
}
.index-banner-wrap-text h6{
    font-family: var(--manrope-bold);
    font-size: 50px;
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-text span{
    color: var(--main-color);
}
.index-banner-wrap-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-btns{
    display: flex;
    gap: 20px;
    align-items: center;
}
.index-banner-wrap-btn-1 a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    font-family: var(--manrope-bold);
    font-size: 14px;
    background-color: var(--main-color);
    border-radius: 10px;
    color: var(--white);
    transition: 0.5s all;
}
.index-banner-wrap-btn-1 a:hover{
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.index-banner-wrap-btn-2 a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: var(--main-color);
    border-radius: 10px;
    transition: 0.5s all;
    width: 200px;
}
.index-banner-wrap-btn-2 a:hover{
    color: var(--white);
    background-color: var(--main-color);
}
.index-first-wrapper {
    padding: 50px 0px 50px 0px;
}
.index-first-wrap-box{
    width: 350px;
    background: var(--white);
    box-shadow: 0px 26.0146px 59.2898px rgba(0, 0, 0, 0.11);
    border-radius: 17px;
    padding: 20px 20px 20px 20px;
    margin: 0 auto;
}
.index-first-wrap-box-img img{
    transition: 0.5s all;
    border-radius: 10px;
}
.index-first-wrap-box:hover .index-first-wrap-box-img img{
    transform: scale(1.1);
}
.index-first-wrap-box:hover .index-first-wrap-box-text{
    transform: translate(0px , -10px);
}
.index-first-wrap-box:hover .index-first-wrap-box-btn a{
    text-decoration: underline;
}
.index-first-wrap-box:hover .index-first-wrap-box-text h6{
    color: var(--main-color);
}
.index-first-wrap-box:hover .index-first-wrap-box-text img{
    transform: rotate(360deg);
}
.index-first-wrap-box-text img{
    transition: 0.5s all;
}
.index-first-wrap-box-img {
    text-align: center;
    margin: 0px 0px 20px 0px;
    overflow: hidden;
}
.index-first-wrap-box-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0px 30px 0px;
    transition: 0.5s all;
}
.index-first-wrap-box-text h6{
    font-size: 18px;
    font-family: var(--poppins-medium);
    color: #000000;
    transition: 0.5s all;
}
.index-first-wrap-box-btn a{
    font-size: 14px;
    font-family: var(--manrope-medium);
    color: var(--main-color);
    transition: 0.5s all;
}
.index-second-wrapper {
    padding: 50px 0px 50px 0px;
}
.index-second-wrap-text h6{
    font-size: 30px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 30px 0px;
}
.index-second-wrap-text p{
    font-size: 16px;
    font-family: var(--manrope-bold);
    color: #494369;
    margin: 0px 0px 30px 0px;
}
.index-second-wrap-scroll{
    height: 450px;
    overflow-y: scroll;
}
.index-second-wrap-scroll::-webkit-scrollbar {
    width: 6px;
    height: 70px;
}
.index-second-wrap-scroll::-webkit-scrollbar-track {
    background: #F2F2F2; 
}
.index-second-wrap-scroll::-webkit-scrollbar-thumb {
    background: #EB5757; 
    border-radius: 20px;
    transition: 0.5s all;
}
.index-second-wrap-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--main-text-color); 
}
.index-second-wrap-box-flex img {
    width: 10%;
}
.index-second-wrap-box-flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.index-second-wrap-box-img {
    width: 100%;
    text-align: end;
}
.index-second-wrap-box-img{
    position: relative;
}
.index-second-wrap-box-img::before{
    content: '';
    position: absolute;
    background-image: url(../images/desktop-1.png);
    width: 710px;
    height: 485px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 1%;
    top: -495px;
}
.index-second-wrap-box-img-1{
    position: relative;
}
.index-second-wrap-box-img-1::before{
    content: '';
    position: absolute;
    background-image: url(../images/desktop-2.png);
    width: 710px;
    height: 485px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 1%;
    top: -495px;
}
.index-second-wrap-box-img-2{
    position: relative;
}
.index-second-wrap-box-img-2::before{
    content: '';
    position: absolute;
    background-image: url(../images/img-1.png);
    width: 640px;
    height: 445px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 8%;
    top: -495px;
}
.index-second-wrap-box-img-3{
    position: relative;
}
.index-second-wrap-box-img-3::before{
    content: '';
    position: absolute;
    background-image: url(../images/img-2.png);
    width: 670px;
    height: 480px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 4%;
    top: -495px;
}
.index-second-wrap-box-img-4{
    position: relative;
}
.index-second-wrap-box-img-4::before{
    content: '';
    position: absolute;
    background-image: url(../images/img-3.png);
    width: 680px;
    height: 490px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 3%;
    top: -495px;
}
.index-second-wrap-box-flex h4{
    font-size: 18px;
    font-family: var(--manrope-bold);
    color: var(--heading-color);
}
.custom-tab .nav-link {
    border-radius: 18px;
    height: 80px;
    width: 100%;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.custom-tab .nav-link.active{
    background: #FFFFFF;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.11);
}
.custom-tab .nav-link:hover{
    background: #FFFFFF;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.11);
}
.index-third-wrapper {
    padding: 50px 0px 50px 0px;
}
.index-third-wrap-text h6{
    font-size: 30px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 30px 0px;
}
.index-third-wrap-text p{
    font-size: 16px;
    font-family: var(--manrope-bold);
    color: #494369;
    margin: 0px 0px 30px 0px;
}
.index-third-wrap-scroll{
    height: 450px;
    overflow-y: scroll;
}
.index-third-wrap-scroll::-webkit-scrollbar {
    width: 6px;
    height: 70px;
}
.index-third-wrap-scroll::-webkit-scrollbar-track {
    background: #F2F2F2; 
}
.index-third-wrap-scroll::-webkit-scrollbar-thumb {
    background: #EB5757; 
    border-radius: 20px;
    transition: 0.5s all;
}
.index-third-wrap-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--main-text-color); 
}
.index-third-wrap-box-flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.index-third-wrap-box-img {
    text-align: start;
}
.index-third-wrap-box-img{
    position: relative;
}
.index-third-wrap-box-img::before{
    content: '';
    position: absolute;
    background-image: url(../images/iphone-img.png);
    width: 320px;
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 30%;
    top: -675px;
}
.index-third-wrap-box-img-1{
    position: relative;
}
.index-third-wrap-box-img-1::before{
    content: '';
    position: absolute;
    background-image: url(../images/iphone-img-1.png);
    width: 320px;
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 30%;
    top: -675px;
}
.index-third-wrap-box-img-2{
    position: relative;
}
.index-third-wrap-box-img-2::before{
    content: '';
    position: absolute;
    background-image: url(../images/iphone-img-2.png);
    width: 320px;
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 30%;
    top: -675px;
}
.index-third-wrap-box-img-3{
    position: relative;
}
.index-third-wrap-box-img-3::before{
    content: '';
    position: absolute;
    background-image: url(../images/iphone-img-3.png);
    width: 320px;
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 30%;
    top: -675px;
}
.index-third-wrap-box-img-4{
    position: relative;
}
.index-third-wrap-box-img-4::before{
    content: '';
    position: absolute;
    background-image: url(../images/iphone-img-4.png);
    width: 320px;
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 30%;
    top: -675px;
}
.index-third-wrap-box-flex h4{
    font-size: 16px;
    font-family: var(--manrope-bold);
    color: var(--heading-color);
}
.custom-tab-1 .nav-link {
    border-radius: 18px;
    height: 80px;
    width: 90%;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.custom-tab-1 .nav-link.active{
    background: #FFFFFF;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.11);
}
.custom-tab-1 .nav-link:hover{
    background: #FFFFFF;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.11);
}
.index-third-wrap-box-flex img {
    width: 10%;
}
.index-fourth-wrapper {
    padding: 50px 0px 50px 0px;
}
.index-fourth-wrap-testimonials {
    text-align: center;
}
.index-fourth-wrap-text{
    text-align: center;
}
.index-fourth-wrap-testimonials-img {
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-text h6{
    font-size: 40px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-testimonials-heading h4{
    font-size: 24px;
    font-family: var(--manrope-bold);
    color: var(--heading-color);
    margin: 0px 0px 30px 0px;
}
.index-fourth-wrap-testimonials-text p{
    font-size: 16px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-testimonials-text p span{
    color: var(--main-color);
}
.index-fourth-slider .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
    margin: 5px;
    background: #F0C9C0;
    border-radius: 5px;
    transition: 0.5s all;
}
.index-fourth-slider .owl-dots .owl-dot.active span,
.index-fourth-slider .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}
.index-fifth-wrapper {
    padding: 50px 0px 50px 0px;
}
.index-fifth-wrap-text{
    text-align: center;
}
.index-fifth-wrap-text h6{
    font-size: 35px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 50px 0px;
}
.index-fifth-wrap-box{
    text-align: center;
    background-color: #FFFFFFB2;
    border: 1.25px solid #EEEEEE;
    backdrop-filter: blur(15px);
    border-radius: 37px;
    width: 200px;
    margin: 0 auto;
    height: 210px;
    padding: 50px 0px 0px 0px;
}
.index-fifth-wrap-box-text h3{
    font-size: 20px;
    font-family: var(--manrope-bold);
    color: #000000;
}
.index-fifth-slider {
    margin: 0% 0% 0% 15%;
}
.index-fifth-wrap-box-img {
    margin: 0px 0px 50px 0px;
}
.index-sixth-wrapper {
    padding: 50px 0px 200px 0px;
}
.index-sixth-wrap-main-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 180px;
    border-radius: 30px;
    background-color: #F25F001A;
    backdrop-filter: blur(10px);
    padding: 0px 50px 0px 50px;
}
.index-sixth-wrap-box-flex{
    display: flex;
    align-items: center;
    gap: 15px;
}
.index-sixth-wrap-box-text h6{
    font-size: 24px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
}
.index-sixth-wrap-box-text span{
    font-size: 12px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
}
/* LOGIN-CSS-START-FROM-HERE */
.login-wrapper{
    padding: 200px 0px 200px;
    text-align: center;
}
.login-wrap-top-text h6{
    font-size: 35px;
    font-family: var(--manrope-bold);
    color: var(--main-color);
    margin: 0px 0px 50px 0px;
}
.login-first-wrap-input input{
    width: 40%;
    height: 50px;
    border: 1px solid #222;
    font-size: 13px;
    font-family: var(--poppins-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.login-first-wrap-text{
    display: flex;
    justify-content: end;
    width: 40%;
    margin: 0 auto;
}
.login-first-wrap-text a{
    font-size: 18px;
    font-family: var(--Poppins-Regular);
    color: var(--main-color);
    transition: 0.3s all;
}
.login-first-wrap-text a:hover{
    color: var(--sub-text-color);
}
.login-first-wrap-btn input{
    width: 40%;
    height: 55px;
    background-color: var(--main-color);
    font-size: 18px;
    font-family: var(--manrope-bold);
    border: none;
    color: var(--white);
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-first-wrap-btn input:hover{
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.login-first-last-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.login-first-last-text p{
    font-size: 18px;
    font-family: var(--poppins-regular);
    color: #000;
}
.login-first-last-text a{
    font-size: 18px;
    font-family: var(--poppins-regular);
    color: var(--main-color);
    transition: 0.3s all;
}
.login-first-last-text a:hover{
    color: var(--sub-text-color);
}
/* LOGIN-CSS-END-HERE */
/* REGISTER-CSS-START-FROM-HERE */
.register-first-wrapper{
    padding: 200px 0px 200px;
    text-align: center;
}
.register-first-wrap-input input{
    width: 40%;
    height: 50px;
    border: 1px solid #222;
    font-size: 13px;
    font-family: var(--poppins-regular);
    color: #868E96;
    padding: 0px 20px 0px 20px;
    border-radius: 12px;
}
.register-first-wrap-btn input{
    width: 40%;
    height: 55px;
    background-color: var(--main-color);
    font-size: 18px;
    font-family: var(--manrope-bold);
    border: none;
    color: var(--white);
    border-radius: 12px;
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.register-first-wrap-btn input:hover{
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.register-first-last-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.contact-wrapper{
    padding: 200px 0px 200px;
}
.contact-first-wrap-text h2{
    font-size: 35px;
    font-family: var(--manrope-bold);
    color: var(--main-color);
    margin: 0px 0px 10px 0px;
}
.contact-first-wrap-text h6{
    font-size: 23px;
    font-family: var(--poppins-medium);
    color: #000;
    margin: 0px 0px 40px 0px;
}
.contact-first-input input {
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: transparent;
    color: #868E96;
    font-size: 16px;
    font-family: var(--poppins-regular);
    border: none;
    border: 1px solid #000;
    border-radius: 10px 0px 10px 0px;
    transition: 0.5s all;
}
.contact-first-input {
    margin: 0px 0px 30px 0px;
}
.contact-first-input input:focus {
    border: 1px solid var(--main-color);
}
.contact-first-input textarea {
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    background-color: transparent;
    resize: none;
    font-size: 16px;
    font-family: var(--poppins-regular);
    color: #868E96;
    outline: none;
    border: none;
    border: 1px solid #000;
    border-radius: 10px 0px 10px 0px;
    transition: 0.5s all;
}
.contact-first-input textarea:focus{
    border: 1px solid var(--main-color);
}
.contact-first-input button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 50px;
    font-family: var(--manrope-bold);
    font-size: 18px;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 15px;
    transition: 0.3s all;
    border: none;
}
.contact-first-input button:hover {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
/* REGISTER-CSS-END-FROM-HERE */

/* INNER-CSS-START-HERE */

.about-wrapper{
    padding: 200px 0px 200px 0px;
}
.about-wrap-img {
    border: 2px solid var(--main-color);
    margin: 0px 0px 20px 0px;
}
.about-wrap-text h6{
    font-family: var(--manrope-bold);
    font-size: 50px;
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.about-wrap-text span{
    color: var(--main-color);
}
.about-wrap-text h5{
    font-size: 18px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 20px 0px;
}
.about-wrap-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 20px 0px;
    line-height: 2;
}
.about-wrap-text {
    width: 90%;
}
.about-img-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    line-height: 2;
}
.about-img-text span{
    color: var(--main-color);
}
.about-wrap-text-box{
    width: 70%;
    margin: 50px auto 0 auto;
    backdrop-filter: blur(10px);
    background: rgb(189 182 177 / 11%);
    padding: 30px;
    border-radius: 50px;
}
.about-wrap-text-1 p{
    font-size: 14px;
    font-family: var(--manrope-bold);
    color: #494369;
    text-align: center;
    margin: 0px 0px 20px 0px;
}
.about-wrap-text-2 h5{
    font-size: 17px;
    font-family: var(--manrope-bold);
    color: var(--heading-color);
    margin: 0px 0px 5px 0px;
}
.about-wrap-text-2 h4{
    font-size: 17px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
}
.about-wrap-text-2 span{
    color: var(--main-color);
}
.about-wrap-text-2 {
    text-align: center;
}
.join-wrapper{
    padding: 200px 0px 200px 0px;
}
.join-wrap-text h6{
    font-family: var(--manrope-bold);
    font-size: 50px;
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.join-wrap-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 50px 0px;
    line-height: 2;
}
.join-wrap-text span{
    color: var(--main-color);
}
.join-wrap-text-1 h5{
    font-size: 25px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 20px 0px;
}
.join-wrap-text-1 p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    line-height: 2;
    color: #58575F;
}
.join-wrap-text-1 ul{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    padding: 0px 0px 0px 40px;
    margin: 20px 0px;
}
.join-wrap-text-1 ul li{
    list-style: disc;
    margin: 5px 0px;
}
.join-wrap-text-1 span{
    color: var(--main-color);
}
.custom-file-input {
    color: transparent;
    margin: 10px 0px;
}
.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}
.custom-file-input::before {
    content: "File Choose";
    font-family: var(--manrope-bold);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    background: var(--main-color);
    padding: 10px 15px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 400;
    outline: none;
}
.custom-file-input:focus {
    outline: none !important;
}
.custom-file-input:active::before {
    transform: scale(.9) translate(0px, 2px);
    box-shadow:  inset 4px 4px 5px 0px rgba(0, 0, 0, 0.20);
}
.join-wrap-box-text h5{
    font-size: 25px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 20px 0px;
}
.join-wrap-input h2{
    font-size: 16px;
    font-family: var(--manrope-bold);
    color: #494369;
}
.join-wrap-input p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 10px 0px;
}
.join-wrap-input button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 50px;
    font-family: var(--manrope-bold);
    font-size: 18px;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 15px;
    transition: 0.3s all;
    border: none;
}
.join-wrap-input button:hover {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.join-wrap-main-box {
    padding: 40px;
    border: 2px solid var(--main-color);
    border-radius: 15px;
}
.join-wrap-text h4 {
    font-size: 25px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 10px 0px;
}
.blog-wrapper{
    padding: 200px 0px 200px 0px;
}
.blog-wrap-box h5{
    font-size: 25px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 10px 0px;
    transition: 0.2s all;
}
.blog-wrap-box h2{
    font-size: 16px;
    font-family: var(--poppins-medium);
    color: var(--main-color);
    margin: 0px 0px 10px 0px;
    transition: 0.2s all;
}
.blog-wrap-box p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 10px 0px;
}
.blog-wrap-box a{
    font-size: 16px;
    font-family: var(--poppins-medium);
    color: var(--main-color);
    transition: 0.2s all;
}
.blog-wrap-box {
    padding: 30px;
    border-radius: 15px;
    background-color: #FFFFFFB2;
    border: 1.25px solid #f25f0026;
    backdrop-filter: blur(15px);
    margin: 0px 0px 15px 0px;
}
.blog-wrap-box:hover a{
    color: #332C5C;
}
.blog-wrap-box:hover h2{
    color: #332C5C;
}
.blog-wrap-box:hover h5{
    color: var(--main-color);
}
.blog-inner-b2b{
    padding: 200px 0px 200px 0px;
}
.blog-inner-b2b-main-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    line-height: 2;
    color: #58575F;
    margin: 0px 0px 10px 0px;
}
.blog-inner-b2b-main-text h5{
    font-size: 17px;
    font-family: var(--manrope-bold);
    color: var(--heading-color);
    margin: 0px 0px 10px 0px;
}
.blog-inner-b2b-main-text ul{
    padding: 0px 0px 0px 40px;
}

.blog-inner-b2b-main-text ul li{
    font-family: var(--manrope-bold);
    font-size: 14px;
    line-height: 2;
    color: #58575F;
    list-style: disc;
}
.blog-inner-b2b-main-text h4{
    font-family: var(--manrope-bold);
    font-size: 16px;
    color: #58575F;
    margin: 0px 0px 10px 0px;
}
.blog-inner-b2b-main-text span{
    color: var(--main-color);
}
.work-wrap-img img{
    border: 2px solid var(--main-color);
}
.work-wrap-text-1 h5{
    font-size: 25px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 30px 0px;
}
.work-wrap-text-1 p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    line-height: 2;
    color: #58575F;
}
.feature-first-wrapper {
    padding: 200px 0px 100px 0px;
}
.feature-first-wrap-text h6{
    font-size: 38px;
    font-family: var(--poppins-bold);
    color: #000000;
}
.feature-first-wrap-text h6 span{
    color: var(--main-color);
}
.feature-second-wrapper{
    padding: 0px 0px 200px 0px;
}
.feature-second-wrap-head h6{
    font-size: 20px;
    font-family: var(--poppins-bold);
    color: var(--white);
    background-color: var(--main-color);
    padding: 10px 0px 10px 20px;
    margin: 0px 0px 20px 0px;
}
.custom-accordian .accordion-item .accordion-button{
    background-color: var(--white);
    border: 1px solid #EEEEEE;
    color: var(--main-color);
    padding: 25px 20px 25px 25px;
    gap: 20px;
}
.custom-accordian .accordion-button:not(.collapsed){
    color: var(--main-color);
}
.custom-accordian .accordion-button:focus{
    box-shadow: none;
}
.custom-accordian .accordion-button::after{
    display: none;
}
.custom-accordian .accordion-body{
    padding: 10px 20px 10px 20px;
    background-color: #f5f6f7;
    border: 1px solid #EEEEEE;
}
.custom-accordian .accordion-item {
    margin: 0px 0px 5px 0px;
}
.feature-second-wrap-acco-text h6 {
    font-size: 16px;
    font-family: var(--poppins-bold);
}
.feature-second-wrap-acco-list ul{
    padding: 0px 0px 0px 20px;
}
.feature-second-wrap-acco-list ul li{
    font-size: 14px;
    font-family: var(--poppins-regular);
    color: var(--main-text-color);
    list-style: disc;
}
.solution-wrapper{
    padding: 200px 0px 50px 0px;
}
.solution-wrap-text h6{
    font-family: var(--manrope-bold);
    font-size: 50px;
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.solution-wrap-text span{
    color: var(--main-color);
}
.solution-wrap-text h5 {
    font-size: 20px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 10px 0px;
}
.solution-wrap-text p {
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 50px 0px;
    line-height: 2;
}
.solution-wrap-text a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 55px;
    font-family: var(--manrope-bold);
    font-size: 16px;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 15px;
    transition: 0.3s all;
    border: none;
}
.solution-wrap-text a:hover {
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
    transition: 0.3s all;
}
.solution-wrap-img img{
    animation:spin 100s linear infinite;
}
.solution-first-wrapper{
    padding: 100px 0px 200px 0px;
}
.solution-first-wrap-text{
    text-align: center;
}
.solution-first-wrap-text h6{
    font-size: 38px;
    font-family: var(--poppins-bold);
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.solution-first-wrap-text span{
    color: var(--main-color);
}
.solution-first-wrap-text p{
    font-family: var(--manrope-bold);
    font-size: 14px;
    color: #58575F;
    margin: 0px 0px 50px 0px;
    line-height: 2;
    margin: 0px auto 50px auto;
    width: 70%;
}
.accordion-button::after{
    display: none;
}
.solution-fisrt-wrap-acco-text h6{
    font-family: var(--poppins-bold);
    font-size: 16px;
}
.custom-accordian-solution .accordion-item .accordion-button {
    background-color: var(--main-color);
    border: 1px solid #EEEEEE;
    color: var(--white);
    padding: 15px 20px 15px 25px;
    gap: 20px;
    box-shadow: none;
}
.custom-accordian-solution .accordion-button:not(.collapsed) .show{
    display: none;
}
.custom-accordian-solution .accordion-button:not(.collapsed) .hide{
    display: block;
}
.hide{
    display: none;
}
.solution-fisrt-wrap-acco-list p{
    font-family: var(--poppins-regular);
    color: var(--main-text-color);
    font-size: 14px;
}
.solution-first-wrap-accordians .accordion-body{
    background: #FFFFFF;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.11);
}
.solution-icon {
    font-size: 20px;
}
.solution-first-wrap-img img{
    border: 2px solid var(--main-color);
}
.custom-accordian-solution .accordion-item .accordion-button:hover{
    background-color: var(--white);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.solution-second-wrapper,
.solution-fourth-wrapper,
.solution-third-wrapper,
.solution-fifth-wrapper,
.solution-sixth-wrapper{
    padding: 50px 0px 200px 0px;
}
.feature-second-wrap-acco-icon {
    width: 10%;
}
/* INNER-CSS-END-HERE */

.footer-wrapper{
    background-color: #F25F001A;
}
.footer-logo p{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: var(--heading-color);
    margin: 20px 0px 20px 0px;
    width: 80%;
}
.footer-logo ul{
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-logo ul li a{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    opacity: 0.4;
    background-color: #F25F00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: 0.5s all;
}
.footer-logo ul li a:hover{
    opacity: 1;
}
.footer-logo ul li a i {
    transition: 0.5s all;
}
.footer-logo ul li a:hover i {
    transform: rotate(360deg);
}
.footer-logo ul li a img{
    transition: 0.5s all;
}
.footer-logo ul li a:hover img {
    transform: rotate(360deg);
}
.footer-link h6{
    font-size: 18px;
    font-family: var(--poppins-bold);
    color: var(--heading-color);
    margin: 0px 0px 20px 0px;
}
.footer-link ul li a{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: #494369;
    line-height: 2;
    position: relative;
}
.footer-link ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform-origin: left;
    bottom: 3%;
    transform: scale(0);
    transition: 0.5s all;
}
.footer-link ul li a:hover::before{
    transform: scale(1);
}
.footer-main-box {
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer-box {
    width: 500px;
    height: 190px;
    background: #F25F00;
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0px, -100px);
    border-radius: 35px;
    text-align: center;
    flex-direction: column;
}
.footer-box-text h6{
    font-size: 20px;
    font-family: var(--poppins-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.footer-box-text p{
    font-size: 12px;
    font-family: var(--nunitoSans-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.footer-box-flex{
    background: #FFFFFF;
    border-radius: 10px;
    width: 300px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px 0px 10px;
}
.footer-box-input{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-box-input i{
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    width: 18px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 5px;
}
.footer-box-input input{
    font-size: 12px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
    display: flex;
    border: none;
    height: 50px;
    width: 80%;
}
.footer-box-input-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 35px;
    border-radius: 8px;
    background-color: var(--main-color);
    font-size: 12px;
    font-family: var(--nunitoSans-bold);
    color: var(--white);
    transition: 0.3s all;
}
.footer-box-input-btn a:hover {
    background-color: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.copyright {
    padding: 50px 0px 30px 0px;
}
.copyright-text a{
    font-size: 14px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
}
.copyright-links{
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright-links h4{
    font-size: 14px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
    margin: 7px 0px 0px 0px;
}
.copyright-links ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright-links ul li a{
    font-size: 14px;
    font-family: var(--nunitoSans-bold);
    color: #5E587A;
}
.copyright-text-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes spin {
     100% {
         transform: rotate(360deg);
          transform:rotate(360deg);
    }
}
