﻿body {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');
    --wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');
    --wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');
    --wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');
    --wp--preset--duotone--midnight: url('#wp-duotone-midnight');
    --wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');
    --wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');
    --wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

body .is-layout-flow > .alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-flow > .alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-flow > .aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained > .alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-constrained > .alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-constrained > .aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained > .alignwide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
}

body .is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

body .is-layout-flex > * {
    margin: 0;
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

.wp-block-pullquote {
    font-size: 1.5em;
    line-height: 1.6;
}


a:hover, a:focus, .startp-mobile-nav.mean-container .mean-nav ul li a.active, .startp-mobile-nav.mean-container .mean-nav ul li .dropdown-menu li.current_page_item a, .startp-nav nav .navbar-nav .nav-item a:hover, .startp-nav nav .navbar-nav .nav-item a:focus, .startp-nav nav .navbar-nav .nav-item a.active, .startp-nav .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover, .startp-nav .navbar-light .navbar-nav .dropdown-menu .dropdown-item.active, .startp-nav .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link, .navbar-light .collapse ul li ul .current_page_item.active > .dropdown-item, .navbar-light .collapse ul > li:hover > a, .navbar-light .collapse ul ul > li:hover > a,
.navbar-default .navbar-nav .show .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .show .dropdown-menu > li > a:hover, .navbar-light .collapse ul ul ul > li:hover > a, .navbar-light .collapse ul ul, .navbar-light .collapse ul ul.dropdown-menu, .navbar-light .collapse ul ul ul, .navbar-light .collapse ul ul ul.dropdown-menu, .navbar-light .collapse ul ul ul ul, .navbar-light .collapse ul ul ul ul.dropdown-menu, .navbar-light .collapse ul ul ul ul, .navbar-light .collapse ul ul ul ul.dropdown-menu, .single-box .icon, .single-box:hover .icon, .services-content .box svg, .services-content .box i, .single-services-box .icon, .single-features .icon, .single-team .team-content ul li a:hover, .funfact h3, .pricing-table .price span, .single-blog-post .blog-post-content ul li i, .single-blog-post .blog-post-content ul li a, .single-blog-post .blog-post-content ul li a:hover, .single-blog-post .blog-post-content .read-more-btn:hover, .sticky .blog-post-content h3 a:hover, .sticky .blog-post-content ul li a:hover, .blog-details-area .blog-details .article-content .entry-meta li i, .blog-details-area .blog-details .article-content .entry-meta li a:hover, .blog-details-area .blog-details .article-content ul.category li a, .project-details-image a:hover, .project-details-desc .project-details-information .single-info-box ul li a:hover, .contact-info-box .icon, .contact-info-box p a:hover, .single-footer-widget ul.list li a:hover, .single-footer-widget ul.footer-contact-info li svg, .single-footer-widget ul.footer-contact-info li a:hover, .single-footer-widget ul.social-links li a, .single-why-choose-us .icon, .single-pricing-table .price span, .single-hosting-features .icon, .cta-right-content .buy-btn .btn-primary:hover, .cta-right-content .buy-btn .btn-primary:focus, .products-details .availability span, .products-details .products-share-social ul li a, .cart-table table tbody tr td.product-name a:hover, .user-actions svg, .user-actions span, .user-actions span a:hover, .user-actions span a:focus, .order-details .order-table table tbody tr td.product-name a:hover, .widget-area .widget ul li a:hover, .widget-area .widget_rss ul li .rss-date, .widget-area .calendar_wrap table #prev a, .widget-area .calendar_wrap table #next a, .pagination-area .page-numbers i, .pages-links .post-page-numbers i, .main-content .entry-content a, .main-content code, .main-content kbd, .main-content tt, .main-content var, blockquote::before, table th a, .blog-details .article-content p a, .blog-details .article-content .entry-content a, .blog-details .article-content code, .blog-details .article-content kbd, .blog-details .article-content tt, .blog-details .article-content var, .comments-area .comment-content .entry-content a, .comments-area .comment-content code, .comments-area .comment-content kbd, .comments-area .comment-content tt, .comments-area .comment-content var, #comments .comment-list .comment-body .reply a, #comments .comment-metadata a:hover, .wp-block-file a, .comments-area .comment-list .trackback .comment-body a, .single-footer-widget ul li a:hover, .single-footer-widget .rss-date, .single-footer-widget .calendar_wrap table #prev a, .single-footer-widget .calendar_wrap table #next a, .comment-navigation .nav-links .nav-previous a, .comment-navigation .nav-links .nav-next a, .repair-about-content .sub-title, .repair-about-content ul li span svg, .single-repair-services .icon, .single-repair-services:hover a, .single-repair-services:focus a, .iot-banner-content span, .single-iot-services .icon, .single-iot-services:hover a, .single-iot-services:focus a, .pricing-box .pricing-features li i.fa-check, .single-solutions-box .learn-more-btn:hover, .single-blog-post-box .entry-post-content .entry-meta ul li a:hover, span.wpcf7-form-control-wrap.gdpr a, .solutions-box .icon, .solutions-box .learn-more-btn:hover, .single-blog-post-item .post-content .post-meta li a:hover, .single-text-box .learn-more-btn:hover {
    color: #1e73be;
}

