
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Manrope:wght@200..800&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url("../fontawesome/css/all.css");
@import url("owl.carousel.min.css");
@import url("aos.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/ajax-bootstrap-select/1.4.5/css/ajax-bootstrap-select.min.css");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
    --white: #ffffff;
    --primary: #d8102a;
    --black: #252525;
    --grey: #777777;
    --grey-light: #e2e2e2;
}
body {
    width: 100%;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #c2c2c2;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #9c9c9c;
}
p {
    font-size: 0.875rem;
    color: var(--black);
    letter-spacing: 0.4px;
    line-height: 25px;
    text-align: justify;
}
a {
    transition: all 0.3s ease-in-out;
}
ul {
    margin: 0px;
    padding: 0px;
}
.pdl {
    padding-left: 60px;
}
.pdr {
    padding-right: 60px;
}
.bg-body-tertiary {
    background-color: var(--white) !important;
}
.navbar {
    padding: 2px 30px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 4%);
    z-index: 100;
}
.main-header .navbar .navbar-brand img{
    width: 164px;
}
.navbar.fixed {
    width: 100%;
    background-color: #fff !important;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1050;
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 8%);
    animation: fadeInDown 500ms linear;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
/*.navbar.fixed .logo {
    height: 50px !important;
}*/
.navbar .navbar-nav {
    margin-right: 40px;
    column-gap: 1px;
}
.navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 23px 11px;
    letter-spacing: 0.5px;
}
.navbar .navbar-nav .nav-link span {
    color: #d8102a;
    font-weight: 600;
}
.navbar .navbar-nav .nav-link::after {
    display: block;
    content: "";
    border-bottom: solid 2px #d8102a;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}
.navbar .navbar-collapse {
    justify-content: space-between;
}
.navbar .dropdown-toggle::after {
    border: none;
}
.demo-login-btn {
    display: flex;
    column-gap: 1rem;
}
.demo-login-btn li {
    list-style: none;
}
.demo-btn {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #d8102a;
    transition: all 0.3s ease-in-out;
    background-color: #d8102a;
    color: var(--white);
}
.demo-btn.demo-btn1 {
    background-color: #fff;
    border-color: #fff;
    color: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: 181px;
    margin: 0px auto;
}
.demo-btn.demo-btn1:hover {
    background-color: #dddddd;
    border-color: #dddddd;
}
.demo-btn:hover {
    background-color: #c71b32;
}
.border-btn {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--grey-light);
    color: var(--black);
}
.border-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.navbar .dropdown-menu {
    padding: 0px;
    border: none;
    border-radius: 4px;
    box-shadow: rgba(72, 73, 121, 0.15) 2px 0px 12px 0px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(15px);
    z-index: 100;
}
.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(3px);
}
.navbar .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: var(--black);
    padding: 8px 10px;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #f5f5f5;
}
.navbar .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}
.navbar .dropdown-menu li:first-child .dropdown-item {
    border-radius: 4px 4px 0px 0px;
}
.navbar .dropdown-menu li:last-child .dropdown-item {
    border-radius: 0px 0px 4px 4px;
}
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
}
.navbar .navbar-collapse {
    justify-content: flex-end;
}
section {
    width: 100%;
    padding: 3rem 0;
}
.banner-sect {
    width: 100%;
    background-image: linear-gradient(to right, rgb(74 63 63 / 70%), rgb(123 51 51 / 50%)), url(../images/banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 77px;
    padding: 3rem 0;
}
.banner-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 45px;
    color: var(--white);
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 1rem;
    line-height: 26px;
    color: var(--white);
}
.title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 16px;
}
.title1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 30px;
    color: var(--black);
    margin-bottom: 12px;
}
.title2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 30px;
    color: var(--black);
    margin-bottom: 12px;
}
.title-sm {
    font-size: 1rem;
    font-weight: 600;
    line-height: 25px;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: capitalize;
}
.main-header {
    width: 100%;
}
.top-header {
    width: 100%;
    padding: 8px 30px;
    /* background-image: linear-gradient(to right, rgb(119, 14, 14) , rgb(235, 86, 86)); */
    background-image: linear-gradient(to right, rgb(212, 29, 49), rgb(179, 10, 29));
}
.top-info-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
}
/*----------------top---hdr----social---icon---wrap----start------------------------*/
.tp-hdr-scl-link {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    float: right;
}
.tp-hdr-scl-link li {
    list-style: none;
    background-color: rgba(232, 232, 240, 0.2);
    width: 25px;
    height: 25px;
    text-align: center;
    transition: 0.2s all;
}
.tp-hdr-scl-link li:hover {
    background-color: #242732;
}
.tp-hdr-scl-link li a {
    color: #f7f7f7;
    font-size: 13px;
    text-shadow: 2px 1px 0px #26262661;
}
/*--------------------top---hdr----social---icon---wrap----end--------------------*/
.hdcontinfo {
    justify-content: end;
}
.top-info-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
}
.top-info-list li {
    border-right: 2px solid #eeeeee70;
    padding-right: 8px;
    margin-right: 3px;
    color: #fff;
}
.top-info-list li:nth-child(3) {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
}
.top-info-list li a {
    font-size: 0.813rem;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
}
.carousel.slide .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
/* .main-slide .item::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 50%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
} */
.slide .carousel-caption {
    bottom: 40%;
}
.main-slide .item img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
}
.main-slide .item {
    position: relative;
}
/*** 
====================================================================
    Banner Section
====================================================================
***/
.banner-section {
    width: 100%;
    height: 500px;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    padding-bottom: 80px;
    /* background-image: -webkit-linear-gradient(left, #4D32F7 0%, #17c9fc 100%);
    background-image: linear-gradient(to right, #4D32F7 0%, #17c9fc 100%); */
    background-image: linear-gradient(to right, #4a1521c2 0%, #04273ceb 100%), url(../images/slide/slide1.webp);
}
.banner-section .patern-layer-one {
    position: absolute;
    left: 0px;
    top: 200px;
    width: 293px;
    height: 543px;
    z-index: 1;
    background-repeat: no-repeat;
}
.banner-section .patern-layer-two {
    position: absolute;
    left: 10%;
    top: 25%;
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
}
.banner-section .patern-layer-three {
    position: absolute;
    right: 10%;
    top: 0%;
    width: 643px;
    height: 304px;
    background-repeat: no-repeat;
}
.banner-section .icons {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}
.banner-section .inner-column {
    text-align: center;
}
.banner-section .icons .icon-one {
    position: absolute;
    left: 10% !important;
    top: 17% !important;
    width: 316px;
    height: 590px;
    display: inline-block;
    background-repeat: no-repeat;
}
.banner-section .image-column {
    position: relative;
}
.banner-section .image-column .inner-column {
    position: relative;
    text-align: center;
}
.banner-section .image-column .image {
    position: relative;
}
.banner-section .image-column .image img {
    position: relative;
}
.banner-section .content-column {
    position: relative;
    z-index: 1;
}
.banner-section .content-column .inner-column {
    position: relative;
    padding-top: 40px;
}
.banner-section .content-column h3 {
    position: relative;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
/* .banner-section .content-column h3::first-letter{
    color: var(--primary);
} */
.banner-section .inner-column h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.banner-section .content-column .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}
.btn-style-two {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 28px;
    color: #ffffff;
    padding: 9px 16px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 5px;
    overflow: hidden;
    background-color: #d8102a;
    text-transform: capitalize;
    text-decoration: none;
}
.btn-style-two:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #302d2d;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
}
.btn-style-two .txt {
    position: relative;
    z-index: 1;
}
.btn-style-two:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn-style-two:hover {
    color: #ffffff !important;
}
.free-demo-btn {
    font-size: 0.875rem;
    border: none;
    border-radius: 6px;
}
.crm-feature-block {
    width: 100%;
    padding-top: 0rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}
.feature-row .feature-card-box {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
    align-items: center;
    box-shadow: 0px 0px 10px #ddd;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease-out;
    background-color: var(--white);
}
.feature-row .feature-card-box:hover {
    background-color: #e98c7c;
    background-image: linear-gradient(to right, rgb(224, 19, 19), rgb(255 91 91));
    color: #fff;
}
.feature-card-box:hover h4,
.feature-card-box:hover p {
    color: #fff;
}
.ficon {
    /* width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    background-color: #f9a89a;
    color: var(--white); */
}
.ficon img {
    width: auto;
    height: 50px;
}
.ficon i {
    font-size: 20px;
}
.feature-card-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}
.feature-card-box p {
    margin-bottom: 0px;
}
.about-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    margin-top: 1.5rem;
}
.about-thumb-box {
    padding: 20px 10px 15px;
    box-shadow: 0px 2px 8px #e9e9e9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    background-color: #fff;
    border-top: 2px solid #d41d31;
}
/* .about-thumb-box.box1{
    background-color: #f37b6a;
}
.about-thumb-box.box2{
    background-color: #6e7feb;
}
.about-thumb-box.box3{
    background-color: #009eb5;
} */
.about-thumb-box:hover {
    transform: translateY(-5px);
}
.about-thumb-box img {
    width: auto;
    height: 40px;
    transition: all 300ms ease;
}
.about-thumb-box:hover img {
    transform: rotateY(190deg);
}
.about-thumb-box h5 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 10px;
    color: #37383c;
}
.what-we-offer-sect {
    /* background-image: linear-gradient(to right, rgba(44, 13, 13, 0.932), rgba(88, 19, 19, 0.911), rgba(50, 7, 7, 0.897)), url(../images/bg1.webp); */
    background-image: linear-gradient(100deg, rgb(120 22 22 / 89%) 10%, rgb(68 19 19 / 93%) 20%, rgb(64 4 4 / 91%) 100%), url(../images/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 0 2rem;
    position: relative;
    margin-top: 2rem;
    background-attachment: fixed;
    z-index: 10;
}
.what-we-offer-sect::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/pattern-7.webp);
    background-repeat: repeat;
    opacity: 0.1;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.what-we-offer-sect::before {
    content: "";
    width: 100%;
    height: 60px;
    background-image: url("../images/pattern-8.webp");
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    left: 0px;
}





