@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* colors */
    --dark-gray: #2b2727;
    --blue: #1877f2;
    --white: #fff;
    --light-blue: #759cce;
    --light-gray: #f9f9f9;

    /* Sizings */
    --heading: 2rem;
    /* for small heading use calc(--heading-1rem)*/
    --text: 1rem;
    /* for other text size use calculate function */
    --letter-spacing: 1px;
    --line-height: 1.8;

    /* Spacings */
    --gutter: 4rem;
    /*use calc function to use spacing everywhere */
}

/* width */
::-webkit-scrollbar {
    height: 2px;
    opacity: 0;
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #b9b9b9;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #4f9ce4;
    border-radius: 1px;
}

/* Common Css start*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.flex-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.text-size {
    font-size: calc(var(--text) + 3px);
    font-weight: 600;
    letter-spacing: var(--letter-spacing);
    color: var(--dark-gray);
}

.py {
    padding: 10px 0;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.heading {
    font-size: var(--heading);
    letter-spacing: calc(var(--letter-spacing) + 2px);
    color: var(--dark-gray);
    text-transform: capitalize;
}

.heading-small {
    color: var(--blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: calc(var(--letter-spacing) + 1px);
    padding-top: 5rem;
}

.subheading {
    text-transform: uppercase;
    letter-spacing: calc(var(--letter-spacing) + 1px);
    padding-top: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.p-text {
    font-size: calc(var(--text) + .5rem);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    color: var(--dark-gray);
}

.para {
    font-size: calc(var(--text) + .4rem);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    font-weight: 400;
    padding-top: 15px;
    color: var(--dark-gray);
}

.btn {
    display: inline-block;
    background-color: var(--blue);
    padding: 10px 20px;
    color: var(--white);
    border-radius: 4px;
    border: 2px solid var(--blue);
    cursor: pointer;
    transition: all .5s;
}

.gap {
    gap: 13rem;
}

.direction-rev {
    flex-direction: row-reverse;
    gap: 100px;
}

.dir-rtl {
    flex-direction: unset;
}

.pt {
    padding-top: 80px;
    margin: 0 50px;
}

.vertical-align {
    height: 100%;
    display: flex;
}

/* Common Css end*/

/* Header Start */
body {
    position: relative;
}

#header-container {
    position: sticky;
    top: 0;
    z-index: 10;
}

header {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
}

.nav-menu .nav-link {
    padding: 15px 25px;
    display: inline-block;
    color: var(--dark-gray);
    transition: all .3s;
}

.nav-menu .nav-link:hover {
    color: var(--blue);
}

.nav-menu .nav-link i {
    position: relative;
    top: 1px;
    left: 1px;
}

.nav-menu .hide {
    display: inline-block;
    text-align: right;
    width: 100%;
    position: absolute;
    top: 15px;
    right: 0;
    padding: 0 15px;
    display: none;
    color: var(--dark-gray);
}

.drop-down {
    position: relative;
}

.nav-item .p-drop-down {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .32);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .32);
    background: var(--white);
    position: absolute;
    border: none;
    top: 45px;
    left: -167px;
    min-width: 520px;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 20px 0 20px 16px;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
}

.nav-item .p-drop-down::before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    overflow: hidden;
    background: #fff;
    width: 20px;
    height: 20px;
    top: -10px;
    z-index: 999;
    left: 50%;
    transform: rotate(46deg);
}