.is-style-outline .wp-block-button__link {
    color: #1e73be !important;
}

.btn-primary.disabled, .btn-primary:disabled, .pagination-area ul .page-item .page-link:hover, .pagination-area ul .page-item .page-link:focus, .pagination-area ul .page-item.active .page-link, .blog-details-area .blog-details .article-content ul.category li a:hover, .blog-details-area .blog-details .article-content .share-post ul li a:hover, .blog-details-area .blog-details .article-content .share-post ul li a:focus, .domain-search-content form button, .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce .woocommerce-MyAccount-content .button, .single-products .products-image ul li a:hover, .single-products .products-image ul li a:focus, .quick-view-modal .modal-content button.close:hover, .quick-view-modal .modal-content button.close:focus, .cart-table .btn-light, .widget-area .widget_product_search .woocommerce-product-search button, .widget-area .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown__submit, .widget-area .widget_price_filter button.button, .widget-area .widget ul li::before, .widget-area .tagcloud a:hover, .pagination-area .page-numbers:hover, .pagination-area .current, .pages-links .post-page-numbers:hover, .pages-links .current, .comment-respond .form-submit input, .wp-block-button .wp-block-button__link, .page-links .post-page-numbers:hover, .page-links .current, .has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color, .single-footer-widget ul li::before, .single-footer-widget .tagcloud a:hover, .comment-navigation .nav-links .nav-previous a:hover, .comment-navigation .nav-links .nav-next a:hover, .single-repair-box:hover a, .single-repair-box:focus a, .single-iot-box:hover a, .single-iot-box:focus a, .cart-link span, .owl-theme .owl-dots .owl-dot:hover span, .owl-theme .owl-dots .owl-dot.active span, .section-title .bar::before, .preloader, .startp-nav nav .others-option .btn.btn-light::after, .startp-nav nav .others-option .btn.btn-light::before, .startp-nav nav .others-option .btn.btn-primary::after, .startp-nav nav .others-option .btn.btn-primary::before, .single-services-box::before, .single-services-box::after, .single-services-box:hover .icon, .single-features:hover .icon, .single-works .icon:hover, .contact-cta-box .btn::before, .contact-cta-box .btn::after, .pricing-table.active-plan .btn-primary::after, .pricing-table.active-plan .btn-primary::before, .ready-to-talk .btn::before, .ready-to-talk .btn::after, .post_type_icon, .post_type, .faq-accordion .accordion .accordion-item .accordion-title:hover, .faq-accordion .accordion .accordion-item .accordion-title.active, .faq-accordion .accordion .accordion-item .accordion-title:focus, .blog-details-area .blog-details .article-img .date, .blog-details-area .post-controls-buttons div a:hover, .blog-details-area .post-controls-buttons div a:focus, .contact-info-box:hover .icon, .single-footer-widget ul.social-links li a:hover, .single-footer-widget ul.social-links li a:hover, .go-top:hover, .search-form .search-submit, .hosting-main-banner .hosting-banner-content ul li::before, .single-pricing-table.active-plan .btn-primary::after, .single-pricing-table.active-plan .btn-primary::before, .testimonials-slides.owl-theme .owl-dots .owl-dot:hover span::before, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span::before, .single-hosting-features::before, .single-hosting-features::after, .single-hosting-features:hover .icon, .features-details-desc ul li::before, .features-details-desc .features-details-accordion .accordion .accordion-title i, .quick-view-modal .modal-content .products-content form button, .products-details form button, .products-details form .buy-btn .btn-primary::after, .products-details form .buy-btn .btn-primary::before, .products-details .products-share-social ul li a:hover, .order-details .payment-method p [type="radio"]:checked + label::after, .order-details .payment-method p [type="radio"]:not(:checked) + label::after, .widget-area .widget_search form .search-submit, .post-password-form input[type="submit"], .single-footer-widget .search-form form .search-submit, .btn.btn-secondary, .btn.btn-secondary:not(:disabled):not(.disabled).active, .btn.btn-secondary:not(:disabled):not(.disabled):active, .show > .btn.btn-secondary.dropdown-toggle, .ml-feedback-slides .owl-dots .owl-dot span::before, .free-trial-content form button, .single-ml-projects-box .plus-icon a, .ml-projects-slides.owl-theme .owl-dots .owl-dot span::before, .pricing-box .buy-btn .btn-primary, .agency-services-box .content .read-more-btn:hover, .single-blog-post-item .post-content .read-more-btn:hover, .agency-portfolio-home-slides.owl-theme .owl-nav [class*="owl-"]:hover, .creative-inner-area .col-lg-6:nth-child(1) .single-counter {
    background-color: #1e73be;
}