.abt-pick-card {
    padding-top: 0rem;
}
.main-busnis-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.main-busnis-card .busines-solution-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
    column-gap: 5px;
    margin-bottom: 12px;
    background-color: var(--white);
    padding: 15px 14px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.main-busnis-card .busines-solution-list:hover {
    transform: translateY(-10px);
}
.busines-content .busines-solution-list .bs-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #ffe1ed;
    color: #ff69a5;
    border-radius: 50%;
    text-align: center;
}
.busines-content .busines-solution-list:nth-child(2) .bs-icon {
    color: #cc58ff;
    background-color: #f8e8ff;
}
.busines-content .busines-solution-list:nth-child(3) .bs-icon {
    color: #29e3be;
    background-color: #e4fff8;
}
.busines-content .busines-solution-list:last-child .bs-icon {
    color: #2498ff;
    background-color: #0ebfff30;
}
.bs-icon i {
    font-size: 28px;
}
.busines-solution-list h5 {
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
}
.busines-solution-list p {
    margin-bottom: 0px;
    font-size: 0.813rem;
}
.business-pick {
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin: 0px auto;
}
.business-pick::before {
    content: "";
    height: 300px;
    width: 55%;
    background-color: #ff7487;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: -1;
}
.business-pick::after {
    content: "";
    height: 300px;
    width: 55%;
    background-color: #ff7487;
    clip-path: polygon(100% 5%, 0% 100%, 100% 100%);
    position: absolute;
    bottom: -6px;
    right: -6px;
    z-index: -1;
}
.business-pick img {
    max-height: 600px;
    object-fit: cover;
    box-shadow: 0px 0px 10px 0px #00000011;
}
.integrations-sect {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../images/social-bg2.webp);
    padding: 45px 0px 110px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
}
/* .integrations-sect::before {
    content: '';
    width: 500px;
    height: 500px;
    background-image: url(../images/pattern-4.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: -250px;
    top: -120px;
    z-index: -1;
} */
.integrat-box {
    width: 100%;
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 10px;
    margin-bottom: 12px;
}
.integrat-box .integ-icon img {
    width: auto;
    height: 80px;
}
.integrat-box h5 {
    font-size: 1.125rem;
    font-weight: 600;
}
.integrations-sect {
    position: relative;
}
.integrat-content .title {
    font-size: 1.8rem;
}
.circle-wrap-card {
    max-width: 360px;
    margin: 40px auto 10px;
    position: relative;
}
.circle-box-1 {
    width: 350px;
    height: 350px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    border: 5px solid #c0c4c83d;
    border-radius: 100%;
    background-color: #f7f5f5;
}
.circle-anim-card.anim-circle1 {
    animation-name: circleAnim1;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.circle-box-2 {
    width: 250px;
    height: 250px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 20%);
    border: 3px solid #c0c4c83d;
    border-radius: 100%;
    background-color: #f7f5f5;
}
.circle-anim-card.anim-circle2 {
    animation-name: circleAnim;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes circleAnim1 {
    0% {
        transform: translate(-50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%) rotate(360deg);
    }
}
@keyframes circleAnim {
    0% {
        transform: translate(-50%, 20%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, 20%) rotate(360deg);
    }
}
.anim-circle1 {
    width: 350px;
    height: 350px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%);
}
.anim-circle2 {
    width: 250px;
    height: 250px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, 20%);
}
.circle-anim-card img {
    width: auto;
    height: 45px;
}
.circle-anim-card.anim-circle1 img,
.circle-anim-card.anim-circle2 img {
    position: absolute;
    transition: all 0.2s ease-in-out;
}
.circle-anim-card.anim-circle1 img {
    animation-name: circleImg;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.circle-anim-card.anim-circle2 img {
    animation-name: circleImg;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes circleImg {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.circle-anim-card ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.anim-circle1 ul li {
    position: absolute;
    transition: all 0.2s ease-in-out;
}
.anim-circle1 ul li:first-child {
    left: 100px;
    top: -7px;
}
.anim-circle1 ul li:nth-child(2) {
    right: 24px;
    top: 125px;
}
.anim-circle1 ul li:nth-child(3) {
    right: 143px;
    bottom: 30px;
}
.anim-circle1 ul li:last-child {
    left: -13px;
    top: 198px;
}
.anim-circle2 ul li {
    position: absolute;
    transition: all 0.2s ease-in-out;
}
.anim-circle2 ul li:first-child {
    left: -8px;
    top: 57px;
}
.anim-circle2 ul li:nth-child(2) {
    right: 79px;
    top: 3px;
}
.anim-circle2 ul li:nth-child(3) {
    right: 39px;
    bottom: 84px;
}
.anim-circle2 ul li:last-child {
    left: 24px;
    bottom: 53px;
}
.krs-logo-icon {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, 224%);
}
.krs-logo-icon img {
    width: auto;
    height: 60px;
}
.why-choose-us-sect {
    position: relative;
    z-index: 10;
    padding: 40px 35px 35px;
    background-color: #fff;
}
.why-choose-us-sect::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/pattern-7.webp");
    background-repeat: repeat;
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.4;
}
.why-chose-pick {
    position: relative;
}
.why-chose-pick::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/pattern-6.webp");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    position: absolute;
    top: 40px;
    right: -30px;
    opacity: 1;
}
.title-head.whys-head {
    max-width: 520px;
    margin-bottom: 2rem;
}
.why-chose-card {
    max-width: 540px;
}
.why-chose-card ul {
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.why-chose-card ul li {
    min-height: 120px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 12px;
    text-align: center;
    grid-template-columns: 50px 1fr;
    column-gap: 15px;
    padding: 15px 16px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.why-chose-card ul li:first-child {
    border-radius: 10px 0px 0px 0px;
    box-shadow: rgba(146, 146, 151, 0.2) -3px -4px 9px 0px;
}
.why-chose-card ul li + li {
    border-radius: 0px 10px 0px 0px;
    box-shadow: rgba(146, 146, 151, 0.2) 4px -4px 9px 0px;
}
.why-chose-card ul li + li + li {
    border-radius: 0px 0px 0px 10px;
    box-shadow: rgba(146, 146, 151, 0.2) -4px 6px 9px 0px;
}
.why-chose-card ul li + li + li + li {
    border-radius: 0px 0px 10px 0px;
    box-shadow: rgba(146, 146, 151, 0.2) 4px 3px 9px 0px;
}
.why-chose-card ul li:hover {
    background-color: var(--primary);
    color: var(--white);
}
.why-chose-card img {
    width: auto;
    height: 50px;
}
.why-chose-card h5 {
    font-size: 0.913rem;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.why-chose-card p {
    font-size: 0.875rem;
    margin-bottom: 0px;
}
.right-shape1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(255 32 32 / 2%);
    /* border-radius: 0px 0px 70% 0px; */
    z-index: -1;
}
.feature-sect {
    position: relative;
    padding: 30px 35px 0px;
}
.feature-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}
.process-card {
    max-width: 375px;
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    column-gap: 10px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 2px 12px 0px #e4e4e4;
    padding: 10px 14px;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.process-card:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateX(-8px);
}
.feature-card .process-card .aws-icon {
    width: 46px;
    height: 46px;
    /* border-radius: 50%; */
    border-radius: 0px 40px 40px 40px;
    background-color: #fddcdc;
    box-shadow: 0px 0px 0px 5px #ffe8e800;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 50px;
}
.feature-card .process-card:nth-child(2) .aws-icon {
    background-color: #c6fff4;
}
.feature-card .process-card:nth-child(3) .aws-icon {
    background-color: #c8eeff;
}
.feature-card .process-card:nth-child(4) .aws-icon {
    background-color: #d0cdff;
}
.feature-card .process-card:nth-child(4) .aws-icon {
    background-color: #ffd2d2;
}
.feature-card .process-card:nth-child(5) .aws-icon {
    background-color: #ffcffd;
}
.feature-card .process-card:nth-child(6) .aws-icon {
    background-color: #c8d2ff;
}
.feature-card .process-card:nth-child(7) .aws-icon {
    background-color: #fddcdc;
}
.feature-card .process-card:nth-child(8) .aws-icon {
    background-color: #c6fff4;
}
.feature-card .process-card:nth-child(9) .aws-icon {
    background-color: #c8d2ff;
}
.feature-card .process-card:nth-child(10) .aws-icon {
    background-color: #ffcffd;
}
.feature-image-card {
    padding: 1rem;
}
.process-card .aws-icon img {
    width: auto;
    height: 28px;
}
.process-card h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--black);
}
.process-card:hover h5 {
    color: var(--white);
}
.feature-card.rgt-box .process-card:hover {
    transform: translateX(-10px);
}
.feature-card.rgt-box .process-card:first-child {
    margin-left: -40px;
}
.feature-card.rgt-box .process-card:nth-child(2) {
    margin-left: -10px;
}
.feature-card.rgt-box .process-card:nth-child(3) {
    margin-left: -4px;
}
.feature-card.rgt-box .process-card:last-child {
    margin-left: -40px;
}
.feature-card.lft-box .process-card:first-child {
    position: relative;
    right: -50px;
    /* margin-right: -50px; */
}
.feature-card.lft-box .process-card:nth-child(2) {
    margin-right: -10px;
}
.feature-card.lft-box .process-card:nth-child(3) {
    margin-right: 4px;
}
.feature-card.lft-box .process-card:last-child {
    position: relative;
    right: -50px;
}
.count-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.count-up i {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}
.count-num {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3px;
}
.count-num span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
}
/*==================counter-------wrap--------start=============================*/
.fun-fact-sctn {
    position: relative;
    margin-top: -90px;
    padding: 0px;
}
.fun-fact-sctn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: #fdfdfd;
    content: "";
}
.fun-fact-sctn .fact-counter {
    /* position: relative; */
    height: 250px;
}
.fun-fact-sctn .fact-counter::before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1000%;
    background-color: #e7e8ea;
    background-image: url(../images/counter-pttrn.webp);
    background-repeat: repeat;
    content: "";
}
.counter-block-two {
    position: relative;
    padding-top: 40px;
}
.counter-block-two .inner {
    position: relative;
    /*  padding-left: 76px;*/
    min-height: 60px;
    transition: all 300ms ease;
    text-align: center;
}
.counter-block-two .icon {
    /*position: absolute;
    left: 0;
    top: 0;*/
    color: #d41d31;
    font-size: 45px;
    line-height: 77px;
    border-radius: 8px;
    transition: all 300ms ease;
    z-index: 1;
    margin-bottom: 15px;
    background-color: #34333912;
    width: 85px;
    height: 77px;
}
.counter-block-two .count-box .count-text {
    font-size: 42px;
    color: #242731;
    font-weight: 600;
    line-height: 1em;
}
.counter-block-two .counter-title {
    display: block;
    font-size: 12px;
    line-height: 17px;
    color: #434448;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: 8px;
}
.counter-block-two .inner:hover .icon {
    transform: scale(1.1);
}
/*======================counter------wrap--------end===================*/
.testimonials {
    position: relative;
    padding: 35px 35px 20px;
}
.testimonials::before {
    content: "";
    width: 450px;
    height: 500px;
    background-image: url(../images/pattern-4.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: -250px;
    top: -120px;
    z-index: -1;
}
.testimonials::after {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
    background: rgba(255, 0, 0, 3%);
    border-radius: 0px 0px 0px 96%;
}
.testim-content .quote-icon {
    width: 60px !important;
    position: absolute;
    top: 75px;
    left: 35px;
    z-index: 1;
}
.testim-content {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    position: relative;
}
.testim-content {
    background-color: #fff;
    padding: 1.2rem 3rem 1rem;
    box-shadow: 0px 2px 10px #ddd;
    position: relative;
    min-height: 302px;
    border-radius: 10px;
    text-align: center;
}

.client-description p{
    text-align: left;
}


/* .testim-content::after{
    content: "";
    width: 450px;
    height: 450px;
    position: absolute;
    left: 26px;
    bottom: -29px;
    z-index: -2;
    background: rgba(255, 0, 0, 0.082);
    border-radius: 0px 60% 0px 0px;
} */
.client-pick img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin: 0px auto 15px;
}
.client-testimonial .item {
    padding: 20px 8px;
}
.client-description h4 {
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin: 10px auto 30px;
    color: var(--black);
}
.client-descriptio p {
    font-size: 0.813rem;
}
.client-description h4::before {
    content: "";
    background: rgb(231, 67, 67);
    border-radius: 10px;
    width: 50%;
    height: 4px;
    position: absolute;
    left: 15%;
    bottom: -15px;
    z-index: 1;
}
.client-description h4::after {
    content: "";
    background: rgb(231, 67, 67);
    border-radius: 10px;
    width: 14%;
    height: 4px;
    position: absolute;
    left: 72%;
    bottom: -15px;
    z-index: 1;
}
/*--- footer ---*/
footer {
    width: 100%;
    padding: 3rem 35px 2rem;
    background-color: #252525;
    background-image: linear-gradient(rgb(37 38 40 / 95%), rgb(37 38 40 / 82%)), url(../images/footer.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
}
.footer-card img {
    width: auto;
    height: 60px;
    margin-bottom: 15px;
}
.footer-card p {
    font-size: 0.875rem;
    color: #e7e7e7;
    font-weight: 300;
}
.footer h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.2rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.footer h4::after {
    content: "";
    background: rgb(231, 67, 67);
    border-radius: 6px;
    width: 40px;
    height: 3px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    z-index: 1;
}
.footer-item {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.footer-item li {
    color: #e7e7e7;
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 5px;
}
.contact-list li {
    display: flex;
    column-gap: 5px;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}
.contact-list li i {
    margin-top: 5px !important;
}
.footer-item li a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #e7e7e7;
    padding: 2px 0px;
    display: flex;
}
.footer-item li a:hover {
    color: #c71b32;
}
.footer-item li i {
    margin-top: 4px;
    margin-right: 4px;
    font-size: 10px;
}
.footer-item li span {
    text-align: left;
}
.copyright {
    padding: 12px 0px;
    background-color: #252628;
}
.copyright p {
    font-weight: 400;
    color: #e7e7e7;
    margin-bottom: 0px;
    font-size: 0.813rem;
    text-align: center;
}
.copyright p a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}
.social-links {
    display: flex;
    column-gap: 10px;
    margin-top: 12px;
}
.social-links li {
    list-style: none;
}
.social-links li a {
    font-size: 14px;
    text-decoration: none;
    color: #d4d4d4;
    transition: all 0.3s ease-in-out;
}
.social-links li a:hover {
    background-color: #c71b32;
    color: var(--white);
}
.social-links li i {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    position: relative;
    border-radius: 4px;
    background-color: #393c40a3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
}
.social-links li i:hover {
    background-color: #c71b32;
    color: var(--white);
}
.flow-us-text {
    margin-bottom: 0px !important;
    font-size: 16px !important;
    color: #d4d4d4;
}
#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    background-color: rgb(187, 14, 14);
    color: #fff;
    display: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#scroll i {
    font-size: 18px;
}
.btn-whatsapp-pulse {
    position: fixed;
    bottom: 70px;
    right: 15px;
    width: 48px;
    height: 48px;
    background-color: #1c9b13;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    z-index: 105;
    margin-right: 6px;
}
.btn-whatsapp-pulse::after {
    background: rgba(30, 172, 45, 0.4);
}
.btn-whatsapp-pulse::after,
.btn-whatsapp-pulse::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    background: #1c9b13;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: grow 1.3s ease-in-out infinite;
    animation: grow 1.3s ease-in-out infinite;
}
@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
#freeDemoModal .modal-dialog {
    max-width: 860px;
    border-radius: 16px;
}
#freeDemoModal .modal-header {
    border-bottom: none;
    padding: 0px;
}
#freeDemoModal .modal-body {
    padding-top: 0px;
}
#freeDemoModal .modal-content {
    border-radius: 16px;
}
.paid-pakge-demo-modal {
  width: 100%;
  padding: 7px 7px 20px 10px;
  margin: auto 0px auto auto;
}
.modal .modal-header .btn-close {
    position: relative;
    top: 6px;
    right: 15px;
    z-index: 10;
    box-shadow: none;
    font-size: 14px;
}
.free-demo-form h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    background: linear-gradient(to right, #d8102a 0%, #d8102a 100%);
    padding: 18px 20px 58px;
    border-radius: 5px 5px 0 0;
    color: #fff;
    text-align: center;
}
.free-demo-form form {
    border-radius: 50px 0 5px 5px;
    position: relative;
    margin-top: -60px;
    background: #fff;
    padding: 29px 25px 22px;
    border: 1px solid #ddd;
}
.free-demo-form input,
.free-demo-form select {
    height: 41px;
    color: var(--grey);
    padding-left: 46px;
    font-size: 12px;
}
.free-demo-form input:focus,
.free-demo-form select:focus,
.free-demo-form textarea:focus {
    box-shadow: none;
}
.free-demo-form textarea {
    font-size: 0.813rem;
    color: var(--grey);
    resize: none;
}
.free-demo-form label {
    font-size: 0.813rem;
    margin-bottom: 4px;
}
.free-demo-form label span {
    color: var(--primary);
}
.free-demo-form button {
    border: none;
    font-size: 0.875rem;
    padding: 3px 14px 5px;
}
small.help-block {
    color: #f70a0a;
    font-size: 12px;
    position: relative;
    top: 0px;
    left: 0px;
}
/*------ Inner Pages -----*/
.breadcumb-area {
    width: 100%;
    background-color: #ccc;
    background-image: linear-gradient(rgb(26 30 34 / 97%), rgb(18 17 17 / 85%)), url(../images/inner-bg1.webp);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    padding: 70px 40px;
}
.breadcumb-area h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0px;
}
.breadcumb-area .breadcrumb {
    justify-content: end;
}
.breadcumb-area .breadcrumb {
    color: var(--white);
    margin-bottom: 0px;
}
.breadcrumb-item {
    color: var(--black);
    font-size: 0.875rem;
}
.breadcrumb-item a {
    color: var(--white);
    font-size: 0.875rem;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.technology-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.4rem;
    row-gap: 1.4rem;
    margin-top: 1.6rem;
}
.tech-content-card p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.techng-boxes {
    padding: 1.2rem 1rem;
    box-shadow: 0px 4px 15px 0px #e1e1e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}
.techng-boxes:hover {
    box-shadow: 0px 8px 40px 0px #cfcfcf;
}
.techng-boxes img {
    width: auto;
    height: 50px;
}
.techng-boxes h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 12px;
    margin-bottom: 0px;
}
.exp-skills-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.exp-skills-content .exp-skills-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    align-items: center;
    box-shadow: 0px 0px 12px 0px #ddd;
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.4s ease-in-out;
}
.exp-skills-content .exp-skills-card:hover {
    box-shadow: 0px 10px 40px 0px #cfcfcf;
}
.exp-skills-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.exp-skills-content .exp-skills-card img {
    width: auto;
    height: 50px;
}
.exp-progress-card {
    width: 100%;
    margin-bottom: 1.4rem;
}
.exp-progress-card .serv-exp {
    display: flex;
    justify-content: space-between;
}
.exp-progress-card .progress {
    height: 7px;
}
.exp-progress-card .progress-bar {
    background-color: var(--primary);
    /* animation: progress 1.5s linear forwards; */
}
@keyframes progress {
    0% {
        width: 0px;
    }
    100% {
        width: 100%;
    }
}
.exp-progress-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}
.exp-progress-card .serv-percentage {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}
.contact-form {
    /* box-shadow: 0px 0px 15px 0px #f1f1f1; */
    background-color: var(--white);
    /* padding: 1rem; */
    border-radius: 4px;
}
.contact-form h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--black);
}
.contact-form input {
    font-size: 0.875rem;
    height: 42px;
    color: var(--grey);
}
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: none;
}
.contact-form textarea {
    font-size: 0.875rem;
    color: var(--grey);
}
.contact-form button {
    border: none;
    font-size: 0.875rem;
    padding: 6px 16px;
}
.contact-form label {
    font-size: 0.875rem;
    margin-bottom: 4px;
}
.contact-form label span {
    color: var(--primary);
}
.contact-info-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.contact-info-card .info-box {
    display: grid;
    grid-template-columns: 60px 1fr;
    /* box-shadow: 0px 0px 18px 0px #e5e5e5; */
    padding: 8px 0px 25px;
    gap: 12px;
    border-bottom: 1px solid #d7d7d7;
    /* background-color: #fff; */
}
.contact-info-card .info-box:last-child {
    border: none;
}
.contact-info-card .info-box h6 {
    margin-bottom: 6px;
}
.contact-info-card .info-box i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ff5f5f;
    padding: 5px;
    margin: 0px auto;
    background-color: #fff;
    box-shadow: 0 3px 14px 0px rgb(0 0 0 / 9%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.contact-info-card .info-box:nth-child(2) i {
    color: #81c948;
}
.contact-info-card .info-box:nth-child(3) i {
    color: #35c6ff;
}
.krs-adres-txt {
    max-width: 400px;
}
.contact-info-card .info-box p {
    margin-bottom: 0px;
}
.contact-info-card .info-box p a {
    text-decoration: none;
    color: var(--black);
}
.contact-info-card .info-box p a:hover {
    color: var(--primary);
}
/*----- Pricing Page -----*/
.price-cards {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 75px;
}
.plan {
    box-shadow: 0px 5px 25px 6px #e1e1e1;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease-in-out;
}
.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0px 18px 35px 6px #e6e6e6;
}
.plan-inner {
    background-color: #fff;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    border-radius: 10px;
    padding-bottom: 1rem;
}
.price-head {
    /* background-color: #ffffff; */
    background-image: linear-gradient(rgba(255, 255, 255, 92%), rgba(255, 255, 255, 92%)), url("../images/OC1Y8P0.webp");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    padding: 14px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #e7b3b3;
    transition: all 0.3s ease-in-out;
}
/* .price-head:hover{
     background-color: #fff6f6;
  } */