.drop-down:hover .p-drop-down {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.p-drop-down li {
    width: 240px;
    text-align: left;
    padding: 10px 2px 10px 2px;
    font-weight: 500;
    border-radius: 4px;
    margin: 1px 0px;
}

.p-drop-down li:hover {
    background-color: #1877f2;

    .voice-links-tag {
        color: white;
    }

    .p-drop-down-link {
        color: white;
    }

    .fa-solid,
    .fas {
        color: #ffffff;
    }

    .fa-sharp,
    .fass {
        color: #ffffff;
    }
}

.fa-sharp,
.fass {
    color: #1877f2;
}

.p-drop-down li a {
    /* padding: 15px 2px; */
    /* padding: 4px 8px;
    background-color: #1877f2;
    border-radius: 4px;
    color: white !important; */
}

.p-drop-down li a img {
    width: 11%;
    vertical-align: middle;
}

.p-drop-down li a span {
    padding-left: 2px;
    font-size: 1.6rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.p-drop-down li a p {
    margin-left: 32px;
    font-size: 1.1rem;
}

/* .drop-down .p-drop-down li {
    line-height: calc(var(--line-height) + 2);
} */
.p-drop-down .p-drop-down-link {
    color: var(--dark-gray);
}

.btn:hover {
    background-color: var(--white);
    color: var(--blue);
border: 2px solid var(--blue);
}

.bars {
    outline: none;
    border-radius: 5px;
    color: #181E40;
    width: 37px;
    height: 37px;
    position: relative;
    display: none;
    cursor: pointer;
    overflow: hidden;
    /* border: 1px solid var(--dark-gray); */
}

.bars .first_line {
    width: 25px;
    background-color: #181E40;
    height: 3px;
    position: absolute;
    top: 10px;
    right: 5px;
    transition: all 0.8s;

}

.bars .second_line {
    width: 25px;
    background-color: #181E40;
    height: 3px;
    position: absolute;
    top: 17px;
    right: 5px;
    transition: all 0.5s;

}

.bars .third_line {
    width: 25px;
    background-color: #181E40;
    height: 3px;
    position: absolute;
    top: 24px;
    right: 5px;
    transition: all 0.8s;
}

.change .first_line {
    transform: rotate(-45deg) translate(-7px, 2px);
}

.change .second_line {
    opacity: 0;
}

.change .third_line {
    transform: rotate(45deg) translate(-7px, -3px);
}

/* Changese made for header after 8/11/2024 */
.voice-links a {
    color: var(--dark-gray);
}

.for-gap {
    gap: 100px;
    margin: 60px 0px;
}


/* Header end */
/* Hero section start */
.hero-section .background-color {
    background-color: #1877f2;
    height: 70vh;
    /* padding-top: 7rem; */
    /* margin-top: 57px; */
}

/* .hero-img {
    padding: 45px;
} */
.custom-shape-divider-top-1681107267 svg {
    display: block;
    width: calc(100%);
    height: 10rem;
}

.custom-shape-divider-top-1681107267 .shape-fill {
    fill: #1877F2;
}

/* .hero-title {
    padding-left: 45px;
} */
.hero-title h1 {
    font-size: calc(var(--heading) + 2rem);
    font-weight: 800;
    color: #fea;
}

.hero-title p {
    font-size: calc(var(--text) + .5rem);
    font-weight: 500;
    color: white;
    padding: 4rem 0;
}

.contact-btn .hero-btn {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: var(--blue);
    margin-right: 20px;
}

.contact-btn .hero-btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

.hero-img {
    animation: bounce 2.5s infinite linear;
}

@keyframes bounce {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-13%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* popup start */
.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.8s;
    z-index: 10;
}

.popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    text-align: center;
    border-radius: 10px;
    padding: 30px 20px 13px 20px;
    border: 1px solid #cfcfcf !important;
    background-color: whitesmoke;


}

.welcome-text img {
    width: 35px;
}

.welcome-text p {
    padding: 10px 0;
    font-weight: 600;
    text-transform: capitalize;
}

.show-popup {
    transform: translateY(0%);
    visibility: visible;
}

.popup-closebtn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 5px;
    width: 35px;
    height: 35px;
}

.popup-closebtn .first_line {
    width: 20px;
    background-color: #181E40;
    height: 3px;
    z-index: 100000;
    transform: rotate(-45deg) translate(-5px, -3px);
    display: inline-block;

}

.popup-closebtn .second_line {
    width: 20px;
    background-color: #181E40;
    height: 3px;
    display: inline-block;
    /* position: absolute;
    top: 17px;
    right: 5px; */
    transform: rotate(45deg) translate(-12px, -4px)
}

.popup-closebtn:hover .first_line,
.second_line {
    background-color: rgb(175, 14, 14);
}

.popup-closebtn:hover .second_line {
    background-color: rgb(175, 14, 14);
}


