/*
font-family: 'PT Sans', sans-serif;                                       
*/
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Light.woff2') format('woff2'),
        url('../fonts/ProductSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-LightItalic.woff2') format('woff2'),
        url('../fonts/ProductSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Regular.woff2') format('woff2'),
        url('../fonts/ProductSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Bold.woff2') format('woff2'),
        url('../fonts/ProductSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Medium.woff2') format('woff2'),
        url('../fonts/ProductSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth
}
body,
html {
    overflow-x: clip
}
*,
:after,
:before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit
}
a,
aside,
body,
del,
div,
dl,
footer,
header,
li,
main,
ol,
p,
section,
span,
ul {
    padding: 0;
    margin: 0;
    text-shadow: none;
    outline: 0;
    box-shadow: none;
    text-decoration: none;
    list-style: none
}
b,
strong {
    font-weight: bold
}
body {
    font-family: 'Product Sans', sans-serif;
    font-weight: normal;
    color: #292D4B;
    font-size: 18px;
    line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
p {
    margin-bottom: 25px;
}
a {
    color: #27408B;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
a:focus,
a:hover {
    color: #292D4B
}
/* Header */
header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;
}
header.sticky {
    box-shadow: 0 4px 6px -6px #222;
}
header .menu-item+.menu-item {
    margin-left: 0;
}
header .menu-item {
    line-height: 1;
}
.navbar-brand {
    padding: 0;
    margin-right: 30px;
}
header .menu-item a {
    color: #444444;
    position: relative;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    padding: 24px 30px 24px 20px;
    display: block;
}
header .menu-item a:hover {
    color: #0095eb;
}
header li.menu-item-has-children>a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -1px;
    border-top: 5px solid #ccc;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 1;
}
header .menu-item a:hover:after {
    border-top-color: #0095eb;
}
header .navbar {
    padding: 0;
    margin: 0;
}
.right-links .btn {
    font-size: 16px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    text-decoration: none !important;
    line-height: 21px;
    box-sizing: border-box;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    border-radius: 4px;
}
.right-links .btn+.btn {
    margin-left: 16px;
}
.right-links .btn-no-bg {
    color: #1a73e8;
}
.right-links .btn-secondary {
    background: #fff;
    border-color: #dadce0;
    color: #1a73e8;
}
.right-links .btn-primary {
    background: #1a73e8;
}
.right-links .btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(0, 0, 0, .05);
    z-index: 1;
    transition: width .2s ease-in-out;
}
.right-links .btn:hover:after {
    width: 100%;
}
header .navbar-nav>li.menu-item-has-children ul.sub-menu {
    -ms-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -ms-transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -ms-transform-origin: top;
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
    display: block;
    z-index: 100;
}
.sub-menu {
    position: absolute;
    top: 100%;
    margin: auto;
    min-width: 200px;
    background: #F2F2F2;
    padding: 0;
    border-radius: 0;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
header .navbar-nav .menu-item-has-children:hover ul.sub-menu {
    display: block;
    opacity: 1;
    -ms-transform: rotateX(0);
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    -ms-transform-origin: top;
}
ul.sub-menu li a {
    color: #5f5f5f;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}
/* Product Page */
.product-banner,
.home-banner, .terms-of-service, .equal-opportunity-policy {
    margin-top: 64px;
}
.ptb-130 {
    padding: 130px 0;
}
h1 {
    font-size: clamp(1.875rem, 1.6587rem + 0.9615vw, 2.8125rem);
    color: #292D4B;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.pb-desc h1 {
    color: #3D66E6;
}
.pb-form {
    background: #F8F8F8;
    box-shadow: 0px 3px 6px #00000024;
    border-radius: 11px;
    padding: 25px;
}
.pb-form p {
    font-size: 20px;
    margin-bottom: 15px;
}
.pb-form .form-control {
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    padding: 14px 12px;
    line-height: 1;
}
.pb-form .form-control:focus {
    border-color: #F4B401;
}
.pb-form .btn-primary,
.pn-desc .btn-primary {
    padding: 8px 22px;
    background: #3D66E6;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: .75px;
}
.pro-trusted {
    margin: 25px 0;
}
.pro-trusted h2 {
    font-weight: normal;
    font-size: clamp(1.75rem, 1.5769rem + 0.7692vw, 2.5rem);
    text-transform: uppercase;
    color: #292D4B;
    margin-bottom: 15px;
}
.pro-trusted h2 b,
.pro-trusted h2 strong {
    font-weight: bold;
    color: #3D66E6;
}
.pro-trusted-slider {
    margin-top: 30px;
}
.ptb-65 {
    padding: 65px 0;
}
.pro-features {
    overflow: hidden;
}
.pro-features h2,
.home-sucess h2,
.home-spend h2,
.home-awards h2,
.home-blog h2 {
    font-weight: bold;
    font-size: clamp(1.625rem, 1.5673rem + 0.2564vw, 1.875rem);
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #3D66E6;
    letter-spacing: 0;
}
.features-row {
    margin-top: 50px;
}
.pro-features .feature-img {
    display: inline-block;
    position: relative;
}
.feature-img img,
.feature-img video {
    width: 100%;
    border: 2px solid #F4B401;
    border-radius: 22px;
    box-shadow: 0px 3px 6px #00000008;
    height: 400px;
    object-fit: contain;
}
.feature-img video {
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.feature-desc h3 {
    font-weight: normal;
    color: #292D4B;
    font-size: 25px;
    letter-spacing: .25;
    margin-bottom: 15px;
}
.feature-desc p {
    color: #444;
}
.feature-desc p:last-child {
    margin: 0;
}
.features-row .row+.row {
    margin-top: 65px;
}
.feature-desc {
    padding-right: 0;
    padding-left: 30px;
}
.features-row .row:nth-child(2n) {
    flex-direction: row-reverse;
}
.features-row .row:nth-child(2n) .feature-desc {
    padding-left: 0;
    padding-right: 30px;
}
.pro-features .shape,
.pro-neverskip .shape,
.pro-faq .shape {
    position: absolute;
    height: 213px;
    width: 213px;
    z-index: 1;
}
.pro-features .shape-1 {
    top: 114px;
    right: -106px;
}
.pro-features .shape-2,
.pro-faq .shape-2 {
    top: 50%;
    left: -106px;
}
.pro-neverskip {
    overflow: hidden;
    padding: 60px 0;
}
.pn-img img {
    max-height: 300px;
    object-fit: contain;
}
.pn-desc p {
    font-size: 27px;
    line-height: 50px;
    color: #E8E8E8;
    letter-spacing: .68px;
    margin: 0;
}
.pn-desc h2 {
    font-size: 38px;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.pn-desc .btn-primary {
    text-transform: uppercase;
}
.pro-neverskip .shape-1 {
    bottom: 0;
    right: -106px;
}
.pro-neverskip .shape-2 {
    top: 42px;
    left: -106px;
}
.pro-key {
    padding: 80px 0;
}
.pro-key h2,
.pro-testi .title-desc h2,
.pro-faq .text-center h2 {
    font-size: 30px;
    color: #3D66E6;
    letter-spacing: .3px;
    margin-bottom: 15px;
}
.pro-key .col-lg-3 {
    margin-bottom: 38px;
}
.key-box {
    width: 100%;
    text-align: center;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.key-box img,
.key-box svg {
    max-width: 75px;
    margin-bottom: 20px;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.key-box h3 {
    font-size: 22px;
    line-height: 31px;
    color: #444444;
    text-align: center;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.key-box:hover svg path {
    fill: #3D66E6;
}
.key-box:hover h3 {
    color: #3D66E6;
}
.mt-50 {
    margin-top: 50px;
}
.pro-testi {
    margin: 75px 0 55px;
}
.pro-testi .title-desc h2 {
    margin-bottom: 10px;
}
.pro-testi .title-desc p,
.pro-faq .text-center p {
    letter-spacing: .68px;
    color: #676767;
}
.top-msg {
    margin: 20px 0 50px;
    padding: 50px 55px;
    background: #E6E7E8;
}
.tm-video>img {
    width: 100%;
    border-radius: 0;
}
.tm-video .vid-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto;
}
.tm-video .vid-btn svg {
    width: 64px;
    height: 64px;
}
.tm-video-desc p {
    letter-spacing: .57px;
    color: #444444;
    margin-bottom: 30px;
}
.tm-video-desc span.name {
    margin: 0;
    font-size: 22px;
    line-height: 37px;
    letter-spacing: .5px;
    font-weight: bold;
    color: #292D4B;
}
.pro-testi .col-lg-12 .swiper-button-prev:after,
.pro-testi .col-lg-12 .swiper-button-next:after {
    display: none;
}
.testi-swiper .testi-box {
    padding: 30px;
    border-radius: 22px;
    background: #E6E7E8;
    text-align: center;
}
.pro-testi .col-lg-12 .swiper-button-prev,
.pro-testi .col-lg-12 .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    cursor: pointer;
    background: #fff;
    left: -40px;
    top: calc(50% + 40px);
}
.pro-testi .col-lg-12 .swiper-button-next {
    left: auto;
    right: -40px;
}
.pro-testi .col-lg-12 .swiper-button-prev:hover,
.pro-testi .col-lg-12 .swiper-button-next:hover {
    background: #0F9D58;
}
.pro-testi .col-lg-12 .swiper-button-prev:hover svg path,
.pro-testi .col-lg-12 .swiper-button-next:hover svg path {
    stroke: #fff;
}
.testi-author {
    margin-bottom: 25px;
}
.testi-swiper .swiper-slide-active+.swiper-slide-next .testi-box {
    background: #3D66E6;
}
.testi-swiper .swiper-slide-active+.swiper-slide-next .testi-box .ta-desc h4,
.testi-swiper .swiper-slide-active+.swiper-slide-next .testi-box .ta-desc p,
.testi-swiper .swiper-slide-active+.swiper-slide-next .testi-box p {
    color: #fff;
}
.testi-swiper .testi-author+p {
    margin: 0;
    min-height: 156px;
}
.ta-desc h4 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 0;
    letter-spacing: .77px;
    color: #292D4B;
}
.ta-desc p {
    margin: 0;
    font-style: italic;
    letter-spacing: 1px;
}
.pro-faq {
    padding: 50px 0;
}
.faqs-acco .accordion-item {
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000008;
    border: 0;
}
.faqs-acco .accordion-button {
    padding: 15px 30px;
    font-size: 19px;
    line-height: 23px;
    letter-spacing: .47px;
    color: #292D4B;
    background: transparent;
    box-shadow: none;
    font-weight: bold;
}
.faqs-acco .accordion-collapse {
    padding: 0px 15px 15px;
}
.faqs-acco .accordion-collapse p {
    font-size: 16px;
    line-height: 26px;
    color: #676767;
    margin: 0;
}
.faqs-acco.accordion-flush .accordion-item .accordion-button.collapsed {
    color: #676767;
}
.faqs-acco .accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg id='Group_10241' data-name='Group 10241' xmlns='http://www.w3.org/2000/svg' width='21.667' height='21.667' viewBox='0 0 21.667 21.667'%3E%3Crect id='Rectangle_195' data-name='Rectangle 195' width='21.667' height='2.5' rx='1.25' transform='translate(0 9.167)' fill='%234285f4'/%3E%3Crect id='Rectangle_196' data-name='Rectangle 196' width='21.667' height='2.5' rx='1.25' transform='translate(12.5 0) rotate(90)' fill='%234285f4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-size: 14px;
    background-position: center;
}
.faqs-acco .accordion-button::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.667' height='2.5' viewBox='0 0 21.667 2.5'%3E%3Cg id='Group_10241' data-name='Group 10241' transform='translate(0 -9.167)'%3E%3Crect id='Rectangle_195' data-name='Rectangle 195' width='21.667' height='2.5' rx='1.25' transform='translate(0 9.167)' fill='%234285F4'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-size: 14px;
    background-position: center;
    width: 40px;
    height: 40px;
    box-shadow: none;
}
.accordion-flush .accordion-item+.accordion-item {
    margin-top: 18px;
}
.pro-faq {
    overflow: hidden;
}
.pro-explore {
    padding: 77px 0;
}
.pro-explore h2 {
    color: #fff;
    font-size: 30px;
    line-height: 37px;
    letter-spacing: .3px;
}
.pro-explore .col-lg-3 {
    display: inherit;
}
.pe-box {
    border-radius: 9px;
    border: 1px solid #fff;
    padding: 35px 45px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.pe-box:before {
    content: '';
    position: absolute;
    background: #fff;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 9px;
    z-index: -1;
}
.pe-box img {
    width: 100%;
    margin-bottom: 30px;
}
.pe-box .pe-desc {
    text-align: center;
}
.pe-box .pe-desc h3 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .36px;
    margin: 0;
}
.pe-box {
    width: 100%;
}
.footer-top {
    padding: 50px 0;
}
.ft-follow p {
    margin: 0;
    color: #707070;
    line-height: 1;
}
.ft-follow p a {
    font-weight: bold;
    color: #707070;
    text-decoration: underline;
}
.ft-follow p a:hover,
.ft-follow p a:focus,
.ft-links a:hover,
.ft-links a:focus {
    color: #3D66E6;
}
.ft-social {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #707070;
    line-height: 1;
}
.ft-social a+a {
    margin-left: 20px;
}
.ft-social a svg {
    width: 22px;
    height: 22px;
}
.ft-social a:hover svg path,
.ft-social a:hover svg rect {
    fill: #3D66E6;
}
.ft-links a {
    color: #707070;
    font-weight: normal;
    line-height: 1;
}
.ft-links a+a {
    margin-left: 30px;
}
.footer-middle {
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.fm-grid {
    display: grid;
    /* grid-template-columns: repeat(5, 1fr); */
    grid-template-columns: 25% 50% 25%;
    gap: 30px;
}
.fm-col p {
	font-size: 16px;
	color: #707070;
	line-height: 25px;
	margin: 25px 0;
	font-weight: 300;
}
.fm-col .ft-social {
	padding: 0;
	margin: 0;
	border: 0;
}
.fm-col.two-cols ul {
	column-count: 2;
}
.widget_nav_menu + .widget_nav_menu {
	margin-top: 15px;
}
.fm-col h6 {
    font-weight: normal;
    color: #707070;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.fm-col ul li a {
    font-size: 14px;
    color: #707070;
    font-weight: normal;
    line-height: 2;
}
.fm-col ul li a:hover,
.fm-col ul li a:focus {
    text-decoration: underline;
    color: #3D66E6;
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: #707070;
}
#toTop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    width: 65px;
    height: 65px;
    box-sizing: border-box;
}
#toTop:hover {
    opacity: .7;
}
.testi-swiper {
    margin-top: 40px;
}
.home-banner, .terms-of-service {
    padding: 15px 0;
}
.home-banner .btn-primary {
    text-transform: uppercase;
}
.home-banner h1 {
    color: #3D66E6;
}
.hbr-desc p {
    max-width: 65%;
}
.hbr-img img {
    max-width: 100%;
}
.hbr-img {
    text-align: center;
}
.hbr-img a {
	pointer-events: none;
}
.home-numbers {
    padding: 50px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 45%, #3D66E6 45%, #3D66E6 100%);
    margin-bottom: 70px;
}
.number-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-items: center;
    background: #292D4B;
    border-radius: 10px;
    padding: 50px 30px;
    gap: 40px;
}
.number-item {
    text-align: center;
    position: relative;
    min-width: 203px;
}
.number-item+.number-item:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #3D66E6;
}
.number-item h3 {
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 10px;
}
.number-item p {
    color: #fff;
    margin: 0;
    text-transform: capitalize;
    font-size: 25px;
}
.suc-links a {
    padding: 5px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #3D66E6;
    text-transform: uppercase;
}
.suc-links a+a {
    margin-left: 10px;
}
.hsu-img img {
    max-width: 100%;
}
.hsu-desc h3 {
    margin-bottom: 25px;
}
.hsu-desc p {
    margin: 0;
}
.spend-box {
    padding: 27px 40px;
    border: 1px solid #E6E7E8;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
}
.spend-box:hover {
    border-color: #3D66E6;
}
.spend-box img {
    max-width: 70px;
    margin-bottom: 10px;
}
.spend-box h4 {
    font-weight: 700;
    font-size: 18px;
    color: #3D66E6;
}
.spend-box p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}
.spend-box a {
    color: #3D66E6;
    font-size: 12px;
    font-weight: 700;
}
.col-2.custom-col {
    width: 20%;
    display: inherit;
}
.hspend-rows {
    margin-top: 30px;
}
.home-awards .col-lg-3 {
    display: inherit;
}
.award-box {
    padding: 30px 35px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
}
.award-box:hover {
    box-shadow: 3px 3px 2px #00000026;
}
.award-img {
    height: 215px;
    margin-bottom: 30px;
}
.award-img img {
    max-width: 185px;
}
.award-box p {
    color: #292D4B;
    margin: 0;
}
.award-box p b,
.award-box p strong {
    color: #3D66E6;
    font-weight: 700;
}
.home-blog {
    margin: 65px 0;
}
.blog-box {
    background: #F4F4F4;
    border-radius: 10px;
    margin-bottom: 30px;
}
.blog-box {
    background: #F4F4F4;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
}
.blog-box img {
    width: 100%;
    border-radius: 10px;
}
.blog-desc {
    padding: 28px;
}
.blog-desc p {
    font-size: 15px;
    line-height: 18px;
    color: #292D4B;
    margin-bottom: 15px;
}
.blog-desc h4 {
    font-size: 20px;
    margin: 0;
    color: #3D66E6;
    font-weight: 700;
}
.row.custom-gutter {
    margin-left: -30px;
    margin-right: -30px;
}
.row.custom-gutter .col-lg-4 {
    padding-left: 30px;
    padding-right: 30px;
}
.home-neverskip .pn-desc h2 {
    font-weight: 400;
    margin-bottom: 5px;
}
.home-neverskip .pn-desc h2 b,
.home-neverskip .pn-desc h2 strong {
    font-weight: 700;
}
.home-neverskip p {
    line-height: 32px;
    font-size: 18px;
    margin-bottom: 15px;
}
.hs-row {
    display: none;
}
.suc-links a.active {
    background: #27408B;
    border-color: #3D66E6;
    color: #fff;
}
.thank-you h1 {
    font-weight: 500;
}
.thank-you h1 {
    font-weight: 500;
    color: #1A73E8;
    line-height: 1.5;
}