/*.plan.standard .price-head::after{
    background-color: rgb(225 8 8);
    color: var(--white);
    padding: 7px 32px 3px;
    transform: translate(calc(33px + 32px), -26px) rotate(45deg);
    transform-origin: top left;
    content: 'Recommended';
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    font-size: 8px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
  }*/
.price-head > h3 {
    border-radius: 10px 10px 0px 0px;
    font-size: 1rem;
    padding: 6px 0 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    color: var(--black);
}
.price-head del {
    font-size: 0.875rem;
    color: var(--grey);
}
.price-head h6 {
    font-size: 0.813rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2px;
}
.price-head .price {
    width: fit-content;
    font-size: 1rem;
    font-weight: 600;
    margin: 4px auto 4px;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    color: #000000;
}
.price-head p {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0px;
    background-color: #595959;
    padding: 4px 2px;
    line-height: 22px;
    margin-top: 10px;
    text-align: center;
    letter-spacing: 0.1px;
}
.price-head .gst {
    font-size: 12px;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 7px;
    display: inline-block;
}
.price-head .ncw-text {
    font-size: 12px;
    color: #4c4c4c;
    font-weight: 500;
    line-height: 17px;
    display: inline-block;
}
.pricing-content {
    color: #323232;
}
.pricing-content ul {
    margin: 0;
    padding: 0px;
    list-style: none;
    text-align: center;
}
.pricing-content li {
    border-bottom: 1px solid #f0f0f0;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    text-align: left;
}
.pricing-content li i {
    color: #48aa30;
    margin-right: 2px;
}
.pricing-content li i.bi-check-lg {
    font-size: 13px;
}
.pricing-content li i.fa-close {
    color: var(--primary);
}
.pricing-content li:last-child {
    border: none;
}
.offer {
    position: absolute;
    top: 48px;
    background: rgb(255, 148, 25);
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 8px;
    right: 10px;
    font-weight: 600;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
}
/* .basic .price-head {
        background-color: #6cb74f;
  }
  
  .standard .price-head {
    background-color: #1678d5;
  }
  .ultimite .price-head {
    background-color: #F75C70;
  }
  
  .gold .price-head{
    background-color: #7962f9;
  }  */
.plan.standard {
    /* border: 1px solid rgb(225 8 8); */
    position: relative;
    border-radius: 10px;
}
.plan.standard .plan-inner {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.plan.standard .price-head {
    border-radius: 10px 10px 0px 0px;
}
/* .plan.standard::before{
    background-color: rgb(225 8 8);
    color: var(--white);
    padding: 4px 10px;
    transform-origin: top left;
    content: 'Most Popular';
    position: absolute;
    left: -1px;
    top: -25px;
    z-index: 1;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px 8px 0px 0px;
    animation: popular 2s linear 1s infinite alternate;
    width: 101%;
}
.plan.standard.web::before{
    width: 100.7%;
  } */
.pc-title {
    position: relative;
    z-index: 10;
}
.pc-title::after {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #e65b6e;
    position: absolute;
    top: 112%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.website-price {
    grid-template-columns: repeat(4, 1fr);
}
.services-list {
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.services-list li {
    list-style: none;
    display: flex;
    column-gap: 4px;
    font-size: 0.875rem;
    color: var(--black);
    margin-bottom: 10px;
}
.services-list li i {
    color: var(--primary);
    margin-right: 3px;
}
.footer-item.imt-links {
    column-count: 2;
}
.connect-with {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
    /* border-top: 1px solid #343e4a; */
    margin-top: 1.5rem;
}
.connect-with h5 {
    margin-top: 10px !important;
}
.srv-content-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    margin-top: 1.2rem;
}
.serv-feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.4rem;
    margin-top: 2rem;
}
.single-feature {
    padding: 0.875rem;
    box-shadow: 0px 3px 15px 0px #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    position: relative;
}
.single-feature:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-8px);
}
.single-feature img {
    width: auto;
    height: 60px;
}
.single-feature h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 14px;
}
.product-card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.product-card-row .pd-boxes {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    box-shadow: 0px 0px 12px 0px #ddd;
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.4s ease-in-out;
    border-left: 2px solid #ff4747;
}
.product-card-row .pd-boxes:hover {
    box-shadow: 0px 10px 40px 0px #cfcfcf;
}
.pd-boxes img {
    width: auto;
    height: 45px;
}
.product-card-row .pd-boxes h5 {
    font-size: 1rem;
    font-weight: 500;
}
.product-card-row.payroll .pd-boxes h5 {
    font-size: 0.875rem;
    line-height: 20px;
}
.about-content p span {
    font-weight: 500;
    display: inline-block;
    padding-left: 15px;
}
.about-content .abt-txt {
    position: relative;
    /* border-left: 3px solid var(--primary); */
}
.about-content .abt-txt::before {
    content: "";
    width: 3px;
    height: 85%;
    background-color: var(--primary);
    position: absolute;
    top: 6px;
    left: 0px;
    z-index: -1;
}
.prod-imgbox {
    max-width: 450px;
    margin: 0px auto;
}

.abt-content{
    padding-right: 30px;
}