.products-details-tabs .content .products-reviews .form-submit .btn, .woocommerce-form .woocommerce-button, .woocommerce-ResetPassword .woocommerce-Button, .checkout_coupon .button {
    background-color: #1e73be !important;
}

.pagination-area .page-numbers:hover, .pagination-area .current, .pages-links .post-page-numbers:hover, .pages-links .current, .is-style-outline .wp-block-button__link, .page-links .post-page-numbers:hover, .page-links .current, .single-repair-box:hover, .single-repair-box:focus, .single-iot-box:hover, .single-iot-box:focus, .form-control:focus, .startp-nav nav .others-option .btn.btn-light:hover, .startp-nav nav .others-option .btn.btn-light:focus, .single-team:hover .team-image img, .client-thumbnails .next-arrow:hover, .client-thumbnails .prev-arrow:hover, .blog-details-area .blog-details .article-content .share-post ul li a:hover, .blog-details-area .blog-details .article-content .share-post ul li a:focus, .blog-details-area .post-controls-buttons div a:hover, .blog-details-area .post-controls-buttons div a:focus, .testimonials-slides.owl-theme .owl-dots .owl-dot:hover span, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span, .pages-links .post-page-numbers:hover, .pages-links .current, .is-style-outline .wp-block-button__link, .page-links .post-page-numbers:hover, .page-links .current, .single-repair-box:hover, .single-repair-box:focus, .single-iot-box:hover, .single-iot-box:focus, .feedback-slides .client-feedback .single-feedback .client-img img, .feedback-slides .client-thumbnails .item .img-fill img, .blog-details-area .blog-details .article-content ul.category li a, .btn.btn-secondary:not(:disabled):not(.disabled).active, .btn.btn-secondary:not(:disabled):not(.disabled):active, .show > .btn.btn-secondary.dropdown-toggle, .ml-feedback-slides .owl-dots .owl-dot:hover span, .ml-feedback-slides .owl-dots .owl-dot.active span, .agency-services-box .content .read-more-btn:hover, .single-blog-post-item .post-content .read-more-btn:hover {
    border-color: #1e73be;
}