.callback-form {
    width: 100%;
    /* height: 23rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.callback-form div {
    width: 100%;
    margin: 0.6rem 0;
}



.callback-form div input,
select,
#message {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    padding: 10px 7px;
    letter-spacing: 1px;
    font-weight: 500;
}

#message {
    max-height: 5rem;
    max-width: 100%;


}

button {
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    width: 100%;
    /* border-radius: 50px; */
    padding: 9px 20px;
    /* border: 2px solid #1877f2; */
    cursor: pointer;
    letter-spacing: 1.5px;
    background-color: white;
    color: white;
    background-color: #1877f2;
    border-radius: 5px;
    border: 2px solid #1877f2;
    transition: background-color 0.5s;
}

button:hover {
    border: 2px solid #1877f2;
    background-color: white;
    color: black;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 15px;
}

.captachatext-box {
    width: 150px;
    background-color: #bbbbbb;
    padding: 10px 20px;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 600;
    color: #333131;
    text-align: center;
    user-select: none;
    margin-right: 10px;
}

#iconRefresh {
    width: unset;
    cursor: pointer;
}

.callback-captcha-input {
    margin-top: 0.5rem;
}

.err {
    color: red;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-align: start;
    font-weight: 500;
}

/* popup end */
/* Hero section end */


/* About the product section start */
#about-product {
    margin-top: calc(var(--gutter) - 3rem);
}

.about-titles h1 span {
    color: var(--blue);
}

.about-titles h1 {
    position: relative;
}

.about-titles h1::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid var(--blue);
    left: 2px;
    bottom: -8px;
    width: 37px;
}

.about-titles p {
    /* padding: 4rem 0; */
}

/* About the product section end */

/* our product section start */
#product {
    margin-top: var(--gutter);
    background-color: var(--light-gray);
    padding-bottom: var(--gutter);
    position: relative;
}

.animation .shape1 {
    position: absolute;
    left: 12%;
    top: 14%;
    animation: moveLeftBounce 3s linear infinite;
}

@keyframes moveLeftBounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }

}

.animation .shape2 {
    position: absolute;
    left: auto;
    right: 16%;
    top: 5%;
    transform: translateY(-20%) translateX(-15%);
    animation: animationFramesOne 20s infinite linear;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 0122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

.animation .shape3 {
    position: absolute;
    top: 50%;
    left: 15px;
    animation: rotate 3s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.animation .shape4 {
    position: absolute;
    left: 16px;
    bottom: 5%;
    transform: translateY(-20%) translateX(-15%);
    animation: animationFramesOne 20s infinite linear;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0, -50px) rotate(0);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 62px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 50px) rotate(108deg);
    }

    80% {
        transform: translate(-20px, 40px) rotate(144deg);
    }

    100% {
        transform: translate(0, -50px) rotate(0);
    }
}

.animation .shape5 {
    position: absolute;
    right: 12%;
    bottom: 5%;
    animation: moveRightBounce 3s linear infinite;
}

@keyframes moveRightBounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }

}

.p-heading {
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
    padding: 2rem 0;
    position: relative;
    color: var(--dark-gray);
}

.p-heading::before {
    content: "";
    position: absolute;
    border-bottom: 3px solid #759cce;
    left: 42%;
    bottom: -5px;
    width: 90px;
}

.p-heading::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid var(--blue);
    left: 55%;
    bottom: -5px;
    width: 30px;
}

.wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 37px;
    margin-top: 6rem;
}

.product1 {
    flex-direction: column;
    justify-content: unset;
    text-align: center;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 0 3px #ddd8d87a;
    position: relative;
    animation-delay: 0.3s;
    transition: all .3s ease-in-out;

}

.product1:hover {
    transform: translateY(-10px);
}

.product1::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 0%;
    height: 5px;
    bottom: 0;
    right: 0;
    background-color: var(--blue);
    transition: all 0.3s ease-in-out;
}

.product1:hover::after {
    width: 100%;
    left: 0;
}

.product-icon {
    font-size: 2.5rem;
    margin: 25px 0;
    /* color: white;
    background-color: #1877F2;
    padding: 7px 14px;
    border-radius: 50%; */
}