/*------------------my--------------------style---------------------wrap---------------start------------*/
.btn-white {
    background-color: #f2f2f2;
    color: #d41d31;
    margin-left: 7px;
    border: 1px solid #d0d7e8;
}
.krs-ban {
    width: 100%;
    height: 600px;
    /*background-size: cover;
  background-position: top;
  background-image: url(../images/ban.webp);*/
    /*  background: linear-gradient(125deg, rgb(236, 237, 240) 43%, rgb(183, 183, 187) 100%);*/
    background: linear-gradient(125deg, rgb(249, 249, 249) 43%, rgb(183, 183, 187) 100%);
    position: relative;
}
.krs-ban .inner-column {
    margin: 65px 8px 20px 35px;
    position: relative;
    z-index: 10;
}
.bg-globe {
    position: absolute;
    background-image: url(../images/dot-img.webp);
    background-size: cover;
    background-position: top center;
    width: 38%;
    height: 548px;
    left: 0px;
    top: 0px;
    opacity: 0.6;
}
.krs-ban .inner-column h3 {
    color: #242732;
    font-size: 39px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding-bottom: 7px;
}
.krs-ban .inner-column h3 span {
    color: #d41d31;
    position: relative;
}
/*.krs-ban .inner-column h3 span:after{
    content: '';
  display: inline-block;
  width: 87px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 3px;
  bottom: 5px;
}*/
.krs-ban .inner-column h4 {
    color: #3f4153;
    font-size: 22px;
    line-height: 34px;
    padding-bottom: 0px;
}
.krs-ban .inner-column h4 i {
    color: #d8102a;
    font-size: 22px;
    margin-right: 10px;
}
.krs-ban .inner-column p {
    font-size: 18px;
    margin-top: 18px;
    color: #3c3c3e;
    padding: 3px 10px;
    box-shadow: 4px 7px 7px 0px #dfdada;
    width: fit-content;
    margin-bottom: 27px;
    margin-left: 29px;
}
.ban-rgt-img {
    position: absolute;
    top: 0px;
    width: 48%;
    background-image: url(../images/ban-rgt-bck-bg.webp);
    right: 32px;
    background-size: contain;
    background-repeat: no-repeat;
}
/*.ban-rgt-img img{
     animation:itupdown .8s infinite alternate;
}
@keyframes itupdown {
  0% {
    -webkit-transform:translateY(0);
    -moz-transform:translateY(0);
    -ms-transform:translateY(0);
    -o-transform:translateY(0);
    transform:translateY(0)
  }
  100% {
    -webkit-transform:translateY(-10px);
    -moz-transform:translateY(-10px);
    -ms-transform:translateY(-10px);
    -o-transform:translateY(-5px);
    transform:translateY(-5px)
  }
}*/
/*-----------new-------about----------sctn----------wrap------------start------------*/
.new-about-sctn {
    position: relative;
    top: 0px;
    padding: 0px 0 20px;
    margin-top: 0px;
    background-color: #f4f5f8;
    /*  background-image: url(../images/two-abt-bx-pattern.webp);*/
}
/*.new-about-sctn:after {
 position: absolute;
  right: 0;
  top: 0px;
  height: 480px;
  width: 480px;
  border-radius: 0 0 0 500px;
  background-color:#f4f5f8;
  content: "";
  z-index: -1;
}*/
.new-about-sctn:before {
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    max-width: 560px;
    background-image: url(../images/pattern-04.webp);
    width: 100%;
    content: "";
}
.abt-img-txt {
    margin-top: 80px;
}
.service-block-two {
    margin-top: -40px;
}
.service-block-two .inner-box {
    background-color: #fdfdfd;
    position: relative;
    padding: 31px 0 30px 123px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 10px 25px 1px #dfdfdf;
}
.service-block-two .inner-box::before {
    content: "";
    position: absolute;
    top: -3px;
    right: -5px;
    width: 120px;
    height: 180px;
    background-image: url(../images/pattern2-1.webp);
}
.service-block-two .inner-box .icon-box {
    position: absolute;
    top: 27px;
    left: 0;
    width: 95px;
    height: 93px;
    line-height: 93px;
    text-align: center;
    background-color: #242732;
}
.service-block-two .inner-box .icon-box img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 12px;
}
.service-block-two .inner-box .content-box {
    padding-right: 30px;
    position: relative;
}
.service-block-two .inner-box .content-box .title {
    color: #1f1f22;
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 20px;
}
.service-block-two .inner-box .content-box .text {
    color: #3c3e40;
    font-size: 15px;
    line-height: 23px;
}
.service-block-two .inner-box:hover {
    background-color: #242731;
}
.service-block-two .inner-box:hover .icon-box {
    background-color: #d41d31;
}
.service-block-two .inner-box:hover .content-box .title {
    color: #efeff4;
}
.service-block-two .inner-box:hover .content-box .text {
    color: #dddfe1;
}
/*-----------new-------about----------sctn----------wrap------------end------------*/
/*----------------top---hdr----social---icon---wrap----start------------------------*/
.tp-hdr-scl-link {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    float: right;
}
.tp-hdr-scl-link li {
    list-style: none;
    background-color: rgba(232, 232, 240, 0.2);
    width: 25px;
    height: 25px;
    text-align: center;
    transition: 0.2s all;
}
.tp-hdr-scl-link li:hover {
    background-color: #242732;
}
.tp-hdr-scl-link li a {
    color: #f7f7f7;
    font-size: 13px;
    text-shadow: 2px 1px 0px #26262661;
}
/*--------------------top---hdr----social---icon---wrap----end--------------------*/
/*--------------what-----we-------offer-------------wrap------------start---------------*/
.wt-we-offr-sctn {
    position: relative;
    padding: 70px 0 70px;
    width: 100%;
    height: 330px;
}
.wt-we-offr-sctn:before {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 325px;
    width: 100%;
    background-color: #222328;
    background-image: url(../images/offer-pattrn-bg.webp);
    content: "";
    background-size: contain;
    background-position: right top;
}
.offr-title-bx {
    position: absolute;
    width: 51%;
    left: 0px;
    right: 0px;
    top: 60px;
    margin: auto;
}
.offr-bx-sctn {
    margin-top: -150px;
    margin-bottom: 50px;
    padding: 0px 35px;
}
/*-----------------------------*/
.offr-srvice .inner-box {
    position: relative;
    background-color: #f5f5f5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
    z-index: 9;
    overflow: hidden;
}
.offr-srvice .inner-box::after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    background-color: #d41d31;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: -1;
}
.offr-srvice .inner-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 147px;
    height: 227px;
    background-image: url(../images/pattern2.webp);
}
.offr-srvice .inner-box:hover::before {
    opacity: 0;
}
.offr-srvice .inner-box .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 70px;
    background-color: #d41d31;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.offr-srvice .inner-box:hover .icon-box::before {
    background-color: #eee;
}
.offr-srvice .inner-box .icon-box {
    margin-bottom: 0px;
    padding: 10px 0 0 10px;
    position: relative;
    z-index: 99;
}
.offr-srvice .inner-box .icon-box .image {
    width: 75px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #ffffff;
    display: inline-block;
    font-size: 28px;
    color: #2e2f3e;
    margin-bottom: 14px;
}
.offr-srvice .inner-box .icon-box .image img {
    transition: all 0.3s ease;
}
.offr-srvice .inner-box .content-box {
    padding: 0 12px 20px;
}
.offr-srvice .inner-box .content-box .title {
    margin-bottom: 11px;
    font-weight: 600;
    color: #2b2f39;
    font-size: 18px;
    line-height: 25px;
}
.offr-srvice .inner-box:hover .content-box .title {
    color: #fff;
}
.offr-srvice .inner-box:hover .content-box .text {
    color: #fbfbfb;
}
.offr-srvice .inner-box .content-box .text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #444548;
}
.offr-srvice .inner-box:hover::after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
/*--------------what-----we-------offer-------------wrap------------end--------------*/
/*----------------social-----integration---------wrap------------start-------------*/
.thrd-prty-para {
    background-color: #fff;
    border-left: 3px solid #d41d31;
    padding: 7px 8px 7px 11px;
    margin-bottom: 25px;
    box-shadow: 5px 4px 4px 1px #ddd;
}
.thrd-prty-para p {
    margin-bottom: 0px;
    font-weight: 500;
}
.sm-abt-title {
    width: fit-content;
    font-size: 1rem;
    font-weight: 600;
    line-height: 25px;
    color: #d41d31;
    margin-bottom: 8px;
    text-transform: capitalize;
    position: relative;
}
.sm-abt-title:after {
    position: absolute;
    right: -50px;
    top: 50%;
    height: 2px;
    width: 40px;
    margin-left: 10px;
    margin-top: -1px;
    background: #d41d31;
    content: "";
}
.pbt-pd {
    padding: 4rem 0;
}
.talktous-card {
    padding: 2rem;
    border-radius: 1rem;
    background-color: #fff;
    margin-bottom: 2rem;
}
.krs-talkto h5 {
    font-weight: 500;
}
.krs-talkto h6 {
    font-size: 1.125rem;
    margin-top: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}