.btn-primary {
    background-color: #1e73be;
}

.pricing-box .buy-btn .btn-primary::after, .agency-about-content .bar::before {
    background: #1e73be;
}

.woocommerce-pagination .page-numbers li a:hover, .woocommerce-pagination .page-numbers li span.current, .products-details-tabs .content .products-reviews .form-submit .btn {
    border: 1px solid #1e73be !important;
}

.btn::after, .btn::before, .startp-nav nav .others-option .btn.btn-primary, .single-services-box:hover .icon.bg-c679e3, .single-features:hover .icon.bg-c679e3, .contact-cta-box .btn-primary, .pricing-table.active-plan .btn-primary, .ready-to-talk .btn-primary, .single-pricing-table.active-plan .btn-primary, .single-hosting-features:hover .icon.bg-c679e3, .cta-right-content .buy-btn .btn-primary, .products-details form .buy-btn .btn-primary, .ml-about-content .bar::before, .single-ml-services-box::before, .btn.btn-secondary::before, .btn.btn-secondary::after {
    background: #1f1fc6;
}

.go-top, .domain-search-content form button:hover, .domain-search-content form button:focus, .quick-view-modal .modal-content .products-content form button:hover, .quick-view-modal .modal-content .products-content form button:focus, .quick-view-modal .modal-content .products-content form .buy-btn .button, .products-details form button:hover, .products-details form button:focus, .products-details form .add-to-wishlist-btn:hover, .products-details form .add-to-wishlist-btn:focus, .widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons .button.wc-forward, .free-trial-content form button:hover, .single-ml-projects-box .plus-icon a:hover {
    background-color: #1f1fc6;
}

.hero-slider .owl-prev:hover, .hero-slider .owl-next:hover, .hero-slider .owl-prev:hover, .hero-slider .owl-next:hover {
    background-color: #1f1fc6 !important;
}

.single-feedback-item .client-info .title span, .single-hosting-features .icon.bg-c679e3, .single-repair-feedback .client-img span, .single-box.bg-c679e3 .icon, .single-box:hover.bg-c679e3 .icon, .single-services-box .icon.bg-c679e3, .single-features, .pricing-box .pricing-features li i.fa-ban, .section-title .sub-title, .ml-about-content .sub-title, .single-ml-feedback-item .client-info span, .agency-about-content .sub-title, .single-testimonials-item .client-info span {
    color: #1f1fc6;
}