.product-icon,
.feature-icon i::before {
    border: 1px solid #1877f2;
    padding: 12px;
    font-size: 35px;
    border-radius: 10%;
    box-shadow: 0 3px 30px rgba(24, 119, 242, .3);
    background: rgba(24, 119, 242, .1);
    color: #1877f2;
}

.product-heading {
    text-transform: capitalize;
    text-align: center;
    letter-spacing: var(--letter-spacing);
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .5s;
    color: var(--dark-gray);
    padding-top: 15px;
}

.product-heading:hover {
    color: var(--blue);
}

.product-text {
    padding: 15px 0;
    font-size: calc(var(--text) + .3rem);
}


/* our product section end */
/* feature section start */
#features {
    margin-top: var(--gutter);
}

.features-heading-left {
    padding-top: 0;
    text-align: left;
}

.heading-div {
    width: 30%;
}

.features-heading {
    padding: 20px 0;
    position: relative;
    font-weight: 500;
}

.width-row {
    margin-top: 0;
    width: 70%;
    grid-template-columns: auto auto;
    gap: 20px;
}

.flex-start {
    align-items: flex-start;
}

.feature1 {
    align-items: flex-start;
    transition: all 0.3s;
    padding: 30px;
}

.feature1:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .35);
    border-radius: 4px;
}

.feature1 .feature-icon {
    font-size: 1.8rem;
    color: white;

    padding: 6px 12px;
    border-radius: 7px;
}

.features-text {
    padding: 0 10px;
}

.f-heading {
    text-transform: capitalize;
    letter-spacing: calc(var(--letter-spacing) + 1px);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 10px;
    color: var(--dark-gray);
}

.f-text {
    font-size: calc(var(--text) + .3rem);
}

.features-heading::before {
    content: "";
    position: absolute;
    border-bottom: 3px solid #759cce;
    left: 15%;
    bottom: -2px;
    width: 90px;
}

.features-heading::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid #3687f1;
    left: 54%;
    bottom: -2px;
    width: 40px;
}

/* feature section end */

/* testimonial section start */
#testimonials {
    background-color: #f8f8f8;
    margin-top: var(--gutter);
    padding-bottom: 5rem;
    position: relative;
}

.testimonial {
    width: 800px;
    white-space: nowrap;
    margin: 60px auto;
    transition: transform 1s;
}

.testimonial-tile {
    display: inline-block;
    opacity: 0;
    transition: opacity 1s;
}

.testimonial-tile.active {
    opacity: 1;
}

.testimonial-tile:not(:first-child) {
    margin-left: 20px;
}

.testimonial1 {
    width: 800px;
    flex-direction: column;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px 10px;
    /* opacity: 0;
    transition: opacity 1s; */
    /* position: relative; */
}

.controls {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%);
}

.controls span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--blue);
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-image {
    /* position: absolute;
    top: -10px; */
    width: 150px;
    margin-bottom: 30px;
}

.testimonial-image img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.testimonial-heading-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;

}

.testimonial-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 10px 40px;
}

/* testimonial section end */
/* footer section start */
.footer-section {
    background-color: #d3d3d3;
    margin-top: 30px;
}

.footer-wraper {
    display: grid;
    grid-template-columns: auto auto auto auto;
}

.footer-margin {
    gap: 35px;

}

.footer-flex {
    display: flex;
    gap: 20px;
}

.footer-heading {
    color: var(--dark-gray);
    text-transform: capitalize;
    letter-spacing: var(--letter-spacing);
    padding-top: 5rem;
    margin-bottom: 25px;
    font-size: calc(var(--text) + 3px);
    border-bottom: 1px solid #b9b9b9;
    text-align: center;
    padding-bottom: 5px;
}

.about-us p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
}


.footer-social li a i {
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border: 1px solid #1877F2;
    border-radius: 50px;
    color: #000;
    -webkit-transition: .5s;
    transition: .5s;
    text-align: center;
    font-size: 1.4rem;
    transition: all 0.5s;
}

.footer-social li a i:hover {
    background-color: #1877F2;
    color: var(--white);
}

.footer-quick-links li a {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    display: inline-block;
    color: #000;
    padding-bottom: 16px;
}

.footer-info-contact {
    color: #000;
    padding-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
}

.footer-info-contact i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--dark-gray);
}