.pb-form .input-group p {
    margin: 0;
    width: 100%;
}
.vid-tsti-posti {
    margin-bottom: 0;
}
.faqs-acco .accordion-collapse ul {
    margin: 15px 0;
}
.faqs-acco .accordion-collapse ul li {
    display: flex;
    align-items: center;
}
.faqs-acco .accordion-collapse ul li img {
    max-width: 15px;
    margin-right: 10px;
}
.about-banner .hbr-desc p {
    max-width: 88%;
}
.mission-box {
    margin-bottom: 30px;
}
.mission-box img {
    max-width: 200px;
    margin-right: 50px;
}
.mission-desc h2 {
    text-transform: uppercase;
}
.mission-desc h2 b,
.mission-desc h2 strong {
    font-weight: 400;
    color: #1A73E8;
}
.mission-desc p:last-child {
    margin: 0;
}
.abt-why-box {
    padding: 32px 28px;
    border: 1px solid #3D66E6;
    margin-bottom: 30px;
    max-width: 450px;
}
.abt-why-box img {
    max-width: 60px;
    margin-right: 25px;
}
.aw-desc h3 {
    font-weight: 400;
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 14px;
}
.aw-desc p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}
.about-why .col-lg-5 {
    display: inherit;
}
.about-team .row .col-lg-3 {
    width: 240px;
}
.team-box {
    margin: 0 auto 30px;
    max-width: 175px;
}
.team-box img {
    max-width: 159px;
    margin-bottom: 6px;
}
.team-box h6 {
    font-size: 12px;
    line-height: 16px;
}
.team-box h6 b,
.team-box h6 strong {
    display: block;
    color: #3D66E6;
}
.free-trial-main {
    margin-bottom: 50px;
}
.free-trial-main .row+.row {
    margin-top: 30px;
}
.hms-box+.hms-box {
    padding-top: 25px;
    border-top: 1px solid #292D4B;
}
.hsm-autohr img:first-child {
    width: 76px;
    border-radius: 50%;
    border: 1px solid #292D4B;
    margin-bottom: 12px;
    height: 76px;
    object-fit: cover;
    object-position: center;
}
.hsm-autohr {
    margin-bottom: 25px;
}
.hsm-autohr h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.hsm-autohr h5 {
    font-size: 16px;
    font-weight: 400;
    color: #3D66E6;
    margin-bottom: 0;
}
.hms-box h3 {
    font-size: 18px;
    font-weight: 400;
    color: #3D66E6;
    margin-bottom: 0;
}
.hms-img-grid {
    display: flex;
    margin-top: 20px;
}
.hms-img-grid .img-box img {
    max-width: 70px;
}
.hms-img-grid .img-box+.img-box {
    border-left: 1px solid #E6E7E8;
    padding-left: 5px;
}
.hms-form {
    padding: 25px;
    background: #3D66E6;
    border-radius: 10px;
}
.hms-form p {
    color: #fff;
    margin: 0;
}
.hms-form h4 {
    color: #fff;
    font-size: 18px;
}
.hms-form .form-control {
    padding: 12px 18px;
    border-radius: 8px;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.hms-form div+div {
    margin-top: 15px;
}
.hms-form form {
    margin-top: 25px;
}
.hms-form .btn-secondary {
    font-size: 16px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    text-decoration: none !important;
    line-height: 21px;
    box-sizing: border-box;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    border-radius: 4px;
    background: #292D4B;
    color: #fff;
    border: 0;
}
.hms-form .btn-secondary:hover,
.hms-form .btn-secondary:focus,
.hms-form .btn-secondary:active {
    background: #fff;
    color: #292D4B;
}
.contact-main {
    padding-top: 50px;
}
.con-listing ul {
    max-width: 90%;
    margin-top: 25px;
}
.con-listing ul li {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
}
.con-listing ul li img {
    margin-right: 12px;
    width: 38px;
    height: 38px;
}
.contact-main .row .col-lg-4 {
    display: inherit;
}
.con-box-main {
    padding: 34px 15px;
    border: 1px solid #E6E7E8;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
}
.con-box {
    display: grid;
    grid-template-columns: 24px auto;
    gap: 12px;
}
.con-box+.con-box {
    margin-top: 25px;
}
.con-box img {
    max-width: 24px;
}
.con-desc h4 {
    font-size: 18px;
    color: #3D66E6;
    line-height: 22px;
    letter-spacing: .45px;
    margin-bottom: 4px;
}
.con-desc p {
    margin: 0;
}
.con-box-main .custom-link {
    font-size: 18px;
    line-height: 22px;
    color: #3D66E6;
    margin: 30px 0 0 40px;
    display: inline-block;
    font-weight: 700;
}
/*Blog*/
.single-blog .blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.single-blog .blog-image a {
    display: block;
}
.single-blog .blog-image a img {
    transition: all 0.3s linear;
}
.single-blog .blog-image .top-meta {
    position: absolute;
    top: 35px;
    left: 30px;
}
.single-blog .blog-image .top-meta .date {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: linear-gradient(-180deg, #43baff 0%, #7141b1 100%);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    line-height: 12px;
    padding: 10px;
}
.single-blog .blog-image .top-meta .date span {
    font-size: 28px;
    line-height: 18px;
    font-weight: 500;
    line-height: 30px;
    display: block;
}
.single-blog .blog-content {
    padding: 25px 30px 40px;
    background: #ffffff;
    width: 90%;
    position: relative;
    left: 50%;
    bottom: 10px;
    transform: translateX(-48%);
    margin-top: -40px;
}
.blog-listing .alm-reveal {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}
.blog-listing .alm-reveal > * {
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}
.btn-whatsapp{
    border-radius: 60px;
    box-shadow: 6px 10px 20px #00000030;
    background: #13A698;
    color: #fff;
    padding: 15px 30px;
    border: 1px solid #13A698;
    outline: none;
    box-shadow: none;  
}
.btn-whatsapp:hover, .btn-whatsapp:focus{
    background: #fff;
    border-color: #13A698;
    color: #13A698;
}
.wa-desc h1 b, .wa-desc h1 strong{
    color: #13A698;
}
.wa-desc h1 {
	padding-bottom: 15px;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(to right, rgb(19, 166, 152), #fff);
	border-image-slice: 1;
}
.whatsapp-form{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 4px 3px 16px #00000029;
    border-radius: 50px;
    padding: 30px 20px;
    position: relative;
    bottom: -100px;
    z-index: 2;
}
.whatsapp-form h4 {
	text-align: center;
	margin-bottom: 30px;
    font-size: 22px;
}
.whatsapp-form .form-group{
    margin-bottom: 15px;
}
.whatsapp-form label{
    line-height: 1;
    font-size: 16px;
}
.whatsapp-form input.form-control{
    border: 0;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 2px solid #13A698;
    padding-top: 0;
}
.wa-love{
    position: relative;
    padding: 50px 0;
    background: #13A698;
    top: 0;
}
.wa-love h4 {
	margin: 0;
	font-weight: 400;
	color: #fff;
	font-size: 32px;
}
.mob-img img {
	max-width: 100%;
}
.wa-mobile-main .listing-box{
    margin-bottom: 20px;
}
.wa-mobile-main .img-box {
	width: 90px;
	height: 90px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 12px #00000029;
	border-radius: 29px;
	position: relative;
	text-align: center;
    margin-right: 20px;
}
.wa-mobile-main .img-box img {
	max-width: 35px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
}
.wa-mobile-main .listing-box h5 {
	margin: 0;
}
.wa-numbers{
    background: #13A698;
}
.wa-num-box img{
    max-width: 55px;
    margin-right: 20px;
}
.wa-num-box p{
    margin: 0;
    color: #fff;
    font-weight: 700;
}
.wa-mobile-main {
    position: relative;
    top: 0;
}
.mob-img {
	position: relative;
	bottom: 0;
}
.wa-trial h2{
    color: #13A698;
}
.wa-trial-box {
	background: #F8F8F8;
	padding: 5px;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.price-main {
	padding: 20px 25px;
}
.price {
	display: block;
	line-height: 1;
	color: #13A698;
	font-size: 25px;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s
}
.price b, .price strong {
	font-size: 40px;
}
.wa-trial-box p {
	margin: 0;
    padding: 10px 25px 20px;
}
.wa-trial-box:hover {
	transform: scale(1.1);
}
.wa-trial-box:hover .price-main{
    background: #13A698;
}
.wa-trial-box:hover .price-main .price{
    color: #fff;
}
.wa-desc {
	margin-top: 100px;
}
@media only screen and (max-width: 1199px) {
    .single-blog .blog-content {
        padding: 25px 20px 40px;
        width: 95%;
    }
}
.single-blog .blog-content .blog-meta span {
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    color: #999999;
    margin-right: 15px;
}
@media only screen and (max-width: 575px) {
    .single-blog .blog-content .blog-meta span {
        margin-right: 12px;
    }
}
.single-blog .blog-content .blog-meta span i {
    color: #086ad8;
    margin-right: 5px;
}
.single-blog .blog-content .title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #0e0e0e;
    padding-right: 15px;
    margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
    .single-blog .blog-content .title {
        padding-right: 0;
    }
}
.single-blog .blog-btn .blog-btn-link {
    font-size: 12px;
    font-weight: 600;
    color: #086ad8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.3s linear;
}
.single-blog .blog-btn .blog-btn-link i {
    transition: all 0.3s linear;
}
.single-blog .blog-btn .blog-btn-link:hover i {
    margin-left: 5px;
}
.single-blog:hover .blog-image a img {
    transform: scale(1.1);
}
.single-blog {
    width: 100%;
}
.blog-listing,
.blog-detail-main {
    padding-top: 50px;
}
/*--Page Pagination--*/
.techwix-pagination {
    margin: 50px 0;
}
.techwix-pagination .pagination li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s linear;
}
.techwix-pagination .pagination li a.active {
    background-color: #086ad8;
    color: #ffffff;
}
/*--
Blog Details CSS
/*----------------------------------------*/
.blog-details-section .blog-details-wrap {
    margin-top: -40px;
}
.blog-details-post {
    padding-right: 30px;
}
.blog-details-post .single-blog-post {
    margin-top: 40px;
}
.blog-details-post .single-blog-post.single-blog .blog-content {
    padding: 30px 0px 0px;
    width: 100%;
    left: 0;
    bottom: 0px;
    transform: translateX(0);
    margin-top: 0px;
}
.blog-details-post .single-blog-post.single-blog .blog-content .blog-meta .tag {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #086ad8;
}
.blog-details-post .single-blog-post.single-blog .blog-content .title {
    font-size: 36px;
    line-height: 40px;
}
.blog-details-post .single-blog-post.single-blog .blog-content p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
}
.blog-details-post .blog-details-content .blog-quote {
    background-color: none;
    position: relative;
    margin-left: 50px;
    margin-top: 40px;
}
.blog-details-post .blog-details-content .blog-quote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #086ad8;
    width: 6px;
    height: 105px;
}
@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .blog-quote::after {
        display: none;
    }
}
.blog-details-post .blog-details-content .blog-quote .blockquote {
    padding-right: 125px;
    padding-left: 25px;
    margin-bottom: 0;
    position: relative;
}
@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .blog-quote .blockquote {
        padding-right: 0;
    }
}
@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .blog-quote .blockquote {
        margin-left: 0;
    }
}
.blog-details-post .blog-details-content .blog-quote .blockquote:not(:first-child) {
    margin-top: 25px;
}
.blog-details-post .blog-details-content .blog-quote .blockquote:not(:last-child) {
    margin-bottom: 25px;
}
.blog-details-post .blog-details-content .blog-quote .blockquote p {
    display: inline;
    font-size: 18px;
    color: #333333;
    line-height: 32px;
    font-weight: 600;
    margin-top: 0;
}
.blog-details-post .blog-details-content .blog-details-text p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 50px;
}
.blog-details-post .blog-details-content .blog-details-tag-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #e3e3e5;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-tag {
    padding-top: 20px;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-tag .sidebar-widget {
    margin-top: 0;
    display: flex;
    align-items: center;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-tag .sidebar-widget .label {
    font-size: 14px;
    line-height: 30px;
    font-weight: 700;
    color: #333333;
    margin-right: 10px;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-tag .sidebar-widget .sidebar-tag li {
    margin-bottom: 0px;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-share {
    display: flex;
    align-items: center;
    padding-top: 20px;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-share li {
    display: inline-block;
    margin-right: 10px;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-share li:last-child {
    margin-right: 0;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-share li a {
    display: inline-block;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ededed;
    text-align: center;
    color: #086ad8;
    border-radius: 50%;
}
.blog-details-post .blog-details-content .blog-details-tag-share .blog-details-share li a:hover {
    opacity: 0.9;
}
.blog-details-post .blog-details-content .techwix-post-pagination {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.16);
    padding: 10px 30px;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}
@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .techwix-post-pagination {
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .techwix-post-pagination {
        padding: 0 10px;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination::before {
    position: absolute;
    content: '';
    width: 1px;
    background-color: #e1e1e1;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .blog-details-post .blog-details-content .techwix-post-pagination::before {
        width: auto;
        height: 1px;
        left: 30px;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination .previous-post,
.blog-details-post .blog-details-content .techwix-post-pagination .next-post {
    width: 50%;
}
@media only screen and (max-width: 767px) {
    .blog-details-post .blog-details-content .techwix-post-pagination .previous-post,
    .blog-details-post .blog-details-content .techwix-post-pagination .next-post {
        width: 100%;
    }
    .blog-listing .alm-reveal > *{
        width: 100%;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post {
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.alm-btn-wrap .alm-load-more-btn.done{
    background: #1a73e8 !important;
}
@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post {
        padding: 20px 0;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-thumb {
    flex-shrink: 0;
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-thumb a img {
    border-radius: 10px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-thumb a i {
    font-size: 14px;
    color: #086ad8;
    padding: 0 10px;
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content {
    flex-grow: 1;
    padding: 0 20px;
}
@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content {
        padding: 0 15px;
    }
}
@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content {
        padding: 0 13px;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content .title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #0e0e0e;
}
@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content .title {
        font-size: 15px;
    }
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content .date {
    font-size: 12px;
    line-height: 22px;
    color: #838383;
}
.blog-details-post .blog-details-content .techwix-post-pagination .blog-pagination-post .post-content .date i {
    color: #086ad8;
    margin-right: 6px;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form {
    margin-top: 50px;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-title {
    font-size: 22px;
    line-height: 30px;
    color: #0e0e0e;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form p {
    font-size: 14px;
    line-height: 30px;
    color: #686f7a;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap {
    padding-top: 10px;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form {
    margin-top: 20px;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control {
    border: 1px solid transparent;
    background: #f6f7f9;
    border-radius: 0;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 13px;
    color: #9d9d9d;
    font-weight: 400;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control:-moz-placeholder {
    opacity: 0.95;
    font-size: 13px;
    color: #9d9d9d;
    font-weight: 400;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control::-moz-placeholder {
    opacity: 0.95;
    font-size: 13px;
    color: #9d9d9d;
    font-weight: 400;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 13px;
    color: #9d9d9d;
    font-weight: 400;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form .form-control:focus {
    outline: none;
    border-color: #086ad8;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form textarea.form-control {
    height: 135px;
    padding-top: 15px;
    font-size: 13px;
    color: #415674;
    font-weight: 600;
    padding: 10px 25px;
    resize: none;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .single-form textarea.form-control:focus {
    outline: none;
    box-shadow: none;
}
.blog-details-post .blog-details-content .comment-wrap .comment-form .comment-form-wrap .form-btn .btn {
    height: 40px;
    line-height: 38px;
    box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
    margin-top: 25px;
    font-size: 16px;
    padding: 0 40px;
}
.blog-details-wrap {
	margin-bottom: 50px;
}
.blog-sidebar {
	margin-top: 40px;
	margin-left: 0;
	position: sticky;
	top: 0;
}
.blog-sidebar .sidebar-widget-1 {
    margin-top: 0;
}
.sidebar-widget {
    margin-top: 45px;
}
.sidebar-widget .search-form {
    position: relative;
}
.sidebar-widget .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    border: 0;
    padding: 15px 35px 15px;
    background: #f2f4f7;
    color: #415674;
    font-weight: 700;
    outline: none;
    overflow: hidden;
}
.sidebar-widget .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    color: #898c94;
    font-weight: 400;
}
.sidebar-widget .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    color: #898c94;
    font-weight: 400;
}
.sidebar-widget .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    color: #898c94;
    font-weight: 400;
}
.sidebar-widget .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    color: #898c94;
    font-weight: 400;
}
.sidebar-widget .search-form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    color: #111111;
    transition: all 0.3s linear;
}
.sidebar-widget .search-form button:hover {
    background: #086ad8;
    color: #ffffff;
}
.sidebar-widget .widget-title {
    margin-bottom: 25px;
}
.sidebar-widget .widget-title .title {
    font-size: 20px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #0e0e0e;
    display: inline-block;
}
.sidebar-widget .recent-posts ul li {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 30px;
}
.sidebar-widget .recent-posts ul li:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.sidebar-widget .recent-posts ul li .post-link {
    display: flex;
    align-items: center;
}
.sidebar-widget .recent-posts ul li .post-link .post-thumb {
    margin-right: 20px;
}
.sidebar-widget .recent-posts ul li .post-link .post-thumb img {
    border-radius: 50%;
    image-rendering: crisp-edges;
}
.sidebar-widget .recent-posts ul li .post-link .post-text {
    flex: 1;
}
.sidebar-widget .recent-posts ul li .post-link .post-text .title {
    font-size: 16px;
    line-height: 18px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    transition: all 0.3s linear;
}
.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta {
    font-size: 12px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    display: inline-block;
    margin-top: 5px;
}
.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta i {
    color: #086ad8;
    margin-right: 5px;
}
.sidebar-widget .recent-posts ul li .post-link:hover .post-text .title {
    color: #086ad8;
}
.sidebar-widget .widget-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    padding: 60px 40px 90px;
    height: 334px;
}
.sidebar-widget .widget-banner .banner-content {
    max-width: 160px;
}
.sidebar-widget .widget-banner .banner-content .title {
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
}
.sidebar-widget .widget-banner .banner-content .btn {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 40px;
    margin-top: 30px;
}
.sidebar-widget .category .cate-item {
    border-top: 1px solid #ebebeb;
    padding-top: 10px;
    margin-top: 15px;
}
.sidebar-widget .category .cate-item:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.sidebar-widget .category .cate-item a {
    display: flex;
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #29303c;
    transition: all 0.3s linear;
}
.sidebar-widget .category .cate-item a i {
    font-size: 10px;
    line-height: 24px;
    color: #086ad8;
    margin-right: 5px;
}
.sidebar-widget .category .cate-item a .post-count {
    margin-left: auto;
    align-items: flex-start;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #e4f2f8;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #086ad8;
    transition: all 0.3s linear;
}
.sidebar-widget .category .cate-item a:hover {
    color: #086ad8;
}
.sidebar-widget .category .cate-item a:hover .post-count {
    background: #086ad8;
    color: #ffffff;
}
.sidebar-widget .sidebar-tag li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 4px;
}
.sidebar-widget .sidebar-tag li a {
    display: inline-block;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #666666;
    line-height: 18px;
    background: #f9f9f9;
    transition: all 0.3s linear;
}
.sidebar-widget .sidebar-tag li a:hover {
    background-color: #086ad8;
    color: #ffffff;
}
.envolve-banner {
	padding: 90px 0;
}
.envolve-banner h1{
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
}
.envolve-banner h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #086ad8;
}
.envolve-box{
    padding: 50px 0;
    background: #fff;
}
.envolve-box:nth-child(2n){
    background: #f6f6f6;
}
.envolve-img img {
	width: 90%;
}
.envolve-desc h2{
    font-size: 37px;
    line-height: 52px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}
.envolve-desc p{
    margin-bottom: 20px;
}
.career-banner h1, .career-more h2{
    font-weight: 400;
}
.career-more h2{
    text-transform: uppercase;
}
.career-more .col-lg-3 {
	display: inherit;
}
.cm-box {
	width: 100%;
	padding: 50px 30px;
	position: relative;
	z-index: 1;
}
.cm-box img {
	max-width: 150px;
	margin-bottom: 25px;
}
.cm-box h3 {
	font-size: 32px;
	line-height: 52px;
	font-weight: 400;
	color: #000000;
}
.cm-box p{
    margin: 0;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #000000;
}
.cm-shape {
	position: absolute;
	left: -50px;
	right: -50px;
	top: 0;
	bottom: 0;
	z-index: -1;
	background-size: 100% 100% !important;
	background-repeat: no-repeat !important;
}
.oepning-grid {
	display: grid;
	grid-template-columns: 30% 20% 20% 20%;
	gap: 30px;
	align-content: center;
	justify-content: center;
}
.opening-col a{
    display: block;
}
.opening-col a + a {
	margin-top: 5px;
}
.opening-col h3 {
	font-size: 21px;
	font-weight: 400;
	color: #000000;
	margin-bottom: 20px;
}
.opening-col {
	text-align: center;
}
.oepning-grid .opening-col:nth-child(1) {
	text-align: left;
}
.opening-col p {
	margin-bottom: 20px;
}
.opening-grid-main + .opening-grid-main {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid rgba(0,0,0,.08);
}
.opening-col .btn{
    font-size: 16px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    text-decoration: none !important;
    line-height: 21px;
    box-sizing: border-box;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    border-radius: 4px;
    color: #fff !important;
}
.opening-col .btn::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: rgba(0, 0, 0, .05);
	z-index: 1;
	transition: width .2s ease-in-out;
}
.opening-col .btn:hover::after {
	width: 100%;
}
.opening-col .btn-primary{
    background: #1a73e8;
}
.opening-col .role {
	padding: 5px 12px;
	color: #fff;
}
.opening-col .role.primary{
    background: #1a73e8;
}
.opening-col .role.purple{
    background: #7E51CE;
}
.opening-col .role.orange{
    background: #ff751a;
}
.oepning-desc ul {
	margin: 15px 0 25px;
}
.oepning-desc ul li {
	display: flex;
	align-items: start;
}
.oepning-desc ul li img {
	max-width: 15px;
	margin-right: 10px;
    position: relative;
    top: 4px;
}
.oepning-desc h3 {
	font-weight: 400;
    font-size: 24px;
}
select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bopacity:1;%7D.b%7Bfill:none;opacity:1;%7D.c%7Bfill:%233D66E6;%7D%3C/style%3E%3C/defs%3E%3Cg class='a'%3E%3Cpath class='b' d='M24,24H0V0H24Z'/%3E%3Cpath class='c' d='M15.88,9.29,12,13.17,8.12,9.29A1,1,0,1,0,6.71,10.7l4.59,4.59a1,1,0,0,0,1.41,0L17.3,10.7a1,1,0,0,0,0-1.41A1.017,1.017,0,0,0,15.88,9.29Z' transform='translate(0)'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
.appoinment-main h1{
    text-align: center;
    /* font-weight: 500; */
    font-size: 30px;
    color: #3D66E6;
    letter-spacing: .3px;
}

.appoinment-main h2{
    font-weight: bold;
    font-size: clamp(1.625rem, 1.5673rem + 0.2564vw, 1.875rem);
    color: #3D66E6;
    letter-spacing: 0;
}

#fbuilder #fieldlist_1 input {
	padding: 5px 15px;
	height: auto;
	border: 1px solid #EBEBEB;
	width: 100% !important;
	box-shadow: none;
	outline: none;
	font-size: 16px;
}
#fbuilder label{
    font-size: 16px;
}
#fbuilder .pbSubmit {
	padding: 8px 22px !important;
	background: #3D66E6 !important;
	border-radius: 6px;
	color: #fff !important;
	font-weight: bold;
	font-size: 15px;
	line-height: 25px;
	letter-spacing: .75px;
	border: 0 !important;
}
#cp_appbooking_pform_1 {
	margin-bottom: 50px;
}
#commentform .comment-form-comment label {
	display: block;
}
#commentform .comment-form-comment textarea {
	border: 1px solid #EBEBEB;
	width: 100%;
	height: 150px !important;
    outline: none;
    box-shadow: none;
}
#commentform #submit {
	font-size: 16px;
	font-weight: normal;
	position: relative;
	overflow: hidden;
	padding: 10px 20px;
	text-decoration: none !important;
	line-height: 21px;
	box-sizing: border-box;
	transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
	border-radius: 4px;
	border: 0;
	outline: none;
	box-shadow: none;
	background: #1a73e8 !important;
	color: #fff !important;
}
.techwix-post-pagination img {
	width: 74px;
	height: 74px;
	object-fit: cover;
}
.single-blog-post.single-blog .blog-image img {
	width: 100%;
}
.comment-form-author, .comment-form-email, .comment-form-email, .comment-form-url {
	width: 30%;
	display: inline-block;
	margin: 0 5px;
}
.comment-form-author input, .comment-form-email input, .comment-form-email input, .comment-form-url input {
	max-width: 100%;
    border: 1px solid #EBEBEB;
    box-shadow: none;
    outline: none;
}
.comment-form-cookies-consent {
	margin-top: 15px;
}/*
.hbr-img img {
	max-width: 400px;
}*/
.bd-cta{
    margin: 0 0 50px;
}
.bd-cta .cta-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    border-radius: 10px;
    padding: 55px 105px;
  }
  
  .bd-cta .cta-wrap .cta-content p {
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    padding-left: 90px;
    color: #ffffff;
    margin: 0;
  }
  
  .bd-cta .cta-wrap .cta-content .cta-icon {
    width: 115px;
    height: 115px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 35px;
    background: #010f31;
  }
  
  .bd-cta .cta-wrap .cta-btn {
    text-align: right;
  }
  
  .bd-cta .cta-wrap .cta-btn .btn {
    font-size: 22px;
    background: #ffffff;
    color: #0e0e0e;
    padding: 10px 20px;
    font-weight: 600;
  }
  
  .bd-cta .cta-wrap .cta-btn .btn:hover {
    color: #ffffff;
    background: #1a73e8;
  }
  @media screen and (max-width: 1399px) {
    .bd-cta .cta-wrap .cta-content p{
        font-size: 24px;
        line-height: 34px;
    }
    .bd-cta .cta-wrap .cta-btn .btn{
        font-size: 18px;
    }
    .price{
        font-size: 20px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .bd-cta .cta-wrap .cta-content {
      text-align: center;
      margin-top: 40px;
    }
    .bd-cta .cta-wrap .cta-content .cta-icon {
      left: 50%;
      transform: translateX(-50%);
    }
    .bd-cta .cta-wrap .cta-content p {
      padding-left: 0;
    }
    .bd-cta .cta-wrap .cta-btn {
      text-align: center;
      margin-top: 40px;
    }
    .whatsapp-form {
        bottom: 0;
        margin-top: 30px;
    }
    .mob-img{
        bottom: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .mob-img img{
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .wa-num-box, .wa-trial-box {
        margin-bottom: 30px;
    }
    .wa-trial-box:hover {
        transform: scale(1.01);
    }
    .wa-desc {
        margin-top: 0;
    }
    .whatsapp-banner {
        padding: 50px 0;
    }
    .mob-img.text-end {
        text-align: center !important;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .bd-cta .cta-wrap {
      padding: 55px 60px;
    }
    .wa-mobile-main .listing-box {
        display: grid !important;
        grid-template-columns: 60px auto;
    }
    .wa-mobile-main .img-box {
        margin: 0 10px 0 0;
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }
    .wa-mobile-main .img-box img {
        max-width: 25px;
    }
  }
  
  @media only screen and (max-width: 449px) {
    .bd-cta .cta-wrap {
      padding: 55px 25px;
    }
  }
  
@media screen and (min-width: 1599px) {}
@media screen and (max-width: 1399px) {
    header .menu-item a {
        padding: 24px 30px 24px 15px;
    }
    .hbr-desc p {
        max-width: 80%;
    }
    .number-grid {
        gap: 15px;
        padding: 30px 15px;
    }
    .number-item {
        min-width: 122px;
    }
    .number-item h3 {
        font-size: 20px;
        line-height: 28px;
        margin: 0;
    }
    .number-item p {
        font-size: 18px;
    }
    .row.custom-gutter {
        margin-left: calc(-.5 * var(--bs-gutter-x));
        margin-right: calc(-.5 * var(--bs-gutter-x));
    }
    .row.custom-gutter .col-lg-4 {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
}
@media screen and (max-width: 1400px) and (min-width: 1200px) {
    .testi-swiper .testi-box {
        min-height: 315px;
    }
}
@media screen and (max-width: 1199px) {
    header .menu-item a {
        padding: 24px 25px 24px 5px;
    }
    .right-links .btn {
        font-size: 14px;
        padding: 10px;
    }
    .right-links .btn+.btn {
        margin-left: 10px;
    }
    .sidebar-widget .widget-banner{
        background-size: auto !important;
        padding: 0;
    }
    .bd-cta .cta-wrap{
        padding: 50px 0;
        background-size: 100%;
    }
}
@media screen and (max-width: 991px) {
    header {
        padding: 11px 0;
    }
    .navbar-collapse {
        padding: 0;
        float: left;
        width: 100%;
        position: fixed;
        left: auto;
        right: -100%;
        top: 0;
        z-index: 11;
        -ms-transition: .4s;
        -webkit-transition: .4s;
        transition: .4s;
        height: 100vh !important;
        border: 0;
        display: block;
        background: #FBFBFB;
        overflow: auto;
    }
    .navbar-collapse.show {
        right: 0;
    }
    button.close-btn {
        width: 100%;
        height: 40px;
        background: #1a73e8;
        border: 0;
        right: 0;
        position: absolute;
        font-size: 18px;
        color: #fff;
        padding: 0 15px 0;
        z-index: 2;
        text-align: left;
        top: 0;
        cursor: pointer;
        text-transform: capitalize;
        left: 0;
        display: block;
        line-height: 40px;
        text-align: right;
    }
    button.close-btn svg {
        fill: #fff;
        width: 18px;
        padding-top: 10px;
        vertical-align: unset;
    }
    ul.navbar-nav {
        padding-top: 40px;
        width: 100%;
        overflow-x: hidden;
    }
    ul.navbar-nav>li {
        width: 100%;
    }
    .menu-item+.menu-item {
        margin-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .menu-item a::before {
        display: none;
    }
    header .navbar-nav a {
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 15px !important;
        line-height: 1;
        border: 0;
    }
    header .collapse:not(.show) {
        display: block;
    }
    .navbar-toggler {
        display: block;
        top: 0;
        right: 25px;
        position: absolute;
        border: 2px solid #1a73e8;
        border-radius: 10px;
        width: 40px;
        height: 40px;
        padding: 8px;
        box-shadow: none !important;
    }
    .navbar-toggler .icon-bar {
        width: 100%;
        height: 1.5px;
        background-color: #707070;
        display: block;
        border-radius: 2px;
    }
    .navbar-toggler .icon-bar+.icon-bar {
        margin-top: 4px;
    }
    .right-links {
        width: 100%;
        justify-content: center;
    }
    .sub-menu {
        position: relative;
        display: none !important;
    }
    .sub-open .sub-menu {
        display: block !important;
        opacity: 1 !important;
        -ms-transform: rotateX(0) !important;
        -webkit-transform: rotateX(0) !important;
        transform: rotateX(0) !important;
    }
    .product-banner,
    .home-banner, .terms-of-service {
        margin-top: 104px;
    }
    .ptb-130 {
        padding: 55px 0;
    }
    .shape {
        display: none !important;
    }
    .pro-testi {
        margin: 50px 0;
    }
    .ptb-65,
    .pro-neverskip,
    .pro-key,
    .pro-faq,
    .pro-explore {
        padding: 50px 0;
    }
    .features-row {
        margin-top: 0;
    }
    .features-row .row+.row {
        margin-top: 30px;
    }
    .feature-img,
    .tm-video {
        margin-bottom: 30px;
    }
    .mt-50 {
        margin-top: 25px;
    }
    .key-box {
        min-height: auto;
    }
    .d-flex.testi-nav {
        justify-content: center;
    }
    .top-msg {
        margin: 0 0 30px;
    }
    .pro-explore .col-lg-3,
    .footer-top .col-lg-6,
    .pro-key .row .col-lg-3 {
        width: 50%;
    }
    .pe-box .pe-desc {
        padding: 0;
    }
    .footer-top {
        padding: 25px 0;
    }
    .pn-img {
        margin-bottom: 15px;
    }
    .pro-testi {
        margin: 0;
    }
    .pe-box {
        padding: 30px;
    }
    .feature-desc,
    .features-row .row:nth-child(2n) .feature-desc {
        padding-right: 0;
        padding-left: 0;
    }
    .testi-swiper {
        margin-top: 50px;
    }
    .number-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .number-item {
        min-width: 100%;
    }
    .number-item+.number-item::before {
        left: 0;
        top: -10px;
        bottom: auto;
        width: 100%;
        right: 0;
        height: 1px;
    }
    .hsu-img {
        margin-bottom: 30px;
    }
    .col-2.custom-col {
        width: 50%;
    }
    .home-awards {
        margin-top: 50px;
    }
    .home-neverskip .pn-img {
        margin-bottom: 30px;
    }
    .home-neverskip .pn-img {
        margin-bottom: 30px;
    }
    .abt-why-box {
        max-width: 100%;
    }
    .about-team .row .col-lg-3 {
        width: 250px;
    }
    .hms-form {
        margin-top: 25px;
    }
    .hms-box h2 br {
        display: none;
    }
    .hms-box h1 {
        font-size: 25px !important;
    }
    .envolve-img img {
        width: 100%;
        margin-bottom: 25px;
    }
    .cm-shape{
        left: -15px;
        right: -15px;
    }
    .oepning-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .oepning-grid .opening-col:nth-child(1) {
        text-align: center;
    }
    .opening-col + .opening-col {
        border-top: 1px solid rgba(0,0,0,.08);
        padding-top: 15px;
    }
    .oepning-desc {
        padding-top: 15px;
    }
    .footer-middle .container {
        overflow: hidden;
    }
    .pro-testi .col-lg-12 .swiper-button-prev, .pro-testi .col-lg-12 .swiper-button-next{
        top: 50%;
        left: -5px;
    }
    .pro-testi .col-lg-12 .swiper-button-next {
        left: auto;
        right: -5px;
    }
}
@media screen and (max-width: 767px) {
    .right-links {
        margin-top: 15px;
    }
    .product-banner,
    .home-banner {
        margin-top: 118px;
    }
    .ptb-130 {
        padding: 30px 0;
    }
    .pro-testi {
        margin: 30px 0;
    }
    .pts-img {
        text-align: center;
    }
    .pts-img img {
        max-width: 100%;
    }
    .ptb-65,
    .pro-neverskip,
    .pro-key,
    .pro-faq,
    .pro-explore {
        padding: 30px 0;
    }
    .feature-desc h3 {
        font-size: 20px;
    }
    .pn-desc p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .pn-desc h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .pro-key h2,
    .pro-testi .title-desc h2,
    .pro-faq .text-center h2 {
        font-size: 26px;
    }
    .pro-faq .text-center h1 {
        font-size: 26px;
    }
    .free-trial-main h1{
        font-weight: bold;
        font-size: 25px !important;
        text-transform: capitalize;
        color: #3D66E6;
        letter-spacing: 0;
    }
    .pro-key .col-lg-3 {
        margin-bottom: 15px;
    }
    .key-box {
        min-height: auto;
    }
    .key-box h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .pro-explore .col-lg-3,
    .footer-top .col-lg-6,
    .pro-key .row .col-lg-3 {
        width: 100%;
    }
    .pro-explore h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .tm-video-desc p {
        font-size: 18px;
        line-height: 30px;
    }
    .ft-left {
        justify-content: center !important;
    }
    .ft-links {
        justify-content: center !important;
        margin-top: 15px;
    }
    .fm-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    #toTop {
        width: 30px;
        height: 30px;
    }
    #toTop img {
        max-width: 100%;
    }
    .footer-middle {
        padding: 25px 0;
    }
    .fm-col h6 {
        margin-bottom: 10px;
    }
    .fm-grid .fm-col+.fm-col {
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .1);
    }
    .top-msg {
        padding: 15px;
    }
    .testi-swiper {
        margin-top: 0;
    }
    .col-2.custom-col {
        width: 100%;
    }
    .suc-links {
        display: block !important;
    }
    .suc-links a {
        display: block !important;
        width: 100%;
        margin: 10px auto !important;
        text-align: center;
    }
    /* .thank-you p {
        font-size: 20px;
        line-height: 32px;
    } */
    .mission-box {
        display: block !important;
    }
    .mission-box img {
        margin-bottom: 15px;
    }
    .about-team .row .col-lg-3 {
        width: 100%;
    }
    .pn-desc h2 br {
        display: none;
    }
    .hms-img-grid {
        flex-wrap: wrap;
    }
    .hms-img-grid .img-box+.img-box {
        border-left: 0;
        padding: 0;
    }
    .img-box {
        width: 33.33%;
        text-align: center;
        border: 1px solid #E6E7E8;
    }
    .free-trial-main {
        margin-bottom: 30px;
    }

    .contact-main {
        padding-top: 30px;
    }
    .blog-detail-main{
        padding-top: 0;
    }
    .envolve-desc h2 {
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .envolve-desc p {
        margin-bottom: 15px;
    }
    .comment-form-author, .comment-form-email, .comment-form-email, .comment-form-url {
	width: 100%;
	display: block;
	margin: 0 0 25px;
}
.comment-form-author label, .comment-form-email label, .comment-form-email label, .comment-form-url label {
	display: block !important;
}
.comment-form-author input, .comment-form-email input, .comment-form-email input, .comment-form-url input{
width:100%;}
#wp-comment-cookies-consent {
	margin-right: 5px;
	position: relative;
	top: 4px;
}
.comment-form-cookies-consent {
	display: flex;
	align-items: start;
	font-size: 14px !important;
	line-height: 1.5 !important;
}
.fm-col.two-cols ul {
	column-count: 1;
}
.pro-testi .col-lg-12 .swiper-button-prev, .pro-testi .col-lg-12 .swiper-button-next{
    left: 5px;
}
.pro-testi .col-lg-12 .swiper-button-next {
    left: auto;
    right: 5px;
}
.footer-bottom .col-12{
    display: block !important;
}
}
div.single-blog .blog-image a img {
	transition: all 0.3s linear;
	height: auto;
	object-fit: cover;
	width: 100%;
}
.blog-details-content p a{
	color: #1a73e8;
	text-decoration: underline;
}
.blog-details-content p a:hover{
	color: #292D4B;
}
.privacy-policy > .container {
    padding-top: 90px;
}

.page-heading h1{
    font-size: 30px;
    color: #3D66E6;
    letter-spacing: .3px;
}

.page-heading-faq{
    font-size: 26px;
}

.page-paragraph p{
    font-size: 30px;
    line-height: 52px;
}

.fform h1{
    font-size: 30px;
    line-height: 52px;
    color: #3D66E6;
}
.feature-img .vid-btn-product img{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border: none !important;
}
.feature-img .vid-btn-product::before{
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    border-radius: 22px;
    opacity: 0.33;
    left: 0;
    border: 2px solid #F4B401;
}
.pro-trusted .pts-img{
	width: 80px;
    margin: 0 auto;
}
.home-sucess .hsu-img img{
	width:490px;
}
.blog-details-post .blog-details-content ul, .blog-details-post .blog-details-content ol{
    padding-left: 20px;
}
.blog-details-post .blog-details-content ul li{
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.blog-details-post .blog-details-content ol li{
    list-style: auto;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.fm-logo img{
    width: 100%;
}