.single-why-choose-us::before, .single-team .team-info, .cta-area, .repair-about-content ul li span::before, .single-repair-services::after, .repair-why-choose-us, .single-iot-services::after, .iot-why-choose-us, .single-box::before, .services-content .box::before, .single-team .team-info, .single-works::before, .pricing-table .pricing-header::before, .client-thumbnails .next-arrow::before, .client-thumbnails .prev-arrow::before, .ready-to-talk, .single-blog-post .blog-image .date, .single-repair-box .icon::before {
    background: linear-gradient(135deg, #1e73be 0%, #21a8d1 100%);
}

.single-iot-box .icon::before, .bg-f7fafd, .blog-details-area .blog-details .article-content .blockquote, .contact-info-box .icon, .single-pricing-table .pricing-header i, .bg-f9fafb {
    background: #f7fafd;
}

.hosting-main-banner, .hosting-boxes-area {
    background-color: #032b8d;
}

p {
    color: #666666
}

.single-solutions-box::before, .ml-services-area, .pricing-tab .tabs li a, .pricing-tab .tabs li a:hover, .pricing-box, .single-blog-post-box .entry-post-content, .free-trial-area::before, .ml-feedback-area {
    background: -webkit-gradient(linear, left bottom, right top, from(#d5fefd), color-stop(#e0fdff), color-stop(#effbff), color-stop(#fbfaff), to(#fffcff));
    background: linear-gradient(to right top, #d5fefd, #e0fdff, #effbff, #fbfaff, #fffcff);
}

.startp-nav.p-relative {
    background: #f8f8f8;
}

.startp-nav.is-sticky {
    background: #ffffff !important;
}

.startp-nav nav .navbar-nav .nav-item a {
    color: #4a6f8a;
}

.footer-area {
    background: #f7fafd;
}

.recentcomments a {
    display: inline !important;
    padding: 0 !important;
    margin: 0 !important;
}

#etca91t82klo1678969475837 {
    outline: none !important;
    visibility: visible !important;
    resize: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    background: none !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity 1)!important;
    -mz-opacity:1 !important;
    -khtml-opacity:1 !important;
    top:auto !important;
    right:0px !important;
    bottom:0px !important;
    left:auto !important;
    position:fixed !important;
    border:0 !important;
    min-height:0px !important;
    min-width:0px !important;
    max-height:none !important;
    max-width:none !important;
    padding:0px !important;
    margin:0px !important;
    -moz-transition-property:none !important;
    -webkit-transition-property:none !important;
    -o-transition-property:none !important;
    transition-property:none !important;
    transform:none !importan;
    -webkit-transform:none !important;
    -ms-transform:none !important;
    width:auto !important;
    height:auto !important;
    display:none !important;
    z-index:2000000000 !important;
    background-color:transparent !important;
    cursor:none !important;
    float:none !important;
    border-radius:unset !important;
    pointer-events:auto !important;
    clip:auto !important;
    color-scheme:light !important;
}
#etca91t82klo1678969475837.widget-hidden {
    display: none !important;
}

#etca91t82klo1678969475837.widget-visible {
    display: block !important;
}

@media print {
    #etca91t82klo1678969475837.widget-visible {
        display: none !important;
    }
}

@keyframes tawkMaxOpen {
    0% {
        opacity: 0;
        transform: translate(0, 30px);;
    }
    to {
        opacity: 1;
        transform: translate(0, 0px);
    }
}

@-moz-keyframes tawkMaxOpen {
    0% {
        opacity: 0;
        transform: translate(0, 30px);;
    }
    to {
        opacity: 1;
        transform: translate(0, 0px);
    }
}

@-webkit-keyframes tawkMaxOpen {
    0% {
        opacity: 0;
        transform: translate(0, 30px);;
    }
    to {
        opacity: 1;
        transform: translate(0, 0px);
    }
}

#lptfafuvr2og1678969475921.open {
    animation: tawkMaxOpen .25s ease !important;
}

@keyframes tawkMaxClose {
    from {
        opacity: 1;
        transform: translate(0, 0px);;
    }
    to {
        opacity: 0;
        transform: translate(0, 30px);;
    }
}

@-moz-keyframes tawkMaxClose {
    from {
        opacity: 1;
        transform: translate(0, 0px);;
    }
    to {
        opacity: 0;
        transform: translate(0, 30px);;
    }
}

@-webkit-keyframes tawkMaxClose {
    from {
        opacity: 1;
        transform: translate(0, 0px);;
    }
    to {
        opacity: 0;
        transform: translate(0, 30px);;
    }
}

#lptfafuvr2og1678969475921.closed {
    animation: tawkMaxClose .25s ease !important
}

.menupop ul li .ab-item button {
    background: none;
    border: none;
    color: rgba(240,246,252,.7);
    outline: none;
    padding: 0 10px !important;
}
.menupop ul li .ab-item:hover button {
    color: #72aee6;
}

/*************************************************************/
/**/
/*************************************************************/
.invalid-feedback {
    color: #e7515a;
    display: block;
    font-size: 13px;
    font-weight: 600;
    padding: 0 2px;
    letter-spacing: 1px;
}


/*  services images dadeup  */
.animated_item {
    opacity: 0;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-fill-mode: both;
    animation-duration: 850ms;
    animation-timing-function: ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}