@import url('https://fonts.cdnfonts.com/css/gilroy');

:root {
    --primaryColor: #3398DB;
    --blackColor: #000;
    --whiteColor: #fff;
    --smPadding: 2rem 1.5rem;
    --lgPadding: 4rem 0
}

body {
    font-size: 14px;
    color: var(--blackColor);
}

@font-face {
    font-family: "cookieRegular";
    src: url(../fonts/Cookie-Regular.ttf);
}

@font-face {
    font-family: 'gilroyRegular';
    src: url(../fonts/Gilroy-Regular.eot);
    src: url(../fonts/Gilroy-Regular.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Regular.otf) format('otf'),
        url(../fonts/Gilroy-Regular.svg#Gilroy-Regular) format('svg'),
        url(../fonts/Gilroy-Regular.woff) format('woff'),
        url(../fonts/Gilroy-Regular.ttf) format('truetype'),
        url(../fonts/Gilroy-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroyMedium';
    src: url(../fonts/Gilroy-Medium.eot);
    src: url(../fonts/Gilroy-Medium.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Medium.otf) format('otf'),
        url(../fonts/Gilroy-Medium.svg#Gilroy-Medium) format('svg'),
        url(../fonts/Gilroy-Medium.ttf) format('truetype'),
        url(../fonts/Gilroy-Medium.woff) format('woff'),
        url(../fonts/Gilroy-Medium.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroySemiBold';
    src: url(../fonts/Gilroy-SemiBold.ttf) format('truetype');
}


@font-face {
    font-family: 'gilroyHeavy';
    src: url(../fonts/Gilroy-Heavy.eot);
    src: url(../fonts/Gilroy-Heavy.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Heavy.otf) format('otf'),
        url(../fonts/Gilroy-Heavy.svg#Gilroy-Heavy) format('svg'),
        url(../fonts/Gilroy-Heavy.ttf) format('truetype'),
        url(../fonts/Gilroy-Heavy.woff) format('woff'),
        url(../fonts/Gilroy-Heavy.woff2) format('woff2');
}


@font-face {
    font-family: 'gilroyExtraBold';
    src: url(../fonts/Gilroy-ExtraBold.eot);
    src: url(../fonts/Gilroy-ExtraBold.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-ExtraBold.otf) format('otf'),
        url(../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold) format('svg'),
        url(../fonts/Gilroy-ExtraBold.ttf) format('truetype'),
        url(../fonts/Gilroy-ExtraBold.woff) format('woff'),
        url(../fonts/Gilroy-ExtraBold.woff2) format('woff2');
}

@font-face {
    font-family: 'gilroyBold';
    src: url(../fonts/Gilroy-Bold.eot);
    src: url(../fonts/Gilroy-Bold.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Bold.otf) format('otf'),
        url(../fonts/Gilroy-Bold.svg#Gilroy-Bold) format('svg'),
        url(../fonts/Gilroy-Bold.ttf) format('truetype'),
        url(../fonts/Gilroy-Bold.woff) format('woff'),
        url(../fonts/Gilroy-Bold.woff2) format('woff2');
}

@font-face {
    font-family: 'Gilroy-Black';
    src: url(../fonts/Gilroy-Black.eot);
    src: url(../fonts/Gilroy-Black.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Gilroy-Black.otf) format('otf'),
        url(../fonts/Gilroy-Black.svg#Gilroy-Black) format('svg'),
        url(../fonts/Gilroy-Black.ttf) format('truetype'),
        url(../fonts/Gilroy-Black.woff) format('woff'),
        url(../fonts/Gilroy-Black.woff2) format('woff2');
}

@font-face {
    font-family: 'tiro_devanagari_hindiregular';
    src: url('../fonts/tirodevanagarihindi-regular-webfont.woff2') format('woff2'),
         url('../fonts/tirodevanagarihindi-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@keyframes heading {
    0% {
        width: 10px;
    }

    50% {
        width: 100px;
    }

    100% {
        width: 10px;
    }
}

@keyframes triangle {
    0% {
       left: 120px;
    }

    25% {
        left: 150px;
    }

    50% {
        top: -100px;
    }

    75% {
        top: 0px;
    }

    100% {
        left: 120px;
    }
}


/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* start font class */

.font-cookie {
    font-family: "cookie";
}

.font-regular {
    font-family: gilroyRegular;
}

.font-medium {
    font-family: gilroyMedium;
}

.font-semiBold {
    font-family: gilroySemiBold;
}

.font-bold {
    font-family: gilroyBold;
}

.font-heavy {
    font-family: gilroyHeavy;
}

.font-extraBold {
    font-family: gilroyExtraBold;
}

.text-primary {
    color: var(--primaryColor) !important;
}


/* end btn css */

.button {
    border: 2px solid transparent;
    outline: none;
    box-shadow: none;
    color: var(--whiteColor);
    font-size: 16px;
    width: fit-content;
    min-width: 165px;
    font-family: 'gilroyRegular';
    padding: 14px 22px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-primary {
    background: var(--primaryColor);
    animation: gradient 3s linear infinite;
    animation-direction: alternate;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'gilroyMedium';
    width: fit-content;
    border: 0;
}

.btn:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor) !important;
}

.btn-primary::before,
.btn-primary::after {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    background-color: #375687;
    transition: all 0.25s;
    content: "";
    z-index: -1;
}

.btn-primary::before {
    top: 0;
    transform: translate(-100%, 0);
}

.btn-primary::after {
    bottom: 0;
    transform: translate(100%, 0);
}

.btn-primary:hover::before,
.btn-primary:hover::after {
    transform: translate(0, 0);
}

.btn-white {
    border: 2px solid var(--whiteColor);
}

.btn-orange {
    border: 2px solid var(--primaryColor);
    color: var(--primaryColor);
}

.btn-white {
    border: 2px solid var(--whiteColor);
    color: var(--whiteColor);
}

/* end btn css */

/* start common css section */



.breadcrumb {
    margin-bottom: 0;
}

.cursor-pointer {
    cursor: pointer;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.w-fit {
    width: fit-content;
}

.heading p {
    color: var(--primaryColor);
    font-family: gilroySemiBold;
}

.heading p span,
.heading h3 span {
    width: 70px;
    height: 3px;
    background-color: var(--primaryColor);
    display: flex;
    margin-left: 10px;
    position: relative;
}

.heading span:before {
    content: '';
    background-image: url('../img/heading-element.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 10px;
    height: 3px;
    position: absolute;
    left: 10px;
    top: 0;
    animation: heading 5s linear infinite;
}

.heading h2 {
    /* font-size: 25px; */
    font-family: gilroyExtraBold;
    position: relative;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--primaryColor);
}

.owl-dots .owl-dot.active {
    width: 21px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--primaryColor);
}

p {
    font-family: gilroyMedium;
    line-height: 1.6;
    margin-bottom: 0;
}

h2 {
    font-family: gilroyBlack;
}

section,
footer {
    padding: var(--smPadding);
}

/* end common css section */


.tollfree-boxx {
    padding: 6px 15px;
    border-radius: 10px;
    margin-left: 40px;
    display: flex;
    justify-content: flex-end;
}

.tollfree-icon {
    float: left;
    background-color: var(--primaryColor);
    width: 50px;
    height: 49px;
    border-radius: 7px;
    margin-right: 10px;
    text-align: center;
}

.tollfree-icon i {
    color: #000;
    font-size: 28px;
    position: relative;
    top: 10px;
}

.tollfree-txt span {
    font-size: 19px;
}

.tollfree-txt p {
    font-size: 20px;
    margin-top: -6px;
    margin-bottom: 0;
}

.navbar-toggler-icon {
    background-image: url('../img/download.svg');
    background-size: 76%;
}

.navbar-nav {
    background-color: var(--primaryColor);
    border-radius: 10px;
    padding: 10px;
}

.nav-link {
    color: var(--whiteColor);
}

header .download-icon img {
    width: 120px;
}

.navbar-toggler {
    border: 3px solid #3398db;
    padding: 2px 7px;
}

header .img-logo {
    width: 180px;
}

/* Bannner css start */

.subheading.font-cookie{
    font-size: 30px;
}

.banner .banner-container {
    background-image: url('../img/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 98%;
    border-radius: 25px;
    padding: 1rem;
}


/* Bannner css ends */

/* Features css start */
.feature {
    background-color: #FDFDFE;
}

.feature .item span {
    background: #F7F7F7;
    padding: 24px;
    border-radius: 100px;
}

.feature .item span img {
    width: 70px;
}

/* Feature section end */

/* Download css start */

.download {
    background-color: var(--primaryColor);
}

/* Donwload css end */

/* Testimonial css start */
.testimonial {
    background-image: url("../img/testimonial-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-list .item {
    background-color: var(--whiteColor);
    padding: 1rem;
    position: relative;
    padding-top: 4rem;
    width: 95%;
    margin: 50px auto 25px;
    box-shadow: 0 0 10px #CCC;
}

.testimonial .testimonial-list .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    background-image: url('../img/polygen2.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* border-top: 100px solid red;
    border-right: 100px solid transparent; */
}

.testimonial .testimonial-list .item p {
    font-style: italic;
}

.testimonial .testimonial-list .item .user-img {
    position: absolute;
    top: -40px;
    width: 90px;
}

.testimonial .testimonial-list .item .quote {
    width: 50px;
}

.testimonial .owl-nav {
    display: flex;
    top: -100px;
    right: 20px;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    background-color: var(--primaryColor);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin: 0 5px;
    display: flex;
    padding: 14px;
}

/* Testimonial css end */

/* Footer css start */
footer {
    background-color: #F1F2F6;
}

footer .footer-info span {
    background-color: var(--primaryColor);
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 7px;
    font-size: 30px;
    margin-right: 10px;
}

footer .footer-logo {
    width: 100%;
    max-width: 130px;
    margin: auto;
}

footer .footer-row::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
    position: absolute;
    left: 0;
    bottom: 0;
}

footer .nav-link {
    gap: 15px;
}

footer .nav-link li {
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

footer .nav-link li:last-child {
    border-right: 0;
}

footer .nav-link li:hover {
    color: #999;
}


footer .follow-us {
    gap: 10px;
}

footer .follow-us a {
    border: 1px solid #000;
    width: 45px;
    height: 45px;
    font-size: 25px;
    border-radius: 5px;
}

footer .follow-us a:hover {
    border: 1px solid var(--primaryColor);
    background-color: var(--primaryColor);
    transition: .3s ease-in-out;
}

footer .follow-us a:hover i {
    color: var(--whiteColor);
    transition: .3s ease-in-out;
}

/* Footer css end */

section#breadcrumb {
    background: url('../img/testimonial-bg.png') no-repeat;
    min-height: 180px;
    margin-top: 30px;
    background-position: center;
    background-size: cover;
}

.inner-section {
    background-image: none !important;
}

.counter-box {
    margin-top: 1rem;
    border: 2px dashed #2f2f31;
    padding: 20px 0;
    border-radius: 15px;
    background-color: var(--whiteColor);
}

.counter-icon i {
    color: var(--primaryColor);
}

.counter .counter-icon {
    font-size: 45px;
    margin: 0 auto 0;
}

.counter h3 {
    font-size: 19px;
    font-weight: 300;
    text-transform: capitalize;
    margin-bottom: 0;
}

.counter .counter-value {
    font-size: 45px;
    font-weight: 699;
    letter-spacing: 1px;
    display: block;
    color: var(--primaryColor);
}

.fact {
    background-image: url('/assets/img/bg.png');
    background-repeat: no-repeat;
    background-size: 100% 47%;
}

.info-list {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 2px 27px;
}

.info-list h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-top: 15px;
    font-size: 21px;
}

.info-list .contact-boxx span {
    background: var(--primaryColor);
    width: 40px;
    height: 40px;
    color: var(--whiteColor);
    border-radius: 110px;
    text-align: center;
    font-size: 25px;
}

.info-list .contact-boxx a {
    width: calc(100% - 50px);
}

.info-list .follow-icon a {
    font-size: 40px;
    margin-right: 10px;
    color: var(--primaryColor);
}

.error{
    color:red;
}

.btn-progress {
    position: relative;
    background-image: url(../img/spinner-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    color: transparent !important;
    pointer-events: none;
}