.krs-talkto h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.krs-talkto .phc-icon {
    width: auto;
    height: 22px;
    margin-right: 4px;
}
.krs-talkto {
    padding-right: 1rem;
    position: relative;
    z-index: 10;
}
.krs-talkto::after {
    content: "";
    width: 60px;
    height: 60px;
    background-image: url(../images/pattern-7.webp);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60px;
    right: 0px;
    z-index: -1;
    /* background-size: cover; */
    animation: topbotm 5s infinite linear;
}
.krs-talkto .social-links {
    justify-content: start;
    margin-top: 1.2rem;
}
.connect-img {
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}
.connect-img img {
    width: auto;
}
.conact-sect .title-sm {
    font-weight: 500;
}
.footer-abt-txt {
    padding-right: 20px;
    line-height: 25px;
    text-align: left;
}
.continfo {
    position: relative;
    margin-top: 0px;
}
.circle-anim {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgb(255, 110, 110);
    animation: topbotm 5s infinite linear;
    top: -10px;
    right: 26%;
}
@keyframes topbotm {
    0% {
        transform: translate(0, 0) rotate(0deg);
        -webkit-transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-10px, 10px) rotate(10deg);
        -webkit-transform: translate(-10px, 10px) rotate(10deg);
    }
    75% {
        transform: translate(15px, -5px) rotate(15deg);
        -webkit-transform: translate(15px, -5px) rotate(15deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
        -webkit-transform: translate(0, 0) rotate(0deg);
    }
}
.contact-form form {
    box-shadow: 0px 3px 15px 0px #e1dddd;
    border-radius: 5px;
    padding:20px 30px 25px;
}
.krs-talkto .social-links li i {
    background-color: #303842bd;
    color: #fff;
}
.krs-talkto .social-links li i:hover {
    background-color: var(--primary);
}
.prc-container {
    max-width: 1260px;
}
/*=============popup=========form======left-side====wrap=====start===================*/
img {
    width: 100%;
}
.logo-box img {
    width: 49%;
}
.sidebar-banner-box {
    position: relative;
    display: block;
    background-color: #1a1c23;
    padding: 45px 30px 45px;
    overflow: hidden;
    z-index: 1;
    border-radius: 0px 0px 5px 45px;
}
.sidebar-banner-box .top-box {
    position: absolute;
    top: -26px;
    left: -13px;
    width: 100px;
    height: 235px;
    background: #2b2d36;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    z-index: -1;
}
.sidebar-banner-box .bottom-box {
    position: absolute;
    right: -38px;
    bottom: -50px;
    width: 100px;
    height: 235px;
    background-image: -moz-linear-gradient(150deg, rgb(164, 6, 23) 0%, rgb(210, 27, 47) 100%);
    background-image: -webkit-linear-gradient(150deg, rgb(164, 6, 23) 0%, rgb(210, 27, 47) 100%);
    background-image: -ms-linear-gradient(150deg, rgb(164, 6, 23) 0%, rgb(210, 27, 47) 100%);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    z-index: -1;
}
@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(-30px);
    }
}
.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-20px);
    }
}
.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.sidebar-banner-box .logo-box {
    position: relative;
    display: block;
    text-align: center;
}
.sidebar-banner-box h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 29px;
    margin: 15px 0 15px;
    text-align: center;
}
.sidebar-banner-box h2 {
    text-align: center;
    color: #eee;
    font-size: 27px;
    text-shadow: 2px 3px 3px #0f0f0f;
    position: relative;
}
.sidebar-banner-box h2 span {
    color: #d11b2f;
}
.sidebar-banner-box h2:after {
    display: block;
    content: "";
    width: 192px;
    height: 2px;
    background-color: #eee;
    position: absolute;
    left: 42px;
    right: 0px;
    margin: auto;
}
.sidebar-banner-box .info-list {
    text-align: center;
    margin: 25px auto 9px;
}
.sidebar-banner-box .info-list li {
    list-style: none;
    padding-bottom: 9px;
    color: #eeeeee70;
}
.sidebar-banner-box .info-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}
.sidebar-banner-box .info-list li a i {
    margin-left: auto;
}
.popup-img {
    margin-top: 9px;
}
.demo-mdl{
    max-width: 62%;
}
.snow-bg{
  position: absolute;
  top: -20px;
  background-image: url(../images/spinning_ashoka_chakra.gif);
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 170px;
  margin: auto;
  left: 0px;
  right: 0px;
}
.demo-mdl .modal-content {
    border-radius: 3px;
}
.demo-mdl .bttn-close {
    position: absolute;
    top: -6px;
    right: -11px;
    z-index: 1;
    box-shadow: 2px 2px 8px #7d7d7d;
    font-size: 13px;
    background-color: #eee;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    color: #5b6580;
}
#freeDemoModal .modal-body {
    padding: 16px 20px;
}
.form-group {
    position: relative;
    margin-bottom: 15px;
}
.frm-inpt-icn {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 39px;
    height: 39px;
    background-color: #f2f1f1;
    text-align: center;
    border-radius: 5px 0px 0px 5px;
    line-height: 39px;
    color: #465164;
}
.frm-inpt-bx input,
.frm-inpt-bx select {
    font-size: 13px;
    height: 41px;
    color: var(--grey);
    padding: 0px 5px 0px 46px;
}
.frm-inpt-bx input:focus,
.frm-inpt-bx select:focus,
.frm-inpt-bx textarea:focus {
    box-shadow: none;
    border-color: #f7d3d3;
}
.frm-inpt-bx textarea {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--grey);
    resize: none;
    height: 70px;
    margin-bottom: 15px;
}
.free-demo-form label {
    font-size: 0.813rem;
    margin-bottom: 4px;
}
.free-demo-form label span {
    color: var(--primary);
}
.free-demo-form button {
    border: none;
    font-size: 15px;
    padding: 6px 16px 6px;
    background-color: #d11b2f;
}
/*--------- Newsletter -----------*/
.subscribe-section.style-ten {
    background: url(../images/subscribe.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.subscribe-section.style-ten .footer-hr {
    padding: 40px 0 45px 0;
    border-bottom: none;
}
.subscribe-section.style-ten .subscribe-section-title h2 {
    color: #fff;
    font-size: 32px;
    margin: 0 0 7px;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.subscribe-section.style-ten .subscribe-section-title span {
    color: #fff;
    font-size: 15px;
}
.subscribe-input-field {
    position: relative;
}
.subscribe-section.style-ten.upper .subscribe-mail-box {
    border-radius: 30px;
}
.subscribe-section.style-ten.upper .subscribe-mail-box {
    border-radius: 6px;
    display: flex;
}
.subscribe-section.style-ten .subscribe-mail-box {
    width: 100%;
    height: 52px;
    border-radius: 0;
    border: #fff;
    padding: 0px 69px 0px 10px;
    font-size: 14px;
}
input.subscribe-mail-box {
    outline: 0;
}
.subscribe-section.style-ten .subscribe-submit-btn {
    border-radius: 0px 6px 6px 0px;
    background-color: #242440;
    top: 0px;
    right: 0px;
    padding: 14px 16px;
    border-left: none;
}
.subscribe-submit-btn {
    border: none;
    border-radius: 3px;
    background-color: #d8102a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    position: absolute;
    top: 18.4px;
    right: 5px;
    padding: 10px 30px;
    transition: 0.3s;
}
/*----- Footer Bottom  -------*/
.footer-botm {
    width: 100%;
    background-color: #0000008c;
    padding: 10px 0px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 100;
    transition: all 0.5s ease;
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}
.footer-botm.show {
    transform: translateY(100px);
    visibility: hidden;
    opacity: 0;
}
.call-form_row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1.25rem;
}
.call-from .form-group {
    position: relative;
    margin-bottom: 0px;
}
.call-from .form-group input {
    padding-left: 36px;
    font-size: 14px;
}
.call-from .form-group input:focus {
    box-shadow: 0 0 0 0.15rem rgb(255 120 120 / 25%);
    border-color: rgb(255, 194, 194);
}
.call-from .form-group i {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    color: #434a5e;
    border-right: 1px solid #c2c8d0;
    padding-right: 8px;
    width: 20px;
}
.call-from button {
    width: 120px;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--primary);
}
.bottom_form_bttn {
    padding-left: 5px;
}
.botm-contact-info {
    width: fit-content;
    background-color: #fff;
    padding: 4px 10px;
    position: relative;
    top: 3px;
    display: inline-block;
    /* transform: scale(1.1); */
    border-radius: 20px;
    height: 34px;
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.botm-contact-info a {
    text-decoration: none;
    font-size: 15px;
    color: var(--black);
    position: relative;
    font-weight: 500;
}
.botm-contact-info a:hover {
    color: var(--primary);
}
.botm-contact-info .fa {
    background: #d7172e;
    height: 32px;
    width: 32px;
    text-align: center;
    position: relative;
    top: 0px;
    left: -15px;
    font-size: 14px;
    line-height: 33px;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px #afafaf;
    color: #fff;
}
.pricing-sect {
    padding: 50px 70px 60px;
}
.about-section .shape2 {
    left: 55px !important;
}
.inner-column h6 {
    color: #242732;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 23px;
}
.inner-column h6::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #d8102a;
    position: absolute;
    bottom: -5px;
    left: 0px;
    right: 0px;
    z-index: 1;
    box-shadow: 6px 2px 0px #b5afafe5;
}
.social-media-integ {
    margin-bottom: 26px;
}
.social-media-integ .tp-hdr-scl-link {
    float: none;
    column-gap: 8px;
    padding-left: 38px;
}
.social-media-integ .tp-hdr-scl-link li {
    background-color: var(--grey);
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    box-shadow: 2px 1px 2px 3px #e3e1e1;
}
.social-media-integ .tp-hdr-scl-link li:hover {
    background-color: var(--primary);
}
/*----------new---------pricing---------tab----wrap--------start---------------*/
/*.tabs {
    width: 100%;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 0px 10px;
   justify-content: center;
}
.tabs li {
  background-color: #fdfbfb;
  width: 13%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f5f6a;
  transition: .5s;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 0px 4px 6px -1px #dedede;
  box-shadow: rgba(133, 133, 168, 0.25) 0px 30px 60px -12px inset, rgba(174, 173, 196, 0.3) 0px 18px 36px -18px inset;
  border: 1px solid #e6ebee;
}
.tabs li:hover {
    background: linear-gradient(145deg, #1e2024, #23272b);
    color: #fff;
    position: relative;
    z-index: 1;
   
}
.active {
    background: linear-gradient(145deg, #1e2024, #23272b);
    color:#fff !important;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}
.contents {
    width: 95%;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.show {
    display: flex;
}
.hide {
    display: none;
}
@keyframes moving {
    from {
        transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        -o-transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        opacity: 1;
    }
}*/
/*-------tab-------price----end--------*/
.price-box {
    margin-top: 60px;
    width: 100%;
    padding: 0px 45px;
}
.price-style1 {
    position: relative;
    padding: 20px 8px 22px 8px;
    border-radius: 5px;
    margin: 0px 0 15px 0;
    height: auto;
}
.price-color1 {
    border: 1px solid #95d2b3;
    background-color: #f5fffa;
}
.price-color2 {
    border: 1px solid #9376e0;
    background-color: #f3efff;
}
.price-color3 {
    border: 1px solid #579bb1;
    background-color: #f1fafd;
}
.price-color4 {
    border: 1px solid #fa7070;
    background-color: #fdf4f4;
}
.price-style1 .price-shape {
    /*  background-color:#95D2B3;*/
    position: absolute;
    left: 16px;
    top: 17px;
    width: 94%;
    height: 100%;
    border-radius: 5px;
    transition: all ease 0.4s;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1.1);
}
/*.price-style1:hover .price-shape {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}*/
.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.price-package {
    transition: all ease 0.4s;
    position: absolute;
    width: fit-content;
    font-size: 15px;
    padding: 6px 13px;
    z-index: 9;
    left: 20px;
    margin-top: -47px;
    border-radius: 5px 5px 2px 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.price-color1 .price-package {
    background-color: #55ad9b;
    color: #fff;
}
.price-color2 .price-package {
    background-color: #9376e0;
    color: #fff;
}
.price-color3 .price-package {
    background-color: #579bb1;
    color: #fff;
}
.price-color4 .price-package {
    background-color: #fa7070;
    color: #fff;
}
.unlmtd-user-txt {
    position: relative;
    z-index: 2;
    background-color: #d8102a;
    color: #fff;
    width: fit-content;
    padding: 9px 26px 9px 11px;
    margin-left: -8px;
    text-shadow: 1px 1px 4px #333337;
    letter-spacing: 0.5px;
    border-radius: 0px 20px 20px 0px;
    border-right: 3px solid #99042b;
    border-bottom: 2px solid #99042b;
}
.unlmtd-user-txt:before,
.unlmtd-user-txt:after {
    position: absolute;
    content: "";
    display: block;
}
.unlmtd-user-txt:before {
    width: 0.469em;
    height: 43px;
    padding: 0 0 0.438em;
    top: 0;
    left: -0.469em;
    background: inherit;
    border-radius: 0.313em 0 0 0.313em;
}
.unlmtd-user-txt:after {
    width: 0.313em;
    height: 0.313em;
    background: #99042b;
    bottom: -0.313em;
    left: -0.313em;
    border-radius: 0.313em 0 0 0.313em;
    box-shadow: inset -1px 2px 2px rgba(0, 0, 0, 0.3);
}
.maint-txt p {
    font-size: 11px;
    text-align: center;
    margin-top: 48px;
    background-color: #fff;
    border-radius: 20px;
    padding: 2px 2px;
    color: #2f2f55;
    border-left: 3px solid #a6a6ae;
    border-right: 3px solid #a6a6ae;
    box-shadow: rgba(208, 214, 234, 0.97) 0px 30px 60px -12px inset, rgba(255, 255, 255, 0.97) 0px 18px 36px -18px inset;
}
/*.rgt-shape{
    position: relative;
}
.rgt-shape:after{
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid red;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
*/
.unlmtd-user-txt h6 {
    margin-bottom: 0px;
    font-size: 15px;
    font-style: italic;
}
.price-style1 .price-amount {
    transition: all ease 0.4s;
    position: relative;
    z-index: 1;
    margin-left: -23px;
    padding: 5px 10px 0px 18px;
    margin-top: 10px;
}
.price-amount.h3 {
    font-size: 19px;
    color: rgb(72, 72, 94);
    margin-bottom: 0px;
}
.gst-txt p {
    font-size: 11px;
    font-weight: 600;
    color: #d91414;
    font-family: manrope;
}
.price-style1 .price-duration {
    font-size: 15px;
    color: #34333c;
    margin-bottom: 4px;
}
.price-style1 .price-features {
    transition: all ease 0.4s;
    position: relative;
    z-index: 2;
    background-color: #f5ffff;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    padding: 17px 16px;
    margin-top: 16px;
}
.price-color1 .price-features {
    border: 7px solid #b2c8d245;
}
.price-color2 .price-features {
    border: 7px solid #f0ecfd;
}
.price-color3 .price-features {
    border: 7px solid #ebf6ff;
}
.price-color4 .price-features {
    border: 7px solid #fdf4f4;
}
.price-style1 .price-features ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.price-style1 .price-features li {
    font-size: 13px;
    padding-bottom: 8px;
}
.price-style1 .price-features li:last-child {
    padding-bottom: 0px;
}
.price-style1 .price-features i {
    color: #55ac36;
    margin: 0 4px 0 0;
    font-size: 12px;
}
.price-style1 .price-features .fa-circle-xmark {
    color: #d8102a !important;
}
.price-bx-reltv {
    position: relative;
}
.price-line1 {
    border-left: 2px dashed #95d2b3;
    position: relative;
    height: 166px;
    margin: -18px auto auto 50%;
    right: 0px;
}
.price-line1:before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #95d2b3;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -8px;
    right: 0px;
    top: -5px;
    border: 3px solid #cbeadbfc;
}
.price-line2 {
    border-left: 2px dashed #9376e0;
    position: relative;
    height: 72px;
    margin: -18px auto auto 50%;
    right: 0px;
}
.price-line2:before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #9376e0;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -8px;
    right: 0px;
    top: -5px;
    border: 3px solid #cbb9fb;
}
.price-line3 {
    border-left: 2px dashed #579bb1;
    position: relative;
    height: 72px;
    margin: -18px auto auto 50%;
    right: 0px;
}
.price-line3:before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #579bb1;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -8px;
    right: 0px;
    top: -5px;
    border: 3px solid #9dd5e8;
}
.price-line4 {
    border-left: 2px dashed #fa7070;
    position: relative;
    height: 72px;
    margin: -18px auto auto 50%;
    right: 0px;
}
.price-line4:before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #fa7070;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: -8px;
    right: 0px;
    top: -5px;
    border: 3px solid #f7caca;
}
*/ .price-block {
    position: relative;
}
.price-block.active .inner-box {
    border-color: #000;
}
.price-block .inner-box {
    position: relative;
    padding: 20px 15px 20px 35px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d8102a;
    transition: all 600ms ease;
}
.price-block .inner-box .curve-layer {
    position: absolute;
    left: 0px;
    top: -10px;
    height: 55%;
    width: 10px;
    transform: skewY(-40deg);
    background-color: #fff;
    transition: all 600ms ease;
    box-shadow: rgba(133, 133, 185, 0.25) 0px 30px 60px -12px inset, rgba(71, 73, 108, 0.71) 0px 18px 36px -18px inset;
}
.price-list li {
    list-style: none;
    font-size: 13px;
    padding-bottom: 11px;
    color: #505259;
}
.price-list li:last-child {
    padding-bottom: 0px;
}
.price-list li i {
    font-size: 11px;
    color: #55ac36;
    padding-right: 8px;
}
.price-color1 .mdl-title h5 {
    background-color: #55ad9b;
    color: #fff;
}
.price-color2 .mdl-title h5 {
    background-color: #9376e0;
    color: #fff;
}
.price-color3 .mdl-title h5 {
    background-color: #579bb1;
    color: #fff;
}
.price-color4 .mdl-title h5 {
    background-color: #fa7070;
    color: #fff;
}
.mdl-title {
    position: relative;
    left: 19px;
    margin-top: -27px;
}
.mdl-title h5 {
    background-color: #eee;
    color: #3e3d62;
    font-size: 12px;
    /*position: absolute;
  left: 19px;
  top: -8px;*/
    padding: 2px 6px;
    box-shadow: 2px 1px 4px 1px #ddd;
    width: fit-content;
}
.module-list ul {
    display: flex;
    gap: 2px 26px;
    position: relative;
    padding-top: 8px;
    justify-content: center;
}
.module-list ul li {
    list-style: none;
    text-align: center;
}
.module-list ul li i {
    font-size: 15px;
    color: #48445b;
    width: 30px;
    height: 30px;
    background-color: #eae3e34f;
    text-align: center;
    line-height: 30px;
    box-shadow: 0px -4px 5px 1px #dbdde1;
    margin-bottom: 6px;
}
.module-list {
    /*display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;*/
    margin: auto auto 25px auto;
    width: 88%;
    height: 93px;
    padding: 15px 10px;
    /*  background-color: rgba(218, 236, 247, 0.35);*/
    backdrop-filter: blur(7px);
    /*  border: 2px solid rgba(167, 162, 198, 0.32);*/
    border-radius: 10px;
}
.module-list ul li h6 {
    font-size: 11px;
    color: #4e4b5b;
}
.intgr-list {
    position: relative;
    /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;*/
    margin-bottom: 15px;
    width: 88%;
    height: 70px;
    aspect-ratio: 3 / 4;
    padding: 15px 10px;
    /*  background-color: rgba(218, 236, 247, 0.35);*/
    backdrop-filter: blur(7px);
    /*  border: 2px solid rgba(167, 162, 198, 0.32);*/
    border-radius: 10px;
    margin: auto auto 25px auto;
}
.intgr-list ul {
    display: grid;
    gap: 2px 10px;
    position: relative;
    padding-top: 8px;
    grid-template-columns: auto auto auto;
}
.intgr-list ul li {
    list-style: none;
    text-align: center;
    font-size: 11px;
    color: #4e4b5b;
    position: relative;
    padding-right: 9px;
    padding-bottom: 3px;
}
.intgr-list ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: #adaebb;
    position: absolute;
    top: 3px;
    right: 0px;
}
.intgr-list ul li:last-child:after {
    display: none;
}
.price-sctn {
    padding: 0px 0px 35px;
}
.cusmize-bdge {
    position: absolute;
    left: 0px;
    width: fit-content;
    display: block;
    top: 16%;
    z-index: 9;
}
.cusmize-bdge p {
    font-size: 12px;
    padding: 0px 6px;
    font-weight: 500;
    border-radius: 0px 12px 11px 0px;
    position: relative;
}
.cusmize-bdge p:before,
.cusmize-bdge p:after {
    position: absolute;
    content: "";
    display: block;
}
.cusmize-bdge p:before {
    width: 0.469em;
    height: 31px;
    padding: 0 0 0.438em;
    top: 0;
    left: -0.469em;
    background: inherit;
    border-radius: 0.313em 0 0 0.313em;
}
.cusmize-bdge p:after {
    width: 0.313em;
    height: 0.313em;
    background: #5a5c66;
    bottom: -0.313em;
    left: -0.313em;
    border-radius: 0.313em 0 0 0.313em;
    box-shadow: inset -1px 2px 2px rgba(0, 0, 0, 0.3);
}
.cusmize-bdge-1 p {
    background-color: #55ad9b;
    color: #fff;
}
.cusmize-bdge-2 p {
    background-color: #9376e0;
    color: #fff;
}
.cusmize-bdge-3 p {
    background-color: #579bb1;
    color: #fff;
}
.cusmize-bdge-4 p {
    background-color: #fa7070;
    color: #fff;
}
/*-----------new-------pricing-------------tab------wrap------end------------*/
.web-sectn .cusmize-bdge {
    top: -4%;
    left: 0px;
    right: 0px;
    margin: auto;
}
.web-sectn .cusmize-bdge p {
    border-radius: 10px;
    padding: 0px 12px;
}
.web-sectn .cusmize-bdge p::after,
.web-sectn .cusmize-bdge p::before {
    display: none;
}
.web-sectn .maint-txt p {
    margin-top: 15px;
    position: unset;
}
.web-sectn .price-package {
    font-size: 14px;
}
.web-sectn .price-amount.h3 {
    margin-top: 23px;
}
.web-sectn .gst-txt p {
    margin-bottom: 0px;
}
.web-sectn .price-package {
    left: 0px;
    margin-top: -20px;
    right: 0px;
    margin: -20px auto 0px;
    border-radius: 0px;
}
.inner-column.aos-init.aos-animate h4 i {
    font-size: 20px;
    width: 21px;
    text-align: right;
}
.overlay {
    background: #ffffffdb;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
}
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #d8102a;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 0.4s infinite linear;
    z-index: 99999;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}