.social-div {
    margin-top: 50px;
}

.footer-social li {
    margin-right: 10px;
}

.copy-right-area {
    margin-top: 20px;
    background-color: whitesmoke;
    padding: 20px 0;
}

.copy-right-area .policy a {
    padding-left: 20px;
    color: var(--dark-gray);
    cursor: pointer;
    display: inline-block;
}

/* footer section end */

/* Responsinve css start */
/* @media screen and (min-width:280px) {
    .container {
        max-width: 260px;
    }

}
  
@media screen and (min-width:370px) {
    .container {
        max-width: 330px;
    }
} */

/* missedcall page start here */
.icon-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.icon-wrapper-tiles {
    width: 25%;
    text-align: center;
    transition: all 0.3s;
    padding: 30px;
}

.icon-wrapper-tiles:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .35);
}

.icon-img {
    width: 60px;
}

.icon-text {
    padding-top: 5px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

/* missedcall page end here */
@media screen and (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media screen and (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (min-width:810px) {
    .container {
        max-width: 780px;
    }
}

@media screen and (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (min-width:1400px) {
    .container {
        max-width: 1320px;

    }
}

@media screen and (max-width:992px) {
    .brdr {
        height: 100% !important;
        margin-bottom: 50px;
    }
    .nav-menu .nav-link {
        padding: 15px 15px;
    }

    .logo {
        width: 170px;
    }

    /* .hero-img {
        display: none;
    } */
    .gap {
        gap: 0;
        justify-content: center;
    }

    .hero-title {
        padding-right: 30px;
    }

    .hero-title h1 {
        font-size: calc(var(--heading) + 1rem);
        font-weight: 700;
        color: #fea;
    }

    .hero-title p {
        padding: 3rem 0;
    }

    .direction-rev {
        /* flex-direction: column-reverse; */
        gap: 30px;
    }

    .wrapper {
        grid-template-columns: auto auto;
        /* justify-content: center; */
    }

    .feature1 {
        width: 100%;
    }

    .heading-div {
        width: 40%;
    }

    .width-row {
        margin-top: 0;
        width: 60%;
        gap: 0;
        grid-template-columns: auto;
    }

    .features-heading::before {
        width: 100px;
    }

    .features-heading::after {
        display: none;
    }

    .about-us p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .footer-quick-links li a {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .p-text {
        font-size: calc(var(--text) + .2rem);
    }

    .footer-info-contact {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .footer-heading {
        font-size: var(--text);
    }

    .testimonial {
        width: 500px;
    }

    .icon-wrapper-tiles {
        width: 50%;
    }

    @keyframes animationFramesOne {
        0% {
            transform: translate(0, 0) rotate(0);
        }

        20% {
            transform: translate(73px, -1px) rotate(36deg);
        }

        40% {
            transform: translate(100px, 72px) rotate(72deg);
        }

        60% {
            transform: translate(83px, 0122px) rotate(108deg);
        }

        80% {
            transform: translate(-40px, 72px) rotate(144deg);
        }

        100% {
            transform: translate(0, 0) rotate(0);
        }
    }

}

@media screen and (max-width:810px) {

    .brdr {
        height: 100% !important;
        margin-bottom: 50px;
    }
    .btn-box {
        display: none;
    }

    .bars {
        display: block;
    }

    .nav-item {
        width: 100%;
        border-top: 1px solid rgb(228, 228, 228);
    }

    .nav-menu .hide {
        display: inline-block;
    }

    .hide-icon {
        display: none;
    }

    .fix-width {
        position: relative;
    }

    .navigation {
        width: 100%;
        position: absolute;
        left: 0px;
        top: 57px;
        background-color: white;
        z-index: 100;
    }

    .nav-menu {
        justify-content: flex-start;
        flex-direction: column;
        align-items: start;
        width: 100%;
        height: 0;
        overflow-y: scroll;
        transition: height 0.6s;
    }

    .nav-menu-height {
        height: 40vh;
    }

    .nav-item .p-drop-down {
        box-shadow: none;
        background: var(--white);
        position: static;
        border: none;
        width: 100%;
        z-index: 99;
        display: none;
        opacity: 0;
        visibility: visible;
        border-radius: 0;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        padding-top: 0;
        padding-left: 0;
        min-width: auto;
    }

    .show {
        display: block !important;
    }

    .nav-item .p-drop-down li {
        width: 100%;
        border-top: 1px solid rgb(228, 228, 228);
        border-radius: unset;
        margin: 0;
        padding: 1em 10% 10px;
    }

    .nav-item .p-drop-down li a {
        display: inline-block;
        width: 250px;
    }

    .nav-item .p-drop-down::before {
        display: none;
    }

    .hero-img {
        animation: bounce 2.5s infinite linear;
    }

    @keyframes bounce {
        0% {
            transform: translateY(0%);
        }

        50% {
            transform: translateY(-12%);
        }

        100% {
            transform: translateY(0%);
        }
    }

}

@media screen and (max-width:768px) {
    .brdr {
        height: 100% !important;
        margin-bottom: 50px;
    }
    :root {
        --line-height: 1.3;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .w-50 {
        width: 100%;
    }

    .background-color {
        padding-top: 3rem !important;
        height: 100% !important;
    }

    .hero-title {
        padding-right: 0px;
    }

    .hero-title p {
        padding: 1rem 0;
    }

    .hero-image {
        padding: 50px;
        height: 100%;
    }

    .direction-rev {
        flex-direction: column;
    }

    #about-product {
        margin-top: calc(var(--gutter) - 4rem);
    }

    .about-titles p {
        padding: 2rem 0;
        line-height: 1.7;
    }

    .footer-wraper {
        grid-template-columns: auto auto;
        gap: 50px;
    }

    .footer-heading {
        font-size: calc(var(--text) + 5px);
    }

    .p-heading::before {
        content: "";
        position: absolute;
        border-bottom: 3px solid #759cce;
        left: 36%;
        bottom: -5px;
        width: 80px;
    }

    .features-heading::before {
        content: "";
        position: absolute;
        border-bottom: 3px solid #759cce;
        left: 30%;
        bottom: -5px;
        width: 80px;
    }

    .product1 {
        padding: 20px 20px;
    }

    .for-gap {
        gap: 30px;
        flex-direction: column;
    }
    .captachatext-box {
        width: 90px;
    }
    @keyframes animationFramesOne {
        0% {
            transform: translate(0, 0) rotate(0);
        }

        20% {
            transform: translate(53px, -1px) rotate(36deg);
        }

        40% {
            transform: translate(73px, 72px) rotate(72deg);
        }

        60% {
            transform: translate(53px, 0122px) rotate(108deg);
        }

        80% {
            transform: translate(-40px, 72px) rotate(144deg);
        }

        100% {
            transform: translate(0, 0) rotate(0);
        }
    }

}

@media screen and (max-width:576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .brdr {
        height: 100% !important;
        margin-bottom: 50px;
    }
    .nav-menu .nav-link {
        display: block;
    }

    .hero-title h1 {
        font-size: calc(var(--heading) + 3px);
    }

    .hero-title p {
        font-size: calc(var(--text) + .2rem);
    }

    .hero-content {
        text-align: left;
    }

    .hero-image {
        padding: 60px 0 0 0;
    }

    .heading {
        font-size: calc(var(--heading) - 3px);
        letter-spacing: calc(var(--letter-spacing) + 2px);
    }

    .wrapper {
        grid-template-columns: auto;
    }

    .flex-start {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .heading-div {
        width: 100%;
    }

    .features-heading-left {
        text-align: center;
    }

    .features-heading {
        text-align: center;
    }

    .width-row {
        width: 100%;
    }

    .p-heading::before {
        content: "";
        position: absolute;
        border-bottom: 3px solid #759cce;
        left: 30%;
        bottom: -5px;
        width: 60px;
    }

    .features-heading::before {
        left: 37%;

    }

    #features {
        margin-top: calc(var(--gutter) - 3rem);
    }

    .width-row {
        padding-top: 40px;
    }

    .footer-wraper {
        grid-template-columns: auto;
        gap: 0px;
    }

    .testimonial1 {
        width: 100%;
    }

    .social-div {
        flex-direction: column;
    }

    .footer-logo {
        margin-top: 10px;
    }

    .contact-btn .hero-btn {
        margin-right: 7px;
    }

    .text-size {
        font-size: 1.1rem;
    }

    .contact-form {
        width: 90% !important;
    }

    .pt {
        margin: 0;
    }

    .icon-wrapper-tiles {
        width: 100%;
    }

    @keyframes animationFramesOne {
        0% {
            transform: translate(0, 0) rotate(0);
        }

        20% {
            transform: translate(33px, -1px) rotate(36deg);
        }

        40% {
            transform: translate(43px, 72px) rotate(72deg);
        }

        60% {
            transform: translate(33px, 0122px) rotate(108deg);
        }

        80% {
            transform: translate(-40px, 72px) rotate(144deg);
        }

        100% {
            transform: translate(0, 0) rotate(0);
        }
    }

    .popup-form {
        width: 350px;
    }

}

@media screen and (max-width:380px) {
    .feature1 {
        padding: 30px 0px;
    }

    .popup-form {
        width: 320px;
    }
    .captachatext-box {
        width: 80px;
    }

    @keyframes animationFramesOne {
        0% {
            transform: translate(0, 0) rotate(0);
        }

        20% {
            transform: translate(33px, -1px) rotate(36deg);
        }

        40% {
            transform: translate(40px, 72px) rotate(72deg);
        }

        60% {
            transform: translate(33px, 0122px) rotate(108deg);
        }

        80% {
            transform: translate(-40px, 72px) rotate(144deg);
        }

        100% {
            transform: translate(0, 0) rotate(0);
        }
    }

}

@media screen and (max-width:330px) {
    .popup-form {
        width: 260px;
    }
}

@media screen and (max-width:280px) {
    .contact-btn .hero-btn {
        margin-right: 7px;
    }

    .text-size {
        font-size: 1.1rem;
    }

    .contact-form {
        width: 100% !important;
    }

    .popup-form {
        width: 250px;
    }

}

/* Responsinve css end */


.float {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    bottom: 96px;
    right: 25px;
    z-index: 999;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    animation-name: jiggle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes jiggle {

    0%,
    65% {
        transform: scale(1, 1);
    }

    2% {
        transform: scale(0.9, 1.1) translatey(-5px);
    }

    4% {
        transform: scale(0.8, 1.2) translatey(-10px);
    }

    6% {
        transform: scale(0.9, 1.1) translatey(-15px);
    }

    8% {
        transform: scale(1.1, 1.2) translatey(-10px);
    }

    11% {
        transform: scale(1.1, 1.1) translatey(-5px);
    }
}

.float1 {
    bottom: 170px;
    animation: wiggle 4s 2s infinite !important;
}

@keyframes wiggle {

    5%,
    50% {
        transform: scale(1);
    }

    10% {
        transform: scale(0.9);
    }

    15% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1.15) rotate(-5deg);
    }

    25% {
        transform: scale(1.15) rotate(5deg);
    }

    30% {
        transform: scale(1.15) rotate(-3deg);
    }

    35% {
        transform: scale(1.15) rotate(2deg);
    }

    40% {
        transform: scale(1.15) rotate(0);
    }
}

.float img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}





body {
    font-family: 'Roboto';
}

.btn-popup {
    display: block;
    width: 170px;
    right: 2rem;
    margin: 3em auto;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50em;
    background: #35a785;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
    transition: 300ms all;
}

.btn-popup:hover {
    opacity: 0.8;
}

.custom-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1000;
    width: 100%;
    background-color: rgba(94, 110, 141, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: 500ms all;
}

.custom-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transition: 1s all;
}

.popup-content {
    transform: translateY(-50%);
    transition: 500ms all;
    position: relative;
    width: 40%;
    margin: 2em auto;
    top: 5%;
    padding: 5rem;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.is-visible .popup-content {
    transform: translateY(0);
    transition: 500ms all;
}

.popup-close {
    position: absolute;
    top: 8px;
    font-size: 0;
    right: 8px;
    width: 30px;
    height: 30px;
}

.popup-close::before,
.popup-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #ffffff;
}

.popup-close::before {
    transform: rotate(45deg);
    left: 8px;
}

.popup-close::after {
    transform: rotate(-45deg);
    right: 8px;
}

.popup-close:hover:before,
.popup-close:hover:after {
    background-color: #35a785;
    transition: 300ms all;
}

/* form popup start */
.formWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.form-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.col {
    flex: 1;
    margin-right: 10px;
}

.col:last-child {
    margin-right: 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.extended {
    margin-bottom: 20px;
}

.callback-captcha {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.captachatext-box {
    flex: 1;
}

.callback-captcha-input {
    flex: 2;
    margin-left: 10px;
}

.err {
    color: red;
    margin-top: 5px;
}

.btns {
    display: block;
    width: 100%;
    padding: 14px 18px;
    background-color: #1877f2;
    color: #fff;
    border: 2px solid #1877f2;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;

}

.btns:hover {
    border: 2px solid #1877f2 !important;

}


/* Media Queries */
@media screen and (max-width: 768px) {
    .col {
        flex: 1 0 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .about-image {
        height: 100%;
    }

}

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

.cb1 {
    font-size: 12px;
    margin-left: 33px;
}

/* form popup End*/

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

.d1 {
    padding: 13px 122px 14px 3px;
}

.d2 {
    padding: 14px 171px 14px 3px;
}

.d3 {
    padding: 14px 99px 14px 3px;
}

.d4 {
    padding: 14px 118px 16px 3px;
}

.d5 {
    padding: 13px 97px 14px 3px;
}

.d6 {
    padding: 14px 68px 14px 3px;
}

.d7 {
    padding: 13px 39px 15px 3px;
}

.d8 {
    padding: 9px 113px 9px 3px;
}

.d9 {
    padding: 9px 99px 9px 3px;
}

.d10 {
    padding: 9px 153px 9px 3px;
}

.d11 {
    padding: 9px 161px 9px 3px;
}

.d12 {
    padding: 9px 53px 9px 3px;
}

.d13 {
    padding: 9px 99px 9px 3px;
}

.d71 {
    padding: 14px 157px 14px 3px;
}

.d51 {
    padding: 14px 136px 14px 3px;
}

.d91 {
    padding: 14px 131px 14px 3px;

}

.sd1 {
    padding: 14px 177px 14px 3px;
}

.sd2 {
    padding: 14px 73px 14px 3px;
}

.sd3 {
    padding: 14px 119px 14px 3px;
}

.sd4 {
    padding: 14px 121px 14px 3px;
}

.sd5 {
    padding: 14px 67px 14px 3px;
}

.sd6 {
    padding: 14px 88px 15px 3px;
}

.sd7 {
    padding: 14px 139px 16px 3px;
}

.sd8 {
    padding: 14px 125px 16px 3px;
}

.sd9 {
    padding: 14px 22px 14px 3px;
}

.sd10 {
    padding: 14px 109px 14px 3px;
}

.sd11 {
    padding: 14px 101px 14px 3px;
}

.p-drop-down-link img {
    width: 25px !important;
}

.sd12 {
    padding: 14px 55px 16px 3px;
}

.heading-smallss {
    color: var(--blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: calc(var(--letter-spacing) + 1px);
    padding-top: 2rem;
}

.gl {
    margin-top: 9px;
    margin-right: 10px;
    font-size: 8px !important;
    margin-left: 8px;
}

.paragl {
    display: flex;
}

.pd-7-70 {
    padding: 7px 70px;
}

.fa-solid,
.fas {
    font-weight: 600;
    color: #1877f2;
    font-size: 16px;
}

.voice_menu {
    border-right: 1px solid rgb(224, 221, 243);
}

.message_menu {
    padding-left: 10px;
}

.contact-btns {
    padding-top: 40px;
}

.contact-btns .hero-btns {
    background-color: var(--blue);
    border: 2px solid var(--white);
    color: var(--white);
    margin-right: 20px;
}

.contact-btns .hero-btns:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.err {
    color: red;
    font-size: 0.875em;
}

.p-a {
    position: absolute;
    right: 253px;
    bottom: -8px;
}
.p-r{
    position: relative;
}
.row1s{
    position: relative;
}
.row1s input{
    margin-top: 10px;
    position: absolute;
}