@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}
.overlay {
    -webkit-animation: cssAnimation 0.4s forwards;
    animation: cssAnimation 0.4s forwards;
}
.mob-get-demo {
    display: none;
}
.compny-trm-cond-list {
    border: 1px solid #dddddd1a;
    border-left: none;
    border-right: none;
    width: fit-content;
    padding-bottom: 2px;
    margin: 15px auto auto;
}
.compny-trm-cond-list li{
    list-style: none;
    display: inline-block;
    position: relative;
    margin-right: 22px;
}
.compny-trm-cond-list li:after{
   content: '';
  width: 1px;
  height: 15px;
  background-color: #babdc0;
  display: block;
  position: absolute;
  top: 5px;
  left: -13px;
}
.compny-trm-cond-list li:first-child:after{
    display: none;
}
.compny-trm-cond-list li a{
    color: #bbbeca !important;
    font-size: 12px;
    transition: 0.3s ease;
    text-decoration: none;
}
.compny-trm-cond-list li a:hover{
    color: #d8102a !important;
}
.side-img {
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 12px;
}
.list-rfnd li {
  display: flex;
  line-height: 21px;
  padding-bottom: 13px;
  font-size: 14px;
  color: #2b2b2d;
}
.list-rfnd li i {
  margin-top: 2px;
  margin-right: 8px;
  color: #d32033;
}
.unltd-custm-bx{
  border-radius: 15px;
  background: rgb(184, 5, 45);
  font-size: 12px;
  padding: 6px 11px 6px 21px;
  width: fit-content;
  position: relative;
  transition: 0.5s ease-in-out;
  color: #fff;
}
/*.unltd-custm-bx:hover{
    transform: scaleX(1.1);
    box-shadow: rgba(153, 6, 27, 0.25) 0px 30px 60px -12px inset, rgb(127, 2, 20) 0px 18px 36px -18px inset;
}*/
.unltd-custm-bx i{
    width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #bc0426;
  position: absolute;
  background-color: #fff;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  left: -13px;
  top: 4px;
  padding: 3px;
}
/*------------unllimited------user---------button-----------------*/
/*.ultd-user-bttn {
  --black-700: hsl(240, 28%, 19.6%);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  padding: 12px 15px;
  background-color: transparent;
  margin: auto;
  width: fit-content;
  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));
  text-decoration: none;
  transition: transform var(--transtion);
  color: #fff;
    font-size: 14px;
}
.ultd-user-bttn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--black-700);
  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(351.5, 92.7%, 37.5%), 0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))), 0 0 0 calc(var(--active, 0) * 0.375rem) hsla(354.3, 86%, 33.5%, 0.75);
  transition: all var(--transtion);
  z-index: 0;
}
.ultd-user-bttn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: hsla(351.6, 87.3%, 43.3%, 0.75);
  background-image: radial-gradient( at 51% 89%, hsl(340.4, 85.2%, 52.2%) 0px, transparent 50% ), radial-gradient(at 100% 100%, hsl(348.9, 78.5%, 45.7%) 0px, transparent 50%), radial-gradient(at 22% 91%, hsl(337.5, 71.7%, 42.9%) 0px, transparent 50%);
  background-position: top;
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}
.ultd-user-bttn:is(:hover) {
  --active: 0.4;
  padding: ;
}
.ultd-user-bttn:active {
  transform: scale(1);
}
.ultd-user-bttn .dots_border {
  --size_border: calc(100% + 3px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;
  border-radius: var(--border_radius);
  z-index: -10;
}
.ultd-user-bttn .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);
  width: 100%;
  height: 2rem;
  background-color: #fff;
  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.ultd-user-bttn .text_button {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;
  font-size: 15px;
  color: transparent;
}
.ultd-user-bttn .text_button i{
    margin-right: 6px;
}*/
/*------------pricing2-----design------start----------*/
.website-bnr{
    padding: 30px 0px 5px;
}
/*.web-feature-sctn .feature-title-bx,
.web-feature-sctn .pricng2-feature-point-bx{
  grid-template-columns: 30% 12% 12% 23% 23%;
}*/
.web-feature-sctn .feature-title-bx .inr-featre-title {
  font-size: 15px;
  text-transform: capitalize;
}
.saving-deal-txt {
  font-size: 18px;
  margin: 7px auto 10px;
}
.pricing2-sctn{
  /*background-image: url(../images/pricing-top-bg.png);*/
  background-image: url(../images/republic_day_bnnr.jpg);
  width: 100%;
  padding:20px 0px 135px;
  background-size: 100% 100%;
  background-position:top center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
 /*background: radial-gradient(circle, rgb(182, 0, 41) 51%, rgb(128, 1, 20) 100%);*/
}
/*.pricing2-sctn:before{
  content: '';
  width: 50%;
  height: 100%;
  background-image: url(../images/bnnr-lft-img.png);
  position: absolute;
  top: 0px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.pricing2-sctn:after{
  content: '';
  width: 50%;
  height: 100%;
  background-image: url(../images/bnnr-rgt-img.png);
  position: absolute;
  top: 0px;
  right: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}*/
/*.bnr-grdnt-bg{
    background: radial-gradient(circle, rgb(168, 0, 35) 51%, rgb(147, 0, 26) 100%);
    padding: 0px;
}*/
.pricng2-hdng{
    position: relative;
}
.pricng2-hdng h3{
    text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #363b53;
/*color: #e9ecfb;*/
  letter-spacing: 0.5px;
  margin: auto auto 11px;
  width: 55%;
  line-height: 34px;
}
.pricng2-hdng p{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #363b53;
    /*color: #f2f0f9;*/
  margin: auto auto 10px;
  width: 45%;
}
/*----------------------------------*/
.price2-module{
   display: flex;
  justify-content: center;
  position: relative;
}
.price2-module ul{
  border-radius: 15px 15px 0px 0px;
  background: #f2f2ff;
  /*box-shadow: 10px 10px 20px rgba(53, 57, 76, 0.14), -10px -10px 20px rgba(255, 255, 255, 0.8);*/
  /*box-shadow: 10px 10px 20px rgba(175, 15, 15, 0.14), -10px -10px 20px rgba(111, 7, 7, 0.8);*/
  padding: 10px 0px;
  display: flex;
  gap: 0px 7px;
  justify-content: center;
  align-items: center;
  width: 94.4%;
  margin: auto;
  position: absolute;
  z-index: 1;
  left: 1px;
  right: 0px;
  top: -47px;
}
.price2-module ul li{
    list-style: none;
}
.price2-module ul li label{
  color: #3b3455;
  font-size: 12px;
  padding: 6px 6px;
  background-color: transparent;
  transition: 0.4s ease;
  /* border: 1px solid #e1e1e6;
  border-radius: 25px;*/
}
.price2-module ul li label.active {
  background-color: transparent;
/*  color: #322858 !important;*/
  color: #d8102a !important;
/*  box-shadow: inset 2px 2px 11px #c6c9e5, inset -5px -5px 11px #fff;*/
}
.price2-module ul li label:hover{
    box-shadow: inset 2px 2px 11px #c6c9e5, inset -5px -5px 11px #fff;
}
.chkbx-module-bx .form-group{
    margin-bottom: 0px;
}
.chkbx-module-bx .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.chkbx-module-bx .form-group label {
  position: relative;
  cursor: pointer;
  display: flex;
}
.chkbx-module-bx .form-group label:before {
  content: '';
  -webkit-appearance: none;
  border: 1px solid #d9dee4;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  border-radius: 2px;
  width: 22px;
  height: 22px;
  background: #ebecef;
 /* box-shadow: 3px 3px 5px #c5c5c5, -3px -3px 5px #ffffff;*/
  transition-duration: 0.5s;
}
.chkbx-module-bx .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 14px;
  width: 6px;
  height: 11px;
  border: solid #343a46;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/*-------------------------------------------------------------*/
.feature-content-sctn{
    margin-top: 20px;
}
.pricng2-feature-content{
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: linear-gradient(145deg, #e9f1f8, #f0f0f0);
  box-shadow: 20px 20px 60px #d1d2da, -20px -20px 60px #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.feature-title-bx{
    padding: 13px 23px;
    background-color: #48484a;
    border-radius: 10px 10px 0px 0px;
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
}
.feature-title-bx .inr-featre-title{
    color: #fff;
    text-align: center;
}
.feature-title-bx .inr-featre-title:first-child{
    text-align: left;
}
.pricng2-feature-point-bx{
    border: 2px solid #c6d7e7;
    border-top:none;
    display: grid;
    grid-template-columns: 40% 20% 20% 20%;
}
.pricng2-feature-point-bx .inr-featre-point{
    color: #000;
    text-align: center;
}
.pricng2-feature-point-bx .inr-featre-point:first-child{
    text-align: left;
    color: #000;
}
.inr-featre-point .faeture-points li{
  list-style: none;
  padding: 15px 5px 14px 23px;
  border-bottom: 1px solid #d9dee2;
  box-shadow: 0px 4px 6px -2px #d8dae296;
  color: #3b3856;
  font-size: 14px;
  background-color: #fff;
}
.inr-featre-point .faeture-points li:last-child,
.inr-featre-point .feature-chck li:last-child {
    border-bottom:none;
    box-shadow:none;
}
.inr-featre-point .feature-chck li{
  list-style: none;
  padding: 0px 5px 0px 5px;
  border-bottom: 1px solid #c5d7e5;
/*  box-shadow: 0px 4px 6px -2px #d8dae296;*/
  color: #26243c;
  font-size: 21px;
  border-left: 1px solid #c5d7e5;
  font-weight: 600;
  height: 51px;
  line-height: 51px;
}
.inr-featre-point .feature-chck li p{
    text-align: center;
  font-size: 15px;
  color: #3e3e44;
  line-height: 48px;
  font-weight: 400;
}
.pricng2-feature-content table tr td i{
  width: 26px;
  height: 27px;
  border-radius: 50%;
  background-color: #7674bc4a;
  text-align: center;
  line-height: 27px;
  color: #3e3e44;
  font-size: 20px;
}
.pricng2-feature-point-bx .inr-featre-point:nth-child(2) .feature-chck{
    background-color: #f3fcff;
}
.pricng2-feature-point-bx .inr-featre-point:nth-child(2) .feature-chck li i{
    background-color: #b8d1d9;
}
.pricng2-feature-point-bx .inr-featre-point:nth-child(3) .feature-chck{
    background-color: #fcf3ff;
}
.pricng2-feature-point-bx .inr-featre-point:nth-child(4) .feature-chck{
    background-color: #f0edfd;
}
/*---------------------------------------*/
.price-card-sctn{
  margin-top: -87px;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  padding: 0px;
}
.pricing2-num-bx{
    /*box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 20px #fffb;*/
    /*box-shadow: rgba(175, 15, 15, 0.14) 10px 10px 20px, rgba(111, 7, 7, 0.8) -10px -10px 20px;*/
    padding: 9px 10px;
    border-radius:10px;
    background: linear-gradient(180deg, rgb(163 9 40) 39%, rgb(231, 233, 242) 38%);
    box-shadow: rgba(111, 115, 136, 0.43) 0px 19px 21px -15px;
}
.smll-price2{
    box-shadow: inset 5px 5px 20px rgba(0, 0, 0, 0.1), inset -5px -5px 20px #fff;
    background-color: #fff;
    height: 200px;
    position: relative;
}
.offer-days{
  font-size: 15px;
  color: #d8102a;
  text-transform: capitalize;
  font-weight: 500;
}
.try-subs-title{
    text-align: end;
}
.try-subs-title a{
  color: #3c4064;
  background-color: #fdfeff;
  padding: 7px 10px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: rgba(117, 135, 205, 0.37) 0px -52px 33px -30px inset;
  border: 1px solid #d7deee;
  font-size: 13px;
  border-top: 3px solid #d7deee;
  transition: 0.4s ease;
}
.try-subs-title a:hover{
    border: 1px solid #d7deee;
}
.yrly-btn a{
    background-color: #d7172e;
    color: #fff;
    box-shadow: rgb(121, 21, 37) 0px -52px 33px -30px inset;
    border: 1px solid #be162b;
}
.day-price-txt{
    padding: 8px 13px 0px;
}
.day-price-txt h4{
  font-size: 24px;
  color: #2f3147;
}
.custm-nocustm-txt{
  padding: 2px 15px;
  font-size: 12px;
  font-style: italic;
  color: #5e5e5e;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: #efecec;
  text-align: center;
  text-shadow: 1px 2px 1px #c6c5ce;
}
.day-price-txt h6{
    font-size: 12px;
    color: #d7172e;
}
.user-title{
    font-size: 15px;
    font-weight: 400;
}
.cncl-price2{
    font-size: 16px;
    margin-left: 12px;
}
.feature-lbl ul{
    padding: 0px 13px;
    position: absolute;
    bottom: 10px;
}
.feature-lbl ul li{
    list-style: none;
  display: inline-block;
  margin-right: 5px;
  background-color: #fff;
  color: #34324d;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 11px;
  margin-bottom: 5px;
  box-shadow: rgba(195, 195, 207, 0.46) 0px 30px 60px -12px inset, rgba(175, 177, 243, 0.52) 0px 18px 36px -18px inset;
  -webkit-transform: translateZ(0); /* webkit flicker fix */
-webkit-font-smoothing: antialiased; /* webkit text rendering fix */
letter-spacing: 0.3px;
}
.feature-lbl ul li:last-child{
    margin-right: 0px;
}
.smll-pric-hdng{
   background-color: #f9fafb;
  margin: 0px 1px;
  border-radius: 5px 5px 0px 0px;
  padding: 16px 0px;
  box-shadow: rgba(159, 159, 223, 0.25) 0px 30px 60px -12px inset, rgba(174, 172, 235, 0.3) 0px 18px 36px -18px inset;
  border-bottom: 1px solid #d6dbf4;
  align-items: center;
}
.saving-deal-txt{
    font-size: 18px;
    text-align: center;
    margin: 18px auto 10px;
    color: #2b304d;
    /*color: #dfe1e8;*/
    position: relative;
  z-index: 1;
}
.saving-deal-txt strong{
    /*text-shadow: 2px 3px 3px #d3c8ca;*/
    letter-spacing: 0.5px;
    background:linear-gradient(to right, #FD2500 4%, #bce388 37%, #337a14 35%);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bst-deal-txt{
    font-family: "Playwrite GB S", cursive;
  color: #d8102a;
  font-size: 18px;
  text-align: center;
  margin: 17px auto 11px;
  font-weight: 800;
  font-style: italic;
  text-decoration: underline;
  position: relative;
  z-index: 1;
}
.offer-spn-txt{
    /*color: #d8102a;*/
    color: #273566;
    font-weight: 700;
    letter-spacing: 0.9px;
    font-size: 20px;
   animation-name:glow;
  animation-duration:1s;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}
@keyframes glow{
  from{text-shadow:0px 0px 5px #fed45c,0px 0px 5px #f86f0b;}
  to{text-shadow:0px 0px 10px #c1eba7,0px 0px 10px #337b15;}
}
.firework{
    position: absolute;
    top: 20%;
    left: 15%;
}
.firewrk-img img{
    width: 15%;
}
.firework2{
   position: absolute;
  top: -4%;
  left: 24%;
}
.firework3{
    position: absolute;
  top: 9%;
  right: -14%;
}
.firework4{
    position: absolute;
  bottom: 6%;
  left: 1%;
}
.firework4.firewrk-img img{
    width: 25%;
}
.firework5{
    position: absolute;
  bottom: 5%;
  right: -30%;
}
.firework5.firewrk-img img{
    width: 26%;
    opacity: 0.8;
}
.firework6{
    position: absolute;
    top: -9%;
    right: -26%;
}
.firework6.firewrk-img img{
    width: 26%;
}
.firework7{
    position: absolute;
    top: 54%;
    right: -10%;
}
.firework7.firewrk-img img{
    width: 27%;
    opacity: 0.7;
}
.firework8{
    position: absolute;
    top: -14%;
    left: 0%;
}
.firework8.firewrk-img img{
    width: 27%;
    opacity: 0.7;
}
.firework9{
    position: absolute;
  bottom: 7%;
  left: 21%;
}
.firework9.firewrk-img img{
    width: 19%;
    opacity: 0.7;
}
/*-------unlimited-----user----style-----start----*/
/*.unltd-user .price2-module ul {
    width: 96.4%;
}*/
/*.unltd-user .feature-title-bx,
.unltd-user .pricng2-feature-point-bx {
    grid-template-columns: 60% 20% 20%;
}*/
.unltd-user .day-price-txt h4 {
  font-size: 23px;
}
.unltd-user .user-title {
  font-size: 14px;
}
.unltd-user .cncl-price2 {
  font-size: 15px;
  margin-left: 6px;
}
.unltd-click-btn-bx{
    position: absolute;
  left: 0px;
  right: 0px;
  bottom: 6px;
  justify-content: space-between;
  padding: 4px 13px;
  border-top: 1px solid #dbdceb;
}
.unltd-user .smll-price2 {
    height: 205px;
}
.unltd-user .feature-lbl ul {
  padding: 12px 13px;
  position: unset;
}
.web-price-crd-sctn .maint-txt p {
  padding: 2px 4px;
  font-size: 10px;
  width: 100%;
}
.web-price-crd-sctn .day-price-txt h4 {
  font-size: 17px;
}
.web-price-crd-sctn .cncl-price2 {
  font-size: 13px;
  margin-left: 5px;
}
.web-price-crd-sctn .smll-price2 {
    height: 165px;
}
.maint-txt p {
  font-size: 11px;
  text-align: center;
  position: absolute;
  background-color: #fff;
  border-radius: 20px;
  padding: 2px 12px;
  color: #2f2f55;
  border-left: 3px solid #a6a6ae;
  border-right: 3px solid #a6a6ae;
  box-shadow: rgba(208, 214, 234, 0.97) 0px 30px 60px -12px inset, rgba(255, 255, 255, 0.97) 0px 18px 36px -18px inset;
  width: fit-content;
  margin: auto;
  left: 0px;
  right: 0px;
  bottom: -18px;
  font-weight: 600;
}
/*------switch-----page-----start--------*/
.pricing-tab ul{
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0px auto 35px;
  background-color: #850015;
  position: relative;
  border-radius: 0px 0px 4px 4px;
  border-bottom: 2px solid #c10229;
  border-right: 2px solid #c20229;
  gap: 0px 2px;
  box-shadow: 0px 3px 7px -3px #4f0f0f;
}
.pricing-tab ul li{
    list-style: none;
  position: relative;
  padding: 5px 10px;
  transition: 0.4s ease;
}
/*.pricing-tab ul li:after{
   content: "||";
  font-size: 20px;
  color: #e3e6f3c4;
  position: absolute;
  right: 0px;
  top: -2px;
  letter-spacing: -2.8px;
}*/
/*.pricing-tab ul li:last-child{
    padding-right: 0px;
    margin-right: 0px;
}*/
/*.pricing-tab ul li:last-child:after{
    display: none;
}*/
.pricing-tab ul li a{
   text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.pricing-tab ul li.active a,
.pricing-tab ul li a:hover{
    color:#f8f2f3;
}
.pricing-tab ul li.active,
.pricing-tab ul li:hover{
    background-color:#d7172e;
    border-radius: 0px 0px 4px 4px;
}
/*-------------get---------started---------form---start----------*/
#msform {
    text-align: center;
    position: relative;
}
#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative
}
.form-card {
    text-align: left
}
#msform fieldset:not(:first-of-type) {
    display: none
}
.cmpny-dtl-frm input,
.cmpny-dtl-frm textarea {
    height: 41px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  color: #2C3E50;
  background-color: #FFF;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 1px 2px 3px -1px #eaeaea;
  padding: 0px 5px 0px 45px;
}
.cmpny-dtl-frm input:focus,
.cmpny-dtl-frm textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #D8102A;
    outline-width: 0
}
 .action-button {
  background: #D8102A;
  color: #fff;
  border: 0 none;
  cursor: pointer;
  padding: 7px 13px;
  margin: 10px 0px 10px 5px;
  font-weight: 500;
  border-radius: 3px;
  font-size: 15px;
}
 .action-button:hover,
 .action-button:focus {
    background-color: #606060;
}
 .action-button-previous {
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 7px 13px;
    margin: 10px 5px 10px 0px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 15px;
}
 .action-button-previous:hover,
.action-button-previous:focus {
    background-color: #000000
}
.fieldlabels {
   color: #444457;
  text-align: left;
  font-size: 13px;
  padding-bottom: 5px;
}
#progressbar {
  margin-bottom: 20px;
  overflow: hidden;
  color: #828298;
  display: flex;
  justify-content: center;
}
#progressbar .active {
    color: #D8102A;
}
#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 50%;
  position: relative;
  font-weight: 300;
  text-align: center;
  margin: auto;
}
#progressbar li:before {
  width: 40px;
  height: 40px;
  line-height: 34px;
  display: block;
  font-size: 17px;
  color: #ffffff;
  background: #d4d9e4;
  border-radius: 50%;
  padding: 2px;
  font-family: FontAwesome;
  content: "\f00c";
  text-align: center;
  margin: 5px auto 9px;
  box-shadow: 0px 0px 0px 4px #e8e8eb;
}
#progressbar li:after {
    content: '';
  width: 100%;
  height: 4px;
  background: #d4d9e4;
  position: absolute;
  left: 0;
  top: 23px;
  z-index: -1;
  border-radius: 10px;
}
#progressbar li.active:before,
#progressbar li.active:after {
    background: #D8102A
}
/*----------increase------decrease-------number-------start-----------*/
.qty-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-container .input-qty{
  text-align: center;
  padding: 6px 10px;
  border: 1px solid #d4d4d4;
  max-width: 80px;
}
.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus{
  border: 1px solid #d4d4d4;
  padding: 10px 13px;
  font-size: 10px;
  height: 38px;
  width: 38px;
  transition: 0.3s;
}
.qty-container .qty-btn-plus{
  border-radius: 0px 5px 5px 0px;
}
.qty-container .qty-btn-minus{
  border-radius: 5px 0px 0px 5px;
}
.qty-container input{
    background-color: #F1F4F5 !important;
  font-size: 15px !important;
  padding: 7px 15px 6px 15px !important;
  border-left: none !important;
  border-right: none !important;
}
.qty-container input:focus{
    border: 1px solid #d8102a !important;
    background-color: #fff;
}
.qty-container input:focus-visible{
    border: none;
    outline: none;
}
.qty-container .qty-btn-minus:hover,
.qty-container .qty-btn-plus:hover{
    background-color: #d8102a;
    color: #fff;
}
/*----------increase------decrease-------number-------end--------*/
.get-strtd-main-crd{
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  border-radius: 15px;
  margin-bottom: 21px;
  background-color: #fff;
  border: 1px solid #e9eaf4;
}
.get-strtd-title h5{
    text-align: left;
  background-color: #e2e4eb;
  color: #2e324e;
  font-size: 16px;
  border-radius: 15px 15px 0px 0px;
  font-weight: 500;
  padding: 13px 10px;
  letter-spacing: 0.5px;
}
.no-user-bx{
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
}
.no-user-txt h6{
    text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: #383647;
  margin-bottom: 1px;
}
.no-user-txt p{
    font-size: 13px;
  color: #4a4466;
}
.amount-txt h5{
    font-size: 18px;
  color: #2d2c3d;
  letter-spacing: 0.4px;
  font-weight: 600;
}
.smmry-total ul li{
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 15px 14px;
  border-bottom: 1px solid #e5e7ee;
  color: #383948;
}
 .smmry-total ul li strong{ 
    font-weight: 600;
 }
.smmry-total-amnt-txt h6{
  display: flex;
  justify-content: space-between;
  padding: 15px 14px;
  border-bottom: 1px solid #e5e7ee;
  font-size: 18px;
  font-weight: 500;
  color: #2c2a36;
}
.cmpny-dtl-frm{
    padding: 10px 32px;
}
.nxt-prev-submt-btn{
    display: flex;
  justify-content: end;
  margin: 0px 14px;
}
.get-strtd-lft-content{
    background-color: #f0f3f7;
  border-radius: 15px;
  padding: 21px 23px;
}
.get-strtd-lft-content p{
  font-size: 14px;
  text-align: justify;
  margin-bottom: 6px;
  line-height: 23px;
  color: #454655;
}
/*-------------get---------started---------form-----end---------*/
.no-user-bx label.crmTypes input {
  margin-right: 5px;
  position: relative;
  top: 1px;
}
/* .no-user-bx label.crmTypes input[type=checkbox] {
  position: relative;
    border: 1px solid #3a7a3d85;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
  opacity: .5;
}  */
.no-user-bx label.crmTypes input[type=checkbox]:hover {
  opacity: 1;
}
/* .no-user-bx label.crmTypes input[type=checkbox]:checked {
  background-color:#f0f3f0;
  opacity: 1;
}
.no-user-bx label.crmTypes input[type=checkbox]:before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid #1C271D;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
} */
.no-user-bx label.crmTypes {
  border: 1px solid #ccc;
  padding:3px 6px 5px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: inset 1px 1px 12px #cccccc91;
  font-size: 14px;
}
label.crmTypes.checked {
  background: #35A62B;
  color: #f7f7f7;
  box-shadow: none;
  border-color: #3a7a3d;
  font-size: 13px;
}
select#billingPeriod {
  padding: 5px 6px;
  border: 1px solid #bbbdc9;
  border-radius: 5px;
  background-color: #fff;
  font-size: 13px;
  color: #393749;
}
.pricng2-feature-point-bx{
border: 2px solid #c6d7e7;
border-top: none;
display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-title-bx {
  padding: 13px 23px;
  background-color: #48484a;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-title-bx .inr-featre-title:first-child{
    width: 27%;
}

.pricng2-feature-point-bx .inr-featre-point{
    width: 18%;
}

.centa-img {
    text-align: center;
}
.centa-img img{
    width: 135px;
}
.cptcha-wrp{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0px 0px;
  width: 50%;
  column-gap: 5px;
  row-gap: 5px;
}
.cptcha-wrp .innr-cptch-bx:nth-child(2){
  width: 55%;
}
.innr-cptch-bx i{
  color: #d8102a !important;
}
.innr-cptch-bx input{
  padding-left: 10px !important;
  
}



/*---------------caerers--------page---------wrap-----------start-----------*/


.career-sctn{
    width: 100%;
    position: relative;
    padding: 50px 40px;
}

.career-content{
    margin-bottom: 40px;
}


.career-content h3{
   text-align: center;
  font-size: 28px;
  color: #4f4d61;
  padding-bottom: 5px;
  border-bottom: 1px solid #d8102aa3;
  width: fit-content;
  margin: auto auto 23px;
}

.career-content p{
   font-size: 15px;
  color: #5d5d61;
  text-align: justify;
  line-height: 26px;
  padding-bottom: 2px;
}


.career-form{
   padding: 34px 38px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border: 1px solid #e8e8e8;
  border-radius: 25px;
}


.hire-img img{
    width: 100%;
  height: 515px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


.hire-inpt-bx{
    margin-bottom: 16px;
}


.hire-inpt-bx .form-label{
    font-size: 14px;
    color: #32303b;
}


.hire-inpt-bx .form-select,
.hire-inpt-bx .form-control{
    font-size: 13px;
  height: 40px;
  color: #575468;
}

.hire-inpt-bx textarea.form-control{
    height: 90px;
    resize: none;
}

.hire-inpt-bx .form-control:focus,
.hire-inpt-bx .form-select:focus{
    border: 1px solid #d30e2580;
    box-shadow: none;
}

.file-input {
  display: inline-block;
  text-align: left;
  background: #fafaff;
  padding: 2px;
  width: 100%;
  position: relative;
  border-radius: 6px;
  font-size: 12px;
  color: #342d52;
  border: var(--bs-border-width) solid var(--bs-border-color);
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}

.file-input > [type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.file-input > .button {
  display: inline-block;
  cursor: pointer;
  background: #eee;
  padding: 8px 16px;
  border-radius: 2px;
  margin-right: 8px;
  transition: 0.3s all ease;
}

.file-input:hover > .button {
  background: #d8102a;
  color: #fff;
}

.file-input > .label {
  color: #333;
  white-space: nowrap;
  opacity: .3;
}

.file-input.-chosen > .label {
  opacity: 1;
}


/*---------------careers--------page---------wrap-----------end-----------*/

.pricng2-feature-content table tbody{
  width: 100%;
}


.pricng2-feature-content table tr:first-child{
  background-color: #48484a;
}


.pricng2-feature-content table tr th:first-child{
    width: 35%;
    text-align: left;
}


.pricng2-feature-content table tr td:first-child{
    text-align: left;
    padding-left: 22px;
}


.pricng2-feature-content table tr th{
    padding: 13px 23px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  width: 15%;
  white-space: nowrap;
  text-align: center;
}


.pricng2-feature-content table tr td{
    padding: 11px 10px 11px 10px;
  border:1px solid #d9dee2;
  box-shadow: 0px 4px 6px -2px #d8dae296;
  color: #3b3856;
  font-size: 14px;
  background-color: #fff;
  text-align: center;
}

.pricng2-feature-content table tr td p{
    margin-bottom: 0px;
    text-align: center;
}


.pricng2-feature-content table tr td:nth-child(2){
    background-color: #f3fcff;
}


.pricng2-feature-content table tr td:nth-child(3){
    background-color: #fcf3ff;
}

.pricng2-feature-content table tr td:nth-child(4){
    background-color: #f0edfd;
}

.pricng2-feature-content table tr td:nth-child(5){
    background-color: #ecf1f4;
}



