@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
#preloader:after,
#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    display: block;
    top: 50%;
    left: 50%;
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: absolute;
    opacity: 0;
    transform: translate(-50%, -50%);
}
.card-style-04,
.primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}
.process-style-01 span,
.slider-fade1 h1 span {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
}
.counter-style-01 .count-no,
.pagetitle-lg-title,
.process-style-01 span,
.slider-fade1 h1 span {
    -webkit-text-fill-color: transparent;
}
#preloader {
    position: fixed;
    top: 1;
    right: -1;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: opacity 0.3s;
    text-align: center;
    width: 100%;
    height: 100%;
}
#preloader:before {
    border: 3px solid #081e66d6;
    border-radius: 50%;
}
#preloader:after {
    border: 3px solid #081e66d6;
    border-radius: 50%;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}



/* ------------------------------
   MAIN CONTAINER
------------------------------ */
.main-container {
    max-width: 800px;
    padding: 20px;
}
header {

    z-index: 99;
}
/* ------------------------------
   HEADING ANIMATION
------------------------------ */
.heading-anim {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    position: relative;
    display: inline-block;
}

/* --- NEW ANIMATION KEYFRAMES --- */

/* TEXT: Zoom in and out */
@keyframes zoomInHeading {
    0%, 60% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* SHADOW: Zoom in and out, and appear/disappear */
@keyframes zoomInShadow {
    0%, 60% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(0, 0, 0, 0.5); /* Shadow is hidden */
    }
    80% {
        transform: scale(1.1);
        /* The hard-edged, semi-transparent shadow you wanted */
        text-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5); 
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(0, 0, 0, 0.5); /* Shadow is hidden again */
    }
}

/* Initial state - visible */
.heading-text {
    transform: scale(1);
}

.heading-shadow {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: scale(1);
}

/* Active state - apply the new animation */
.heading-text.active {
    animation: zoomInHeading 2s ease-in-out;
}

.heading-shadow.active {
    animation: zoomInShadow 2s ease-in-out;
}

/* ------------------------------
   MAIN TEXT ANIMATION
------------------------------ */
.container-anim {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: flex;
    gap: 10px;
}

.dynamic-word-container {
    display: inline-block;
    position: relative;
}

#dynamicWord {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-weight:900;
    border-right: 3px solid #fff;
    padding-right: 4px;
    color: #0066ff;
    /*animation: cursorBlink 1s infinite;*/
}

#slideInPhrase { 
    position: absolute;
    top: 0;
    left: 100%;
    color: #fff;
    font-weight: 700;
    margin-right: 60px;
    white-space: nowrap;
    z-index: 1;
}
.banner_txt p.lead {
    display: block !important;
}
/*@media (max-width: 768px) {*/
    
    /* Reduce padding on smaller screens to use space more efficiently */
/*    .main-container {*/
/*        padding: 15px;*/
/*    }*/

    /* Significantly reduce the main heading font size for better readability */
/*    .heading-anim {*/
/*        font-size: 36px;*/
/*    }*/

    /* Reduce the main text font size to fit more content on the screen */
/*    .container-anim {*/
/*        font-size: 22px;*/
/*    }*/

    /* 
      Add overflow as a safeguard. This container's size is already 
      responsive because it's based on its children, but this prevents 
      any accidental overflow from breaking the layout on small screens.
    */
/*    .dynamic-word-container {*/
/*        overflow: hidden;*/
/*    }*/

    /* Adjust the animated cursor for better proportions on smaller text */
/*    #dynamicWord {*/
        border-right: 2px solid #fff; /* Make the cursor thinner */
        padding-right: 3px;           /* Adjust padding to match */
/*    }*/

    /* Reduce the margin to prevent the sliding text from going off-screen */
/*    #slideInPhrase {*/
/*        margin-right: 20px;*/
/*    }*/
/*}*/

/* ------------------------------
   RESPONSIVE (REDUCE SIZE ONLY)
------------------------------ */
@media (max-width: 768px) {

    /* Main container */
    .main-container {
        max-width: 90%;
        padding: 10px;
    }

    /* Heading animation */
    .heading-anim {
        font-size: 34px; /* reduced from 52px */
    }

    /* Heading shadow & text also get scaled down */
    .heading-text,
    .heading-shadow {
        transform: scale(0.9);
    }

    /* Main text animation */
    .container-anim {
        font-size: 20px;   /* reduced from 28px */
        gap: 6px;          /* reduced gap */
    }

    #dynamicWord {
        border-right: 2px solid #fff; /* thinner cursor */
        padding-right: 2px;
    }

    #slideInPhrase {
        font-size: 20px;   /* match reduced size */
        margin-right: 20px;
    }
     /* Animated Paragraph */
          .banner_txt p.lead {
        font-size: 1.1rem; /* Reduce font size for better readability on tablets */
        margin-bottom: 1rem; /* Adjust the custom margin for better spacing */
    }
}

@media (max-width: 480px) {

    .heading-anim {
        font-size: 28px;
    }

    .container-anim {
        font-size: 18px;
        gap: 5px;
    }

    #dynamicWord {
        padding-right: 2px;
        border-right: 2px solid #fff;
    }

    #slideInPhrase {
        font-size: 18px;
    }
      .banner_txt p.lead {
        font-size: 1.1rem; /* Reduce font size for better readability on tablets */
        margin-bottom: 1rem; /* Adjust the custom margin for better spacing */
    }
}

/*end*/
 /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
        }

        /* Chat Widget Popup */
        .whatsapp-popup {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: none;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .whatsapp-popup.active {
            display: block;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Chat Header */
        .whatsapp-header {
            background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .company-avatar {
            width: 50px;
            height: 50px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: bold;
            color: white;
        }

        .company-info h4 {
            margin: 0;
            font-size: 17px;
            font-weight: 600;
            color: white;
        }

        .company-info p {
            margin: 3px 0 0 0;
            font-size: 13px;
            opacity: 0.95;
            color: white;
        }

        .close-popup {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
            line-height: 1;
        }

        .close-popup:hover {
            opacity: 0.8;
        }

        /* Chat Body */
        .whatsapp-body {
            background: #e5ddd5;
            padding: 20px;
            min-height: 180px;
            max-height: 300px;
            overflow-y: auto;
        }

        .message-bubble {
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            max-width: 85%;
            margin-bottom: 10px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .message-bubble::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 10px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 8px 8px 0;
            border-color: transparent white transparent transparent;
        }

        .message-text {
            margin: 0 0 8px 0;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
            white-space: pre-line;
        }

        .message-time {
            font-size: 11px;
            color: #999;
            text-align: right;
            margin: 0;
        }

        /* Chat Input */
        .whatsapp-input {
            padding: 15px;
            background: #f0f0f0;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .whatsapp-input input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .whatsapp-input input:focus {
            border-color: #25d366;
        }

        .send-btn {
            background: #25d366;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            font-size: 18px;
        }

        .send-btn:hover {
            background: #128c7e;
        }

        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 28px;
            }

            .whatsapp-popup {
                width: calc(100% - 40px);
                right: 20px;
                bottom: 80px;
            }
        }
/*end*/







a:active,
a:hover {
    color: #30427f;
    text-decoration: none;
}
.all-demo:hover i,
.attr-nav > ul > li > a.butn,
.buy-theme:hover i,
.copyright-menu li a:hover,
.display-16.display-sm-7.display-lg-4.display-xl-3.mb-2-9,
.footer-link li a,
.scroll-to-top i,
.scroll-to-top:hover i,
.serv-box a,
.slider-fade1.owl-theme .owl-dots .owl-dot.active,
.team-style01 .image .social li a:hover,
.top-bar-info a:hover,
.video_btn:focus i,
.video_btn:hover i,
h4.h5.mb-0.text-primarysecond,
p.mb-2-3.font-weight-500.lead.d-none.d-sm-block {
    color: #fff;
}
.min-height-300 {
    min-height: 300px;
}
.container1,
.min-vh-100 {
    min-height: 103vh;
}
.h-100vh {
    height: 100vh;
}
.btn-style2.primary,
.primary-overlay[data-overlay-dark]:before,
.sidebar .widget .category-list li.active,
.social-icon-style1 li a:hover,
.social-icon-style3 li a:hover {
    background: #081e66d6;
}
.all-demo:hover,
.btn-style1.secondary,
.card-style-04 .card-list a:active,
.card-style-04 .card-list a:focus,
.card-style-04 .card-list a:hover,
.secondary-overlay[data-overlay-dark]:before,
.sidebar .widget .category-list li.active a:before {
    background: #18455d;
}
.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(24, 69, 93, 0.76);
    background: linear-gradient(-90deg, transparent, #18455d 65%);
}
.dark-overlay[data-overlay-dark]:before {
    background: #0c3246;
}
.left-overlay-dark[data-overlay-dark]:before {
    background: rgba(12, 50, 70, 0.76);
    background: linear-gradient(-90deg, transparent, #0c3246 100%);
}
.card-style05 .card-body h3 a:hover,
.text-primary,
.text-primary-hover:hover {
    color: #081e66d6 !important;
}
.bg-primary {
    background-color: #081e66d6 !important;
}
.border-primary {
    border-color: #081e66d6 !important;
}
.text-secondary,
.text-secondary-hover:hover {
    color: #18455d !important;
}
.bg-secondary {
    background-color: #18455d !important;
}
.bg-dark {
    background-color: #0c3246 !important;
}
.border-secondary {
    border-color: #18455d !important;
}
.text-dark,
.text-dark-hover:hover {
    color: #0c3246 !important;
}
.bg-white-opacity-light {
    background-color: rgba(255, 255, 255, 0.2);
}
.form-control,
.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
}
.background-position-right-bottom {
    background-position: right bottom;
}
.text-white-hover:hover {
    color: #fff !important;
}
.text-white-hover-light:hover {
    color: rgba(255, 255, 255, 0.65) !important;
}
.shape-img-one {
    transform: rotate(180deg);
}
.height-300,
.portfolio-carousel .port_img img {
    height: 300px;
}
.section-bg {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background-position: center center;
    background-repeat: no-repeat;
}
.card-style07 .social-icons span.icon,
.scroll-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.btn-style1,
.scroll-to-top {
    background: #081e66d6;
    color: #fff;
}
.right-container {
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 0.35rem;
    border-top-left-radius: 0.35rem;
}
.right-container:before {
    position: absolute;
    left: 0;
    right: inherit;
    top: 0;
    height: 100%;
    width: 1600px;
    background-color: #18455d;
    content: "";
    z-index: 1;
}
.btn-style2:after,
.btn-style2:before {
    position: absolute;
    content: "";
    height: calc(100% - 10px);
}
.scroll-to-top {
    font-size: 20px;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none !important;
    z-index: 9999;
    outline: 0;
    -webkit-transition: 0.3s;
}
.blink-heading1,
.btn-style1,
.btn-style1 span,
.btn-style2,
.btn-style2 i,
.list-style2 li {
    position: relative;
}
.comment-reply-link:active,
.comment-reply-link:focus,
.comment-reply-link:hover,
.scroll-to-top:hover {
    color: #fff;
    background: #18455d;
}
.scroll-to-top:visited {
    color: #fff;
    text-decoration: none;
}
.list-style1 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
}
.list-style1 li:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}
.list-style2,
.serv-box ul {
    list-style: none;
    padding-left: 0;
}
.list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    margin-bottom: 8px;
    font-weight: 700;
}
.list-style2 li:last-child,
.resp-vtabs .resp-tabs-list li:last-child,
.sidebar .menu li:last-child,
.sidebar .widget .category-list li:last-child,
.top-bar-info ul {
    margin-bottom: 0;
}
.list-style2 li:before {
    content: "\e64c";
    font-family: themify;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #081e66d6;
}
.btn-style1 {
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding: 15px 40px !important;
    z-index: 1;
    transition: 0.4s ease-in-out;
}
.btn-style2,
.pagetitle-lg-title {
    line-height: 1;
    text-transform: uppercase;
}
.btn-style1:before {
    position: absolute;
    content: "";
    top: -4px;
    right: 4px;
    bottom: 4px;
    left: -4px;
    border: 1px solid #232323;
    transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
}
.btn-style1 span {
    z-index: 9;
    color: #fff;
}
.btn-style1:hover:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.btn-style1.secondary:before,
.form-control:focus,
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #081e66d6;
}
.btn-style1.white-border:before {
    border-color: #fff;
}
.btn-style1.medium {
    padding: 12px 36px !important;
}
.btn-style1.small {
    padding: 10px 34px !important;
}
.btn-style2 {
    font-size: 16px;
    background: #30427f;
    color: #fff;
    letter-spacing: 1.6px;
    padding: 20px 29px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}
.head-call,
.head-call1 {
    font-size: 25px !important;
    padding: 0 9px !important;
    border-radius: 5px;
    color: #fff;
}
.head-call {
    background: #30427f !important;
}
.head-call1 {
    background: #2ecd2e !important;
    -moz-animation: 2s ease-in-out infinite blink;
    -webkit-animation: 2s ease-in-out infinite blink;
    -ms-animation: blink normal 2s infinite ease-in-out;
    animation: 2s ease-in-out infinite blink;
}
@-moz-keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@-webkit-keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@-ms-keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.sk-google-all-reviews {
    background: #0c3246 !important;
}
.btn-style2:before {
    width: 50px;
    background: 0 0;
    top: 5px;
    left: 5px;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    border: 1px solid #fff;
    border-right: 0;
}
.btn-style2 i {
    padding-left: 8px;
    font-size: 14px;
    top: 0;
}
.mb-20 {
    margin-bottom: 20px;
}
.blink-heading1 {
    animation: 1s linear infinite blinker;
    margin-right: 5px;
    font-size: 25px;
    top: 5px;
}
.new-pad {
    padding: 1rem 1.5rem 1.5rem !important;
}
.btn-style2:after {
    width: 50px;
    background: 0 0;
    border: 1px solid #fff;
    border-left: 0;
    top: 5px;
    right: 5px;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
}
.About_sec .image-column .image-1,
.About_sec.image-column,
.box-hover,
.box-hover .container,
.card-style-02,
.card-style-03,
.card-style05 .card-img,
.history-timeline,
.newsletter-form .quform-elements,
.quform-input,
.slider-fade1 .owl-item,
.slider-fade1.owl-theme .owl-dots .owl-dot,
.team-style01 .image,
.top-bar {
    position: relative;
}
.btn-style2:hover,
.social-icon-style2 li a:hover {
    background: #081e66d6;
    color: #fff;
}
.btn-style2:hover:after,
.btn-style2:hover:before {
    width: 25px;
}
.btn-style2.md {
    padding: 15px 23px 11px 24px !important;
    line-height: unset;
    font-size: 14px;
}
.btn-style2.sm {
    padding: 10px 17px 10px 18px !important;
    line-height: unset;
    font-size: 11px;
}
.btn-style2.primary:active,
.btn-style2.primary:focus,
.btn-style2.primary:hover {
    background: #fff !important;
    color: #081e66d6;
}
.btn-style2.primary:active:before,
.btn-style2.primary:focus:before,
.btn-style2.primary:hover:before {
    border: 1px solid #081e66d6;
    border-right: 0;
}
.btn-style2.primary:active:after,
.btn-style2.primary:focus:after,
.btn-style2.primary:hover:after {
    border: 1px solid #081e66d6;
    border-left: 0;
}
.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}
.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px;
    display: inline-block;
    margin-bottom: 0;
}
.top-bar {
    display: block;
    z-index: 999;
    padding: 7px 0;
}
.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}
.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}
.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px;
}
.top-social-icon li:last-child,
.top-social-icon li:last-child a {
    padding-right: 0;
}
.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0 3px;
}
.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65);
}
.client_txt,
.footer-link li a:hover,
.header-style2 .navbar-nav li.current > a,
.header-style2.scrollHeader .navbar-nav li.current > a,
.header-style2.scrollHeader .navbar-nav li.current > a:hover,
.menu_area-light .navbar-nav li.active > a,
.menu_area-light .navbar-nav li.current > a,
.menu_area-light.scrollHeader .navbar-nav li.active > a,
.menu_area-light.scrollHeader .navbar-nav li.current > a,
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover,
.navbar-nav li.active > a,
.navbar-nav li.current > a,
.portfolio-carousel .port_text h3 a,
.search-form_input,
.search-frame .search,
.search-frame .search_list .match,
.search-frame .search_list li:before,
.search-frame h4 a:hover {
    color: #081e66d6;
}
.header-style2 .navbar > ul > li.current > a:after,
.header-style2.scrollHeader .navbar > ul > li.current > a:after,
.menu_area-light .navbar > ul > li.current > a:after,
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after,
.navbar > ul > li.current > a:after {
    border-color: transparent #081e66d6 #081e66d6 transparent;
}
.slider-fade1 h1 {
    margin-bottom: 25px;
    animation-delay: 0.8s;
}
.slider-fade1 p {
    animation-delay: 1.2s;
}
.slider-fade1 a {
    animation-delay: 1.6s;
}
.slider-fade1 .owl-dots {
    position: absolute;
    bottom: 40px;
    right: 50px;
    margin: 0 !important;
}
.slider-fade1 .video_btn {
    background: rgba(29, 70, 93, 0.3);
    color: #18455d;
}
.slider-fade1 .video_btn:after,
.slider-fade1 .video_btn:before {
    content: none !important;
}
.slider-fade1.owl-theme .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #081e66d6;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:before {
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
    position: absolute;
    right: 8px;
    font-weight: 800;
    z-index: 2;
    font-size: 34px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span {
    background: 0 0;
    height: 60px;
    width: 50px;
    border-radius: 0;
    position: relative;
    margin: 0 20px 0 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    right: -31px;
    top: 26px;
    background-color: #081e66d6;
}
.page-title-section ul li:last-child:after,
.slider-fade1.owl-theme .owl-dots .owl-dot:last-child span:before {
    content: none;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active span,
.slider-fade1.owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
}
.line-animated {
    width: 68%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 9;
    pointer-events: none;
}
.line-animated > span {
    background: rgba(0, 0, 0, 0.09);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.line-animated > span:before {
    content: "";
    background-image: linear-gradient(0deg, #081e66d6, transparent);
    width: 1px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: 9s linear infinite alternate line-animation;
    animation: 9s linear infinite alternate line-animation;
}
.container1.sign-up-mode .signin-signup,
.line-animated > span:nth-child(2) {
    left: 25%;
}
.line-animated > span:nth-child(2):before,
.line-animated > span:nth-child(5):before {
    content: "";
    -webkit-animation: 9s linear 1s infinite alternate line-animation;
    animation: 9s linear 1s infinite alternate line-animation;
}
.line-animated > span:nth-child(3) {
    left: 50%;
}
.line-animated > span:nth-child(3):before {
    content: "";
    -webkit-animation: 9s linear 2s infinite alternate line-animation;
    animation: 9s linear 2s infinite alternate line-animation;
}
.line-animated > span:nth-child(4) {
    left: 75%;
}
.line-animated > span:nth-child(5) {
    left: 100%;
}
@-webkit-keyframes line-animation {
    from {
        top: 0;
    }
    to {
        top: 100%;
    }
}
@keyframes line-animation {
    from {
        top: 0;
    }
    to {
        top: 100%;
    }
}
.section-title .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    padding-bottom: 12px;
    color: #fff;
    z-index: 9;
}
.section-title h2 {
    position: relative;
    z-index: 9;
}
.section-title .sm-title:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 80px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #dedede;
}
.section-title .sm-title:after {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: #081e66d6;
    right: 0;
    left: auto;
    bottom: -3px;
    animation: 5s infinite alternate pulsex;
}
.section-title.left .sm-title:before {
    left: 0;
    transform: unset;
}
@keyframes pulsex {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}
.title-sm {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.title-sm:before {
    content: "";
    background: #081e66d6;
    height: 8px;
    width: 100%;
    position: absolute;
    bottom: 8px;
    z-index: -1;
}
.title-sm.banner:before {
    bottom: 19px;
}
.page-title-section {
    padding: 45px 0;
}
.page-title-section.style1 {
    padding: 150px 0;
}
.page-title-section h1 {
    font-size: 40px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #fff;
    margin-bottom: 0px;
    position: relative;
    z-index: 9;
}
.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    font-weight: 800;
    color: #fff;
    opacity: 0.2;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px;
    position: relative;
    z-index: 1;
}
.page-title-section ul {
    margin: 0;
    padding: 11px 20px;
    list-style: none;
    display: inline-block;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.2);
}
.footer-logo > a,
.page-title-section ul li,
.quform-loading-wrap .quform-loading {
    display: inline-block;
}
.page-title-section ul li:last-child,
.page-title-section ul li:last-child a {
    color: #fff;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.page-title-section ul li:after {
    content: "\f111";
    font-weight: 700;
    vertical-align: middle;
    color: #081e66d6;
    font-size: 9px;
    font-family: "Font Awesome 6 Free";
    padding: 0 5px 0 10px;
}
.page-title-section ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px;
}
@media screen and (max-width: 1199px) {
    .slider-fade1 .item:before {
        content: "";
        background: rgba(255, 255, 255, 0.75);
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }
    .page-title-section {
        padding: 150px 0 130px;
    }
    .page-title-section h1 {
        font-size: 52px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 991px) {
    .head-call,
    .head-call1 {
        font-size: 27px !important;
        padding: 0 9px !important;
        color: #fff;
        border-radius: 5px;
        top: -2px;
    }
    .header-style1 .navbar-toggler {
        background: #081e66d6;
    }
    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .header-style1 .navbar-toggler.menu-opened:after,
    .header-style1 .navbar-toggler.menu-opened:before,
    .header-style1 .navbar-toggler:before {
        background: #fff;
    }
    .head-call {
        background: #30427f !important;
    }
    .head-call1 {
        background: #2ecd2e !important;
        -moz-animation: 2s ease-in-out infinite blink;
        -webkit-animation: 2s ease-in-out infinite blink;
        -ms-animation: blink normal 2s infinite ease-in-out;
        animation: 2s ease-in-out infinite blink;
    }
    .title-sm.banner:before {
        bottom: 7px;
    }
    .title-sm:before {
        bottom: 3px;
    }
    .page-title-section {
        padding: 140px 0 120px;
    }
    .page-title-section.style1 {
        padding: 130px 0;
    }
    .page-title-section h1 {
        font-size: 48px;
    }
    .pagetitle-lg-title {
        font-size: 85px;
        margin: 0 0 -48px;
    }
}
@media screen and (max-width: 767px) {
    .pagetitle-lg-title {
        font-size: 70px;
    }
}
.page-title-section2 {
    padding: 210px 0 150px;
}
@media screen and (max-width: 1199px) {
    .page-title-section2 {
        padding: 170px 0 110px;
    }
}
.card-style01 {
    position: relative;
    margin-bottom: 30px;
}
.card-style01:hover .title {
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
}
.card-style01 .title {
    margin-left: 30px;
    position: absolute;
    background: #fff;
    bottom: -30px;
    padding: 15px 30px;
    -webkit-transition: 0.45s ease-in-out;
    transition: 0.45s ease-in-out;
    right: 0;
    left: 0;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-style01:hover .overlay {
    top: 0;
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.card-style01 .overlay {
    position: absolute;
    left: 0;
    top: 0;
    padding: 37px;
    z-index: 1;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease-in-out;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}
.card-style01 .overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #0c3246;
    z-index: -1;
    opacity: 0.7;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}
.card-style-02 .card-icon {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}
.card-style-02 .card-icon img {
    width: 100%;
    height: 215px;
    margin-bottom: 30px;
}
.serv-box {
    padding: 30px;
    background: #30427f;
    border-radius: 10px;
}
.serv-box ul li {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
    text-indent: 0;
    list-style: none;
}
.card-style-03 .card-price {
    background-color: #18455d;
    position: absolute;
    bottom: -50px;
    right: 30px;
    width: 100px;
    color: #fff;
    height: 100px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card-style-03 .price-before {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: tb-rl;
    background: #081e66d6;
    padding: 15px 5px;
    color: #fff;
}
.card-style-04 {
    overflow: hidden;
    border: none;
}
.card-style-04 .card-list {
    position: absolute;
    top: 0;
    left: 30px;
}
.card-style-04 .card-list a {
    margin-right: 4px;
    margin-bottom: 4px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: #081e66d6;
    padding: 4px 20px;
}
.card-style-04 .blog-img img,
.portfolio-style01 .portfolio-content,
.portfolio-style01 .portfolio-img img {
    transition: 0.3s ease-in-out;
}
.card-style-04:hover .blog-img img,
.portfolio-style01:hover .portfolio-img img {
    transform: scale(1.1);
}
.card-style05 {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    height: 100%;
}
.card-style05 .card-img .icon {
    position: absolute;
    display: inline-block;
    height: 70px;
    width: 70px;
    background: #fff;
    text-align: center;
    line-height: 70px;
    left: 30px;
    font-size: 22px;
    color: #081e66d6;
    border-radius: 50%;
    -webkit-box-shadow: 0 10px 20px 0 #081e66d6;
    box-shadow: 0 10px 20px 0 rgba(231, 72, 96, 0.2);
    bottom: -35px;
}
.card-style06 .card-body,
.card-style06 .card-inner {
    height: 100%;
    transition: 0.7s;
    perspective: inherit;
    padding: 0 0 0 40px;
    box-shadow: 11px 10px 38px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
}
.card-style06 {
    position: relative;
    perspective: 1000px;
    width: 100%;
    height: 300px;
    background-color: transparent;
}
.card-style06:hover .card-front {
    transform: rotateY(180deg);
}
.card-style06 .card-front {
    position: relative;
    z-index: 1;
    transition: 0.7s;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: inherit;
    background-color: #18455d;
}
.card-style06 .card-inner {
    flex-direction: column;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotate(0);
    transform-style: preserve-3d;
    justify-content: center;
}
.card-style06 .card-body {
    flex-direction: column;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotate(0);
    transform-style: preserve-3d;
    justify-content: center;
    transform: rotateY(-180deg);
}
.card-style07 .social-icons span.icon {
    position: absolute;
    left: 0;
    bottom: 30px;
    background: #081e66d6;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 4px #eef0f8;
    display: inline-block;
    font-size: 13px;
}
.card-style07 .social-icons .social-link1,
.card-style07 .social-icons .social-link2 {
    position: absolute;
    bottom: 36px;
    left: -32px;
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    flex-wrap: inherit;
    margin: -5px;
}
.card-style07 .social-icons .social-link1 li {
    display: block;
    list-style: none;
    padding: 5px;
}
.card-style07 .social-icons .social-link2 li {
    list-style: none;
    padding: 5px;
    display: inline-block;
}
.card-style07 .social-icons .social-link1 li a,
.card-style07 .social-icons .social-link2 li a {
    width: 40px;
    height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 4px 4px #eef0f8;
    display: inline-block;
    line-height: 40px;
    font-size: 13px;
}
.card-style07 .social-icons .social-link1 li a.linkedin {
    color: #0078b5;
}
.card-style07 .social-icons .social-link1 li a.instagram {
    color: #ea4c88;
}
.card-style07 .social-icons .social-link1 li a.pinterest {
    color: #be0215;
}
.card-style07:hover .card-body .team-content {
    opacity: 0;
}
.card-style07:hover .social-icons .social-link1 {
    opacity: 1;
    bottom: 90px;
}
.card-style07:hover .social-icons .social-link2 {
    opacity: 1;
    left: 35px;
    display: flex;
}
.card-style07 .social-icons .social-link2 li a.youtube {
    color: red;
}
.card-style07 .social-icons .social-link2 li a.facebook {
    color: #4267b2;
}
.card-style07 .social-icons .social-link2 li a.twitter {
    color: #1da1f2;
}
.card-style07 .social-icons .social-link1 li a.instagram:hover,
.card-style07 .social-icons .social-link1 li a.linkedin:hover,
.card-style07 .social-icons .social-link1 li a.pinterest:hover,
.card-style07 .social-icons .social-link2 li a.facebook:hover,
.card-style07 .social-icons .social-link2 li a.twitter:hover,
.card-style07 .social-icons .social-link2 li a.youtube:hover {
    background-color: #18455d;
    color: #fff;
}
.card-style08 .card-body .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-style09 .feature-inner {
    margin-top: -100px;
    position: relative;
    z-index: 9;
}
.card-style09:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: #f8f9fa;
    opacity: 0;
}
@media screen and (max-width: 991px) {
    .page-title-section2 {
        padding: 150px 0 90px;
    }
    .card-style09:before {
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    .page-title-section2 {
        padding: 130px 0 70px;
    }
    .card-style09:before {
        height: 80%;
    }
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.portfolio-img11 img,
.video_btn.small:after {
    height: 50px;
    width: 50px;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}
.fullscreen-bg {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}
.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}
@media (max-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}
@supports (-webkit-touch-callout: none) {
    @media (min-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            height: 400%;
            top: -100%;
        }
    }
    @media (max-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            width: 400%;
            left: -100%;
        }
    }
}
.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #081e66d6;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}
.video_btn:after,
.video_btn:before {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 2px solid #081e66d6;
    opacity: 0.3;
    animation: 1.5s ease-out infinite pulse-border;
    content: "";
}
.video_btn:after {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.portfolio-img11 {
    padding: 20px;
    box-shadow: 0 0 10px 0 #e4dcdc;
    border-radius: 20px;
    background: #30427f;
    color: #fff;
    text-align: center;
}
.portfolio-img11 h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}
.portfolio-img11 img {
    margin-bottom: 10px;
}
.video_btn:before {
    height: 95px;
    width: 95px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.video_btn.small {
    width: 55px;
    height: 55px;
    line-height: 55px;
}
.video_btn.small:before {
    height: 65px;
    width: 65px;
}
.copyright-menu {
    display: flex;
    list-style: none;
    float: right;
}
b,
strong {
    font-weight: 900 !important;
}
.copyright-menu li {
    padding: 0 10px;
    position: relative;
    top: 10px;
    border-right: 1px solid #fff;
}
.copyright-menu li:last-child {
    border-right: 0px solid #fff;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
.filtering {
    margin-bottom: 40px;
}
.filtering span {
    cursor: pointer;
    font-size: 14.4px;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 6px 15px;
    background: 0 0;
    color: #18455d;
    border: 2px solid #18455d;
}
.filtering span:last-child,
.team-details-social ul li:last-child {
    margin: 0;
}
.filtering .active {
    color: #fff;
    background: #081e66d6;
    border: 2px solid #081e66d6;
}
.lg-backdrop,
.modal-backdrop {
    z-index: 99999;
}
.lg-outer,
.modal {
    z-index: 999999;
}
.lg-progress-bar .lg-progress,
.next-page .image-next:after,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.prev-page .image-prev:after,
.progress-style1 .progress .progress-bar {
    background-color: #081e66d6;
}
.lg-backdrop.in {
    opacity: 0.85;
}
.portfolio-style01 {
    position: relative;
    border-radius: 5px;
}
.portfolio-style01 .portfolio-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.portfolio-img img {
    height: 550px;
    width: 100%;
}
.portfolio-img1 img,
.portfolio-img2 img {
    height: auto;
    box-shadow: 0 0 20px 0 #dddddd75;
    width: 100%;
}
.portfolio-img1 img {
    padding: 0 15px;
    border-radius: 20px 0;
    border: 2px dashed #30427f;
    background: #ebf3f6;
}
.portfolio-img2 img {
    padding: 0 30px;
    border-radius: 10px;
    border: 2px dashed #30427f;
    background: #f1f1f1;
}
.portfolio-style01 .portfolio-img a,
.process-style-01 .thumb {
    position: relative;
    display: inline-block;
}
.portfolio-style01:hover .portfolio-content,
.team-style01:hover .image .social li {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.portfolio-style01 .portfolio-content {
    left: 0;
    bottom: -43px;
    background-color: #fff !important;
    opacity: 0;
    right: 0;
    margin: 0 20px;
    visibility: hidden;
    position: absolute;
    transform: translateY(50%);
    z-index: 2;
    padding: 20px 30px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease-in-out;
}
.next-page a:hover .image-next:after,
.portfolio-style01:hover::after,
.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1;
}
.portfolio-style01:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(31, 36, 44, 0.7);
    content: "";
    transition: 0.3s ease-in-out;
}
.portfolio-style02 .portfolio-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 69, 93, 0.3);
    top: 0;
    left: 0;
}
.portfolio-style02 .portfolio-box .portfolio-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #081e66d6;
}
.copy-element,
.source-element {
    transition: opacity 0.3s ease-in-out;
}
.portfolio-style02 .portfolio-box:hover .portfolio-inner:before {
    height: 100%;
}
.pagination {
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}
.pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
}
.pagination li {
    display: inline;
    margin-right: 10px;
}
.countdown li:last-child,
.pagination li:last-child,
.resp-tabs-list li:last-child,
.social-icon-style1 li:last-child,
.social-icon-style2 li:last-child,
.social-icon-style3 li:last-child {
    margin-right: 0;
}
.pagination a {
    background: 0 0;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    color: #42545e;
    border: 1px solid #ddd;
    line-height: 25px;
}
.pagination a:active,
.pagination a:focus,
.pagination a:hover {
    background-color: #18455d;
    color: #fff;
    box-shadow: none;
}
.pagination .active a {
    background-color: #f7f7f7;
    color: #002147;
    border: 1px solid #dbdbdb;
    cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}
.owl-nav i,
.owl-nav span {
    color: #232323;
    font-size: 28px;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
ul.resp-tabs-list {
    margin-bottom: 15px;
    padding: 0;
}
.resp-tabs-list li {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 20px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    background: #fff;
    color: #081e66d6;
    text-align: left;
    border-radius: 0;
}
.resp-tabs-list li i {
    font-size: 24px;
    padding-right: 10px;
    vertical-align: text-bottom;
}
.resp-tabs-container {
    padding: 0;
    clear: left;
}
.resp-tab-content {
    display: none;
    padding: 40px;
    border: none;
    float: left;
    width: 100%;
    box-shadow: none;
    border-radius: 4px;
    background: 0 0;
}
.resp-tabs-list li.resp-tab-active {
    margin-bottom: -1px;
    background-color: #081e66d6;
    color: #fff;
}
.next-link-page-info > span,
.prev-link-page-info > span,
.resp-accordion-active,
.resp-content-active,
.resp-easy-accordion h2.resp-accordion {
    display: block;
}
h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 18px;
    color: #fff;
    border-top: 0 solid #c1c1c1;
    margin-bottom: 5px;
    padding: 14px 15px;
    float: left;
    width: 100%;
    background: #18455d !important;
    border-radius: 0;
}
h2.resp-tab-active {
    border-bottom: 0 solid #c1c1c1 !important;
    background-color: #081e66d6 !important;
    color: #fff;
    margin-bottom: 0;
    border-radius: 0;
}
h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: #00f;
}
.resp-arrow,
h2.resp-tab-active span.resp-arrow {
    border-style: solid;
    float: right;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    display: block;
}
.tab-style1.top-margin {
    margin-top: -55px !important;
}
.resp-vtabs.style1 ul.resp-tabs-list {
    margin-top: -80px;
}
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 0;
}
.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 18px 20px !important;
    margin: 0 0 25px;
    cursor: pointer;
    float: none;
    font-size: 18px;
    background: rgba(24, 69, 93, 0.1);
    color: #18455d;
    border-radius: 0;
}
.resp-vtabs .resp-tabs-container {
    padding: 0;
    background-color: #fff;
    float: left;
    width: 100%;
    clear: none;
    border-radius: 0 8px 8px 0;
}
.resp-vtabs .resp-tab-content {
    word-wrap: break-word;
    border-radius: 0 8px 8px 0;
    padding: 0;
}
.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 18px 20px !important;
    background-color: #081e66d6;
    color: #fff;
}
.resp-arrow {
    border-color: transparent #fff #fff transparent;
    border-width: 0 2px 2px 0;
    margin-top: 7px;
}
h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-width: 2px 0 0 2px;
    margin-top: 10px;
}
.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
}
.resp-tab-content-active,
h2.resp-accordion.resp-tab-active {
    border-color: #e8e8e8 !important;
}
.resp-jfit {
    width: 100%;
    margin: 0;
}
.resp-tab-content-active {
    display: block;
}
.accordion-style .card {
    background: 0 0;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0;
}
.accordion-style .card-header {
    border: 0;
    padding: 0;
    border-bottom: none;
    background: 0 0;
}
.accordion-style .btn-link,
.accordion-style .btn-link.collapsed {
    width: 100%;
    white-space: normal;
    padding: 20px 45px 20px 18px;
    text-align: left;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
}
.accordion-style .btn-link,
.accordion-style .btn-link.collapsed,
.sidebar .widget {
    background-color: #fff;
    display: block;
    position: relative;
}
.accordion-style .btn-link {
    color: #081e66d6;
    border: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
}
.accordion-style .btn-link.collapsed {
    color: #42545e;
    border: none;
}
.accordion-style .btn-link.collapsed:after,
.accordion-style .btn-link:after {
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    position: absolute;
    background-color: transparent;
    border-radius: 0.3rem;
    width: 25px;
    height: 25px;
    text-align: center;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed:after {
    content: "+";
    top: 22px;
    color: #212121;
    line-height: 20px;
}
.accordion-style .btn-link:after {
    content: "-";
    top: 20px;
    color: #081e66d6;
    line-height: 22px;
}
.accordion-style .card-body {
    padding: 0 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none;
}
.sidebar .widget .category-list li {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 20px 14px 28px;
}
.sidebar .widget .category-list li a {
    color: #fff;
    transition: 0.3s ease-in-out;
    display: inline-block;
    position: relative;
}
.sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative;
}
.sidebar .widget .category-list li a:after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 700;
    margin-left: -10px;
    opacity: 0;
}
.sidebar .widget .category-list li a:before {
    width: 20px;
    height: 20px;
    background: #081e66d6;
    z-index: 1;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 3px;
    left: -8px;
}
.sidebar .widget .category-list li.active a:after,
.sidebar .widget .category-list li:hover a:after {
    margin-left: 10px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}
.btn-wrapper {
    position: relative;
    text-align: center;
    font-weight: 400;
    display: inline-block;
}
.btn-wrapper .dow-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px;
    background-color: #081e66d6;
    color: #fff;
    margin: 0 -5px;
    display: inline-block;
}
.btn-wrapper .butn-or {
    position: absolute;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #18455d;
    box-shadow: 0 0 0 5px rgba(24, 69, 93, 0.3);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    left: 46%;
    top: 11px;
}
.btn-wrapper .disc-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px;
    background-color: #fff;
    color: #18455d;
    display: inline-block;
}
.widget-content {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px;
}
.sidebar .menu li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.sidebar .menu li a:hover,
.sidebar .menu li.active a {
    color: #fff;
    background-color: #081e66d6;
    padding-left: 80px;
}
.sidebar .menu li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #1e2434;
    text-transform: uppercase;
    background-color: #fff;
    padding: 17px 20px 17px 50px;
    border: 1px solid #e7e3e3;
}
.sidebar .menu li a:hover:before,
.sidebar .menu li.active a:before {
    background-color: #18455d;
    font-family: "Font Awesome 6 Free";
    content: "\f178";
    width: 60px;
    color: #fff;
}
.sidebar .menu li.active:after,
.sidebar .menu li:hover:after {
    content: "";
    padding: 8px;
    position: absolute;
    bottom: 0;
    background: #fff;
    right: 0;
}
.sidebar .menu li.active:before,
.sidebar .menu li:hover:before {
    content: "";
    padding: 6px;
    position: absolute;
    bottom: 16px;
    background: #fff;
    right: 9px;
    z-index: 1;
}
.sidebar .menu li a::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background-color: #f4f5f4;
    text-align: center;
    font-size: 16px;
    color: #707582;
    transition: 0.5s;
}
.blog-tags a {
    background-color: #081e66d6;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #081e66d6;
}
.blog-tags a:active,
.blog-tags a:focus,
.blog-tags a:hover {
    background-color: #fff;
    color: #081e66d6;
}
.comment-reply-link {
    color: #18455d;
    background: rgba(24, 69, 93, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
}
.html-code,
.white-popup-block {
    background-color: #fbfbfb;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
}
.countdown,
.new-sec {
    padding: 0;
}
.countdown li {
    background: #081e66d6;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    overflow: hidden;
    margin-right: 10px;
    padding: 15px 10px;
    position: relative;
}
.countdown li span {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    line-height: normal;
    position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize;
}
@media screen and (max-width: 1199px) {
    .video_btn,
    .video_btn:after {
        height: 75px;
        width: 75px;
    }
    .video_btn {
        line-height: 75px;
    }
    .video_btn:before {
        height: 90px;
        width: 90px;
    }
    .portfolio-style01 .portfolio-content {
        padding: 30px;
    }
    .countdown li {
        min-width: 120px;
    }
    .countdown li span {
        font-size: 34px;
    }
}
@media screen and (max-width: 991px) {
    .video_btn,
    .video_btn:after {
        height: 70px;
        width: 70px;
    }
    .video_btn {
        line-height: 70px;
    }
    .video_btn:before {
        height: 85px;
        width: 85px;
    }
    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
        }
    }
    .resp-tab-content,
    .resp-vtabs .resp-tab-content {
        margin-bottom: 5px;
        padding: 30px;
    }
    .tab-style1.top-margin {
        margin-top: 0 !important;
    }
    ul.resp-tabs-list {
        display: none;
    }
    h2.resp-accordion {
        display: block;
    }
    h2.resp-accordion i {
        margin-right: 8px;
        font-size: 20px;
        color: #fff;
        vertical-align: text-bottom;
    }
    .resp-tab-content:last-child,
    .resp-vtabs .resp-tab-content:last-child {
        margin-bottom: 0;
    }
    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: left;
        width: 100%;
        min-height: 100px;
        clear: none;
        background: 0 0;
    }
    .resp-accordion-closed {
        display: none !important;
    }
    .resp-tab-content {
        background-color: #fff;
        border-radius: 0;
        border: 1px solid #eee;
    }
    .accordion-style .card-body {
        padding: 10px 25px 30px;
    }
    .countdown li span {
        font-size: 30px;
    }
}
@media screen and (max-width: 767px) {
    .video_btn,
    .video_btn:after {
        height: 60px;
        width: 60px;
    }
    .video_btn {
        line-height: 60px;
    }
    .video_btn:before {
        height: 75px;
        width: 75px;
    }
    .filtering {
        margin-bottom: 0;
    }
    .filtering span {
        margin-bottom: 17px;
    }
    .countdown li {
        min-width: 180px;
        margin-top: 5px;
    }
    .countdown li:nth-child(2) {
        margin-right: 0;
    }
}
.bd-example a,
.bd-example button {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.icon-gallery .d-table,
.testimonial-carousel1.owl-carousel .owl-dots {
    margin-top: 30px;
}
.icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: 0.2s ease-in-out;
    padding: 10px;
    background: #fff;
}
.icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: #081e66d6;
}
pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px;
    padding-top: 0;
}
.html-code {
    position: relative;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed;
}
.copy-element {
    position: absolute;
    top: 0;
    right: 85px;
}
.source-element {
    position: absolute;
    top: 0;
    right: 0;
}
.html-code .copy-element {
    top: 15px;
    right: 30px;
}
.box-hover:hover .copy-element,
.box-hover:hover .source-element,
.html-code:hover .copy-element,
.html-code:hover .source-element,
.white-popup-block:hover .copy-element {
    opacity: 1;
}
.copy-element > a,
.source-element > a {
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer !important;
    font-weight: 600;
}
.copy-element > a:hover,
.source-element > a:hover {
    background: #081e66d6;
    color: #fff !important;
}
.copy-clipboard {
    cursor: pointer;
    padding: 5px 15px;
}
.white-popup-block {
    position: relative;
    max-width: 650px;
    padding: 60px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
    display: block !important;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
    opacity: 0;
    margin: 0;
}
.white-popup-block:before {
    color: rgba(231, 72, 96, 0.2);
    content: "•••";
    font-size: 24px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px;
}
.white-popup-block .copy-element {
    top: 45px;
    right: 30px;
}
.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px;
}
.inner-title h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 26px;
    color: #081e66d6;
}
.team-style01 {
    text-align: center;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.team-style01:hover .image::after {
    opacity: 1;
    transition: 0.3s;
}
.team-style01 .image::after {
    position: absolute;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(12, 50, 70, 0.7);
    transition: 0.3s;
}
.team-style01 .image .social {
    list-style-type: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    bottom: 20px;
}
.team-style01 .image .social li {
    display: inline-block;
    transform: translateY(30px);
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.team-style01 .image .social li a {
    display: block;
    text-align: center;
    position: relative;
    font-size: 15px;
    margin-right: 25px;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.team-style01 .image .social li a i {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
}
.about-style-02 .about-img {
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -webkit-animation: 5s linear infinite alternate hero-border;
    -moz-animation: 5s linear infinite alternate hero-border;
    -o-animation: 5s linear infinite alternate hero-border;
    animation: 5s linear infinite alternate hero-border;
    overflow: hidden;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    z-index: 9;
}
.about-style-02 .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #081e66d6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
}
.about-style-02 blockquote {
    position: relative;
    display: block;
    background: #18455d;
    padding: 31px 50px 32px;
    margin-bottom: 50px;
}
.about-style-02 blockquote:before {
    position: absolute;
    content: "";
    background: #18455d;
    width: 40px;
    height: 30px;
    left: 0;
    bottom: -29px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}
.about-style-02 blockquote .icon,
.testimonials-style02 blockquote .icon {
    position: absolute;
    left: 50px;
    top: -10px;
    font-size: 80px;
    line-height: 60px;
    font-weight: 700;
    color: #081e66d6;
}
.about-style-02 blockquote h3,
.testimonials-style02 blockquote h3 {
    display: block;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
}
.about-style-03 .about-text {
    padding: 20px 50px 20px 20px;
    transition-duration: 0.3s;
}
.about-style-03 .about-text:hover {
    box-shadow: 4px 4px 36px 0 rgba(0, 0, 0, 0.09);
}
.about-style-03 .about-text i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 26px;
    background: #081e66d6;
    display: inline-block;
}
.about-style-03 .about-img {
    position: absolute;
    right: 0;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
}
.about-style-03 .about-img:before {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    border: 2px solid #081e66d6;
    width: 184px;
    height: 428px;
    z-index: -1;
    content: "";
}
.sm-box-wrapper {
    position: absolute;
    bottom: 5%;
    left: 20%;
}
.sm-box-wrapper .inner-box {
    background-color: #081e66d6;
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: center;
    padding: 10px;
}
.about-style-01 .about-icon,
.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.sm-box-wrapper span.exp-no {
    font-size: 65px;
    color: #fff;
    font-weight: 800;
}
.sm-box-wrapper span.exp-year {
    color: #fff;
    line-height: 1.5;
    font-size: 20px;
    margin-left: 20px;
}
.about-style-01 .about-icon {
    margin-left: -26px;
    margin-top: 8px;
    border-radius: 50px;
}
.about-style-01 .img1,
.about-style-01 .img2 {
    margin-left: -26px;
}
.why-choose1 .why-choose-img {
    border-radius: 0;
    background-color: transparent;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -70px;
    height: 100%;
    width: auto;
    margin-right: -30px;
    z-index: 3;
    position: relative;
}
.why-choose1 .why-choose-text {
    border-radius: 0;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-color: #18455d !important;
    height: 100%;
    width: auto;
}
.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: 0 0;
    height: 48px;
}
.newsletter-form .quform-submit-inner .btn {
    padding: 0.5rem 1.15rem;
}
.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
}
.newsletter-form .form-control:active,
.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error select,
.newsletter-form .quform-has-error textarea,
.quform-has-error .custom-file-label,
.quform-has-error input,
.quform-has-error input[type="file"],
.quform-has-error select,
.quform-has-error textarea {
    border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}
.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.team-details-social ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0;
}
.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px;
}
.team-details-social ul li a {
    background: #fff;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}
.process-style-01 img,
.process-style-01 span {
    border-radius: 50%;
    transition: 0.35s ease-in-out;
}
.team-details-social ul li a:hover {
    color: #fff;
    border-color: #081e66d6;
    background: #081e66d6;
}
.process-style-01 .process-block {
    width: 167px;
    height: 167px;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    margin: 0 auto 25px;
}
.process-style-01 .process-block .process-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #081e66d6;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
}
.process-style-01 .process-block .process-count {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    text-align: center;
    position: absolute;
    right: 30px;
    bottom: 20px;
    box-shadow: 0 5px 18.8px 1.2px rgba(99, 102, 187, 0.1);
    z-index: -1;
}
.process-style-01 .process-block .process-count span {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #18455d;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
    top: 40%;
    border-radius: 50%;
    position: absolute;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
    left: -90px;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
    right: -90px;
}
.testimonial-carousel1 .owl-nav span {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px !important;
    color: #fff;
    transition: 0.3s;
    border-radius: 50%;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next:hover span,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev:hover span {
    background: #fff;
    border-radius: 50%;
    color: #081e66d6;
}
.testimonial-quote {
    -webkit-text-stroke-width: 1px;
    color: #ffffff00;
    -webkit-text-stroke-color: #ffffff1a;
    font-size: 810px;
    line-height: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
.next-page .next-title,
.testimonial-carousel2 .owl-nav {
    text-align: right;
}
.testimonial-carousel2 .owl-nav .owl-next span,
.testimonial-carousel2 .owl-nav .owl-prev span {
    box-shadow: -1px 0 8px 0 rgba(0, 0, 0, 0.15);
    background-color: #18455d;
    color: #fff;
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: 0.4s;
}
.testimonial-carousel2 .owl-nav .owl-next:hover span,
.testimonial-carousel2 .owl-nav .owl-prev:hover span {
    background-color: #fff;
    color: #18455d;
}
.testimonials-style01 .video_btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.testimonials-style01 .video_btn:before {
    width: 75px;
    height: 75px;
}
.testimonials-style01 .video_btn:after {
    width: 60px;
    height: 60px;
}
.testimonials-style02 blockquote {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 31px 50px 32px;
    margin-bottom: 50px;
}
.testimonials-style02 blockquote:before {
    position: absolute;
    content: "";
    background: #f6f6f6;
    width: 40px;
    height: 30px;
    left: 0;
    bottom: -30px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}
.progress-style1 .progress {
    height: 8px;
}
.process-style-01 span {
    display: inline-block;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #081e66d6;
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    z-index: 1;
    margin-bottom: 19px;
    bottom: 20px;
    right: -5px;
}
.process-style-01:nth-child(2) .item span {
    bottom: auto;
}
.process-style-01 img {
    height: 170px;
    width: 170px;
    border: 1px solid #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}
.main-process {
    position: relative;
    z-index: 1;
    padding-top: 33px;
}
.main-process .line-shape {
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
    transform: rotate(-3deg);
}
.process-style-01 .item:hover span,
.process-style-01:nth-child(2n) .item span {
    transform: scale(1.2);
    background: #18455d;
    color: #fff;
    right: -45px;
}
.process-style-01 .item:hover img,
.process-style-01:nth-child(2n) .item img {
    transform: scale(1.4);
    margin-bottom: 60px;
}
.counter-style1 {
    margin-bottom: -120px;
    position: relative;
    z-index: 9;
}
.counter-style1 .count-block {
    position: absolute;
    right: 0;
    bottom: 0;
}
.counter-style2 {
    border-right: 1px solid #d3d3d3;
    position: relative;
}
.counter-style2:after {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 50px;
    background-color: #081e66d6;
    right: -4px;
    left: auto;
    bottom: -20px;
    animation: 5s infinite alternate pulse;
}
@keyframes pulse {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-110px);
    }
}
.counter-style-01 {
    margin-top: -95px;
}
.counter-style-01 .count-no {
    font-size: 300px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 260px;
    display: inline-block;
    color: #232323;
    clear: both;
    -webkit-background-clip: text;
}
.counter-style-01 .count-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 4px;
    color: #232323;
    display: block;
}
.counter-style-01 .count-img {
    border-radius: 50%;
    border: 20px solid #fff;
}
.clients-style3 .mission-box,
.clients-style3 .vision-box {
    padding: 0 0 40px 40px;
}
.clients-style3 .mission-box .icon i,
.clients-style3 .vision-box .icon i {
    font-size: 170px;
    color: rgba(255, 255, 255, 0.1);
}
.clients-style3 .clients-img {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    height: max-content;
    overflow: hidden;
}
.calltoaction-style02 .icon,
.calltoaction-style02 .right-img .video-box .story-video .video_btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.clients-style3 .clients-img img {
    transition: 0.3s;
    margin: 0 auto;
}
.clients-style3 .clients-img .hover-img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    visibility: hidden;
    display: block;
    transform: translateY(-100%);
}
.clients-style3 .clients-img:hover .hover-img {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.clients-style3 .clients-img:hover .main-img {
    transform: translateY(100%);
}
@media screen and (max-width: 1399px) {
    .counter-style-01 {
        margin-top: -105px;
    }
    .clients-style3 .mission-box .icon i,
    .clients-style3 .vision-box .icon i {
        font-size: 140px;
    }
}
@media screen and (max-width: 767px) {
    .elements-block .inner-title {
        margin-bottom: 65px;
    }
    .copy-element,
    .source-element {
        top: 65px;
    }
    .testimonial-carousel2 .owl-nav {
        bottom: -50px;
    }
    .testimonial-carousel2 .owl-nav .owl-next span,
    .testimonial-carousel2 .owl-nav .owl-prev span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }
    .counter-style1 .count-block {
        position: inherit;
    }
    .clients-style3 .mission-box .icon i,
    .clients-style3 .vision-box .icon i {
        font-size: 100px;
    }
}
.calltoaction-style01 {
    margin-bottom: -60px;
    background: 0 0;
    z-index: 9;
}
.calltoaction-style01 .main-text {
    font-size: 50px;
}
.calltoaction-style01 .main-bg {
    margin-left: 292px;
}
@media screen and (max-width: 1599px) {
    .calltoaction-style01 .main-bg {
        margin-left: 100px;
    }
}
@media screen and (max-width: 1399px) {
    .calltoaction-style01 .main-text {
        font-size: 39px;
    }
    .calltoaction-style01 .main-bg {
        margin-left: 45px;
    }
}
.calltoaction-style02 .content h2 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 40px;
}
.calltoaction-style02 .icon {
    background-color: red;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 25px;
}
.contact-icon:before,
.image-hover:before {
    display: block;
    height: 100%;
    content: "";
    z-index: 1;
}
.calltoaction-style02 .icon:before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: transparent;
    border: 1px solid #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.calltoaction-style02 .right-img {
    margin-top: -69px;
}
.calltoaction-style02 .right-img .video-box {
    position: absolute;
    top: 0;
    left: -130px;
    background-color: #081e66d6;
    width: 130px;
    height: 130px;
}
.calltoaction-style02 .right-img .video-box .story-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.calltoaction-style02 .right-img .video-box .story-video .video_btn:before {
    width: 65px;
    height: 65px;
    border: 2px solid #fff;
}
.calltoaction-style02 .right-img .video-box .story-video .video_btn:after {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
}
.calltoaction-style02 .call-icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: #fff;
    text-align: center;
    color: #18455d;
    border-radius: 50%;
    font-size: 25px;
}
@media screen and (max-width: 1199px) {
    .about-style-02 blockquote,
    .testimonials-style02 blockquote {
        padding: 21px 40px 22px;
    }
    .about-style-02 blockquote .icon,
    .testimonials-style02 blockquote .icon {
        left: 40px;
        top: -15px;
        font-size: 70px;
    }
    .about-style-02 blockquote h3,
    .testimonials-style02 blockquote h3 {
        font-size: 20px;
    }
    .sm-box-wrapper {
        bottom: 10%;
    }
    .sm-box-wrapper span.exp-no {
        font-size: 50px;
    }
    .sm-box-wrapper span.exp-year {
        font-size: 15px;
    }
    .counter-style-01 {
        margin-top: -119px;
    }
    .calltoaction-style02 .right-img {
        margin-top: -236px;
    }
    .calltoaction-style02 .right-img .video-box {
        width: 100px;
        height: 100px;
        left: -100px;
    }
}
@media screen and (max-width: 992px) {
    .calltoaction-style01 .main-text {
        font-size: 26px;
    }
    .calltoaction-style02 .right-img {
        margin-top: -229px;
    }
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    margin-bottom: 0.5rem;
}
.form-check-input:checked {
    border-color: #081e66d6;
    background-color: #081e66d6;
}
.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1;
}
.quform-element > label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px;
}
.quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px;
}
.instagram-post .single-post img,
.quform-inner input {
    width: 100%;
}
.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 0 15px;
    vertical-align: top;
}
.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
}
.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal;
}
.quform-errors > .quform-error,
.quform-outer-no-js .quform-error {
    padding: 0;
    background: 0 0;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message,
.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-loading-wrap,
.quform-submit-inner {
    float: none;
}
.quform-element {
    margin-bottom: 0.3rem;
}
.ani-left-right {
    -webkit-animation-name: left-right;
    animation-name: left-right;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes left-right {
    0%,
    100% {
        transform: translateX(-30px);
    }
    50% {
        transform: translateX(-10px);
    }
}
.ani-top-bottom {
    -webkit-animation-name: top-bottom;
    animation-name: top-bottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes top-bottom {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.image-hover:before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.image-hover:hover:before {
    -webkit-animation: 1s shine;
    animation: 1s shine;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.social-icon-style1 {
    margin-top: 20px;
    display: inline-block;
    padding-left: 0;
    list-style: none;
}
.social-icon-style11 {
    margin-top: 20px;
    display: inline-block;
    padding-left: 0;
    list-style: none;
}
.social-icon-style1 li,
.social-icon-style11 li,
.social-icon-style2 li,
.social-icon-style3 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #fff;
    height: 30px;
    line-height: 41px;
    width: 30px;
    border-radius: 5px;
}
.social-icon-style11 li a {
     display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #fff;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    background: #30427f82;
    padding: 0px 10px;
    margin-bottom: 10px;
}
.social-icon-style2 li a,
.social-icon-style3 li a {
    display: inline-block;
    height: 41px;
    width: 41px;
    text-align: center;
    font-size: 14px;
}
.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}
.social-icon-style2 li a {
    color: #081e66d6;
    background: #fff;
    line-height: 42px;
}
.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}
.mf-social-side-list ul li a,
.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
@media screen and (max-width: 991px) {
    .process-style-01 img {
        transform: scale(1.4);
        margin-bottom: 60px;
    }
    .main-process .line-shape {
        display: none;
    }
    .counter-style2 {
        border-right: none;
    }
    .counter-style2:after {
        content: none;
    }
    .calltoaction-style02 .right-img {
        margin-top: -39px;
    }
    .calltoaction-style02 .right-img .video-box {
        left: 0;
    }
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
.social-icon-style3 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0;
    list-style: none;
}
.social-icon-style3 li a {
    color: #fff;
    background: #18455d;
    line-height: 41px;
}
.search-frame .search_list li + li {
    border-top: 3px solid #081e66d6;
}
.contact-map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0;
}
.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}
.contact-icon:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 50%;
    animation: 1.4s ease-out infinite pulse-border2;
}
@keyframes pulse-border2 {
    0% {
        transform: scale(1);
        opacity: 0.67;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.history-timeline:before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 100%;
    height: 1px;
    background: #232323;
    opacity: 0.2;
}
.timeline-flag {
    background: #081e66d6;
    width: 10px;
    height: 25px;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(180deg);
}
.timeline-flag:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.history-year {
    position: absolute;
    background-color: #081e66d6;
    color: #fff;
    padding: 4px 20px;
    left: 50%;
    transform: translateX(-67%);
}
@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a,
    .header-style2 .navbar-nav li.active > a,
    .header-style2 .navbar-nav li.current > a,
    .header-style2 .navbar-nav li.has-sub a:active,
    .header-style2 .navbar-nav li.has-sub a:focus,
    .header-style2 .navbar-nav li.has-sub a:hover,
    .header-style2.scrollHeader .navbar-nav li.current > a,
    .header-style2.scrollHeader .navbar-nav li.current > a:hover,
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover,
    .menu_area-light .navbar ul ul li.active > a,
    .menu_area-light .navbar-nav li.has-sub a:hover,
    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #081e66d6;
    }
    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #081e66d6;
    }
    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after,
    .header-style2 .navbar > ul > li.has-sub > a:active:after,
    .header-style2 .navbar > ul > li.has-sub > a:focus:after,
    .header-style2 .navbar > ul > li.has-sub > a:hover:after,
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after,
    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #081e66d6 #081e66d6 transparent;
    }
    .header-style2 .butn.secondary:before {
        background: #fff;
    }
    .header-style2 .butn.secondary:active,
    .header-style2 .butn.secondary:focus,
    .header-style2 .butn.secondary:hover {
        color: #18455d !important;
    }
    .header-style2.scrollHeader .butn.secondary:before {
        background: #081e66d6;
    }
    .header-style2.scrollHeader .butn.secondary:active,
    .header-style2.scrollHeader .butn.secondary:focus,
    .header-style2.scrollHeader .butn.secondary:hover {
        color: #fff !important;
    }
    .why-chooseus {
        margin-top: -4rem;
    }
}
.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.next-page,
.prev-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}
.all-demo,
.buy-theme {
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.next-page:before,
.prev-page:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}
.all-demo,
.all-demo:hover,
.buy-theme,
.buy-theme:hover {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
}
.next-page .page-info > a,
.prev-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s;
}
.next-page .page-info .image-next,
.next-page .page-info .image-prev,
.prev-page .page-info .image-next,
.prev-page .page-info .image-prev {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}
.next-page .page-info .next-title,
.next-page .page-info .prev-title,
.prev-page .page-info .next-title,
.prev-page .page-info .prev-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}
.next-page .image-next:before,
.prev-page .image-prev:before {
    z-index: 2;
    font-family: themify;
    line-height: 70px;
    display: block;
    visibility: hidden;
    color: #fff;
    right: 0;
    font-size: 21px;
    left: 0;
}
.instagram-post .single-post > a:before,
.next-page .image-next:after,
.next-page .image-next:before,
.prev-page .image-prev:after,
.prev-page .image-prev:before {
    transition: 0.3s ease-in-out;
    position: absolute;
    opacity: 0;
}
.next-page .page-info .next-title:empty,
.next-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty,
.prev-page .page-info .prev-title:empty {
    display: none;
}
.next-page:hover:before,
.prev-page:hover:before {
    background-color: #fff;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
    justify-content: flex-start;
    text-align: left;
}
.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0;
}
.prev-page .image-prev {
    margin-right: 20px;
}
.prev-page .image-prev:before {
    margin-left: 20px;
    content: "\e64a";
    text-align: center;
}
.prev-page .image-prev:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}
.next-page {
    margin-left: auto;
}
.next-page a {
    justify-content: flex-end;
    text-align: right;
}
h1.cera,
h1.mb-3-name,
h1.mb-3.noble {
    text-align: center;
}
.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}
.next-page .image-next {
    margin-left: 20px;
}
.next-page .image-next:before {
    margin-right: 20px;
    content: "\e64a";
    text-align: center;
    transform: scaleX(-1);
}
.next-page .image-next:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
}
.next-link-page-info .date-details,
.prev-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 20px;
    margin-bottom: -2px;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span,
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}
.next-link-page-info .date-details:only-child,
.prev-link-page-info .date-details:only-child {
    margin-top: 0;
}
.row.mt-n2-9,
.sheetal,
.social-media {
    justify-content: center;
}
@media screen and (max-width: 575px) {
    .page-title-section,
    .page-title-section.style1 {
        padding: 100px 0;
    }
    .page-title-section h1 {
        font-size: 36px;
    }
    .pagetitle-lg-title {
        font-size: 38px;
        margin: 0 0 -24px;
    }
    .card-style09:before {
        height: 85%;
    }
    .filtering span {
        padding: 6px 8px;
        margin-right: 5px;
        font-size: 13px;
    }
    .pagination li {
        margin-right: 8px;
    }
    .resp-tab-content,
    .resp-vtabs .resp-tab-content,
    .widget-content {
        padding: 20px;
    }
    .btn-wrapper .dow-btn {
        margin: 0;
        padding: 12px 25px;
    }
    .btn-wrapper .disc-btn {
        padding: 12px 25px;
    }
    .countdown li {
        min-width: 43%;
    }
    .countdown li span {
        font-size: 26px;
    }
    .about-style-02 blockquote,
    .testimonials-style02 blockquote {
        padding: 21px 25px 22px;
    }
    .sm-box-wrapper {
        bottom: 5%;
        left: 25%;
    }
    .sm-box-wrapper span.exp-no {
        font-size: 35px;
    }
    .sm-box-wrapper span.exp-year {
        font-size: 12px;
        margin-left: 15px;
    }
    .counter-style-01 .count-no {
        font-size: 230px;
        line-height: 200px;
    }
    .serv-box {
        padding: 0 30px;
    }
    .clients-style3 .mission-box .icon i,
    .clients-style3 .vision-box .icon i {
        font-size: 60px;
    }
    .clients-style3 .mission-box,
    .clients-style3 .vision-box {
        padding: 0 0 20px 20px;
    }
    .next-page .page-info > a,
    .prev-page .page-info > a {
        padding: 10px;
    }
    .next-page .page-info .next-title,
    .next-page .page-info .prev-title,
    .prev-page .page-info .next-title,
    .prev-page .page-info .prev-title {
        max-width: 168px;
    }
}
footer {
    word-break: break-word;
    background: #0c3246;
}
.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block;
}
@media screen and (max-width: 767px) {
    .calltoaction-style01 .main-text {
        font-size: 24px;
    }
    .calltoaction-style01 .main-bg {
        margin: 0 15px;
    }
    .history-year {
        transform: translateX(-50%);
    }
    .next-page,
    .prev-page {
        width: calc(100% - 20px);
        max-width: unset;
    }
    .prev-page + .next-page {
        margin-top: 0;
    }
    .page-navigation {
        flex-direction: column;
    }
    footer {
        padding-top: 60px;
    }
}
.instagram-post .single-post {
    float: left;
    padding: 8px;
    width: 33.33%;
}
.instagram-post .single-post > a {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.instagram-post .single-post > a:before {
    background: rgba(231, 72, 96, 0.7);
    content: "";
    height: 100%;
    transform: translateY(50%);
    width: 100%;
}
.instagram-post .single-post > a:hover:before {
    opacity: 1;
    transform: translateY(0);
}
.buy-theme {
    top: 147px;
    right: -89px;
    background: #081e66d6;
}
.buy-theme i {
    font-size: 26px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
}
.all-demo i {
    font-size: 27px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
}
.all-demo:hover,
.buy-theme:hover {
    right: 0;
    background: #081e66d6;
}
.all-demo span,
.buy-theme span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0;
}
.all-demo:hover span,
.buy-theme:hover span {
    opacity: 1;
    color: #fff;
}
.all-demo a,
.buy-theme a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500;
}
.all-demo {
    top: 185px;
    right: -86px;
    background: #18455d;
}
.showcase,
.slider {
    position: relative;
}
.sm-title.second {
    color: #031962;
}
.form-control-one {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    color: #fff !important;
    background-color: #253b68eb;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.about_txt,
.footer_about_txt,
.mission_vission_txt p,
.serv_ptext,
{
    text-align: justify;
}
.choice {
    margin-inline-start: 4.666667%;
}
h1.mb-3.noble {
    margin-top: 50px;
}
.py-4.border-top.border-color-light-whitesecond {
    background-color: #0c3246;
}
p.mb-1-9.display-25.display-lg-23.text-white.logitech {
    color: #000 !important;
    text-align: justify;
}
.sheetal,
.social-media {
    display: flex;
}
h1.cera.policy {
    margin-bottom: 30px;
}
.virat {
    margin-top: 20px;
}
.showcase {
    width: 100%;
    height: 600px;
    color: #fff;
}
.showcase .bg-img {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.showcase .overlay {
    width: 100%;
    height: 600px;
    background-color: rgba(0, 35, 82, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
.showcase .banner_txt {
    padding-top: 110px;
}
.about_txt strong {
    font-weight: 700;
    color: #000;
}
.service_txt p {
    font-size: 15px;
}
.Faq_text h2 {
    font-size: 36px;
    padding-top: 10px;
    padding-left: 11px;
}
.portfolio-carousel .port_text a {
    color: #000;
}
.portfolio-carousel .port_text a:hover {
    color: #081e66d6;
    transition: 0.3s;
}
.testimonial-carousel1 .testi_txt {
    font-size: 16px;
}
.blink-soft {
    animation: 1.5s linear infinite blinker;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.call_bg {
    padding: 100px 0px 40px;
}
.call_txt a,
.call_txt h3 {
    color: #fff;
    font-size: 27px;
}
.new-sec1 {
    padding: 60px 0 0;
}
.footer_logo {
    width: 150px;
}
.footer_about_txt {
    padding: 15px 0;
    font-size: 1.1rem;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
.slider {
    height: 150px;
    margin: auto;
    overflow: hidden;
    width: 100%;
}
.slider::after,
.slider::before {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    animation: 40s linear infinite scroll;
    display: flex;
    width: calc(450px * 14);
}
.slider .slide {
    height: 100px;
    width: 250px;
    padding-left: 20px;
}
.About_row {
    margin-top: 50px;
}
.About_sec .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #fff;
    margin-top: -175px;
    font-weight: 500;
}
.About_sec .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-bottom: 0;
}
.About_sec .image-column .inner-column .author-desc {
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: orange;
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}
.About_sec .image-column .inner-column .author-desc h2 {
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    margin: 0;
}
.About_sec .image-column .inner-column .author-desc span {
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 400;
}
.About_sec .image-column .inner-column:before {
    content: "";
    position: absolute;
    width: calc(50% + 125px);
    height: calc(100% + 180px);
    top: -80px;
    left: -3px;
    background: 0 0;
    z-index: 0;
    border: 44px solid #081e66d6;
}
.About_sec .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.About_sec .image-column .image-1 img,
.About_sec .image-column .image-2 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
    border-radius: 46px;
}
.About_sec .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
}
.About_sec .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.About_sec .image-column .video-link .link:hover {
    background-color: #191e34;
    color: #fff;
}
.serv_text {
    font-size: 2.1rem;
}
.serv_ptext strong {
    font-weight: 800;
}
.serv_icon i {
    color: #fff;
    font-size: 38px;
}
.serv_heading {
    font-size: 2rem;
}
.serv_card {
    height: 310px !important;
}
.service_card {
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    padding: 30px 15px;
    height: 250px;
}
.service_card .serv_icon i {
    color: #081e66d6;
    font-size: 38px;
}
.service_card h3 {
    color: #081e66d6;
    padding: 10px 0;
}
.service_card p {
    color: #000;
    text-align: center;
}
.serv-head-height {
    height: 50px;
}
.faq_section {
    background: #f0f4f7 !important;
}
.container1,
.containr {
    background-color: #fff;
}
.faq_section .faq_container {
    justify-content: center;
    display: flex;
}
.faq_section .wrapper {
    width: 90%;
}
.containr {
    color: #000;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}
.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}
.question.active::after {
    transform: rotate(45deg);
}
.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}
.container1 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.signin-signup {
    position: absolute;
    top: 55%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s ease-in-out 0.7s;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}
form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 5rem;
    transition: 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1/2;
    grid-row: 1/2;
}
.container1.sign-up-mode form.sign-in-form,
form.sign-up-form {
    opacity: 0;
    z-index: 1;
}
form.sign-in-form {
    z-index: 2;
}
.title {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}
.input-field {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}
.input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}
.input-field input,
.panel h3 {
    line-height: 1;
    font-weight: 600;
}
.input-field input {
    background: 0 0;
    outline: 0;
    border: none;
    font-size: 1.1rem;
    color: #333;
}
.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}
.social-text {
    padding: 0.7rem 0;
    font-size: 1rem;
}
.social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.45rem;
    color: #333;
    border-radius: 50%;
    border: 1px solid #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}
.social-icon:hover {
    color: #f86f03;
    border-color: #f86f03;
}
.btn {
    width: 150px;
    background-color: #f86f03;
    border: none;
    outline: 0;
    height: 49px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
}
.btn:hover {
    background-color: #f98c39;
}
.panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.container1:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    background-image:  linear-gradient(-45deg, #30427f 0, #30427f 100%);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}
.image {
    width: 100%;
    transition: transform 1.1s ease-in-out 0.4s;
}
.panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}
.left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
}
.container1.sign-up-mode .left-panel,
.right-panel {
    pointer-events: none;
}
.right-panel {
    padding: 3rem 12% 2rem 17%;
}
.panel .content {
    color: #fff;
    transition: transform 0.9s ease-in-out 0.6s;
}
.panel h3 {
    font-size: 1.5rem;
}
.panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
}
.btn.transparent {
    margin: 0;
    background: 0 0;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}
.right-panel .content,
.right-panel .image {
    transform: translateX(800px);
}
.container1.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}
.container.sign-up-mode .left-panel .content,
.container1.sign-up-mode .left-panel .image {
    transform: translateX(-800px);
}
.container1.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}
.container.sign-up-mode .right-panel .content,
.container1.sign-up-mode .right-panel .image {
    transform: translateX(0);
}
.container1.sign-up-mode .right-panel {
    pointer-events: all;
}
.mf-social-side-list {
    position: fixed;
    top: 30vh;
    right: 10px;
    z-index: 100;
}
.mf-social-side-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.mf-social-side-list ul li a {
    color: #fff;
    border-radius: 50%;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.mf-social-side-list ul li a:hover {
    opacity: 0.9;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
.mf-social-side-list ul li a[href*="facebook"] {
    background: #3b5998;
}
.mf-social-side-list ul li a[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.mf-social-side-list ul li a[href*="mailto"] {
    background: #c4302b;
}
.mf-social-side-list ul li a[href*="linkedin"] {
    background: #0077b5;
}
.mf-social-side-list ul li a[href*="whatsapp"] {
    background: #2ecd2e;
}
.menu {
    padding-left: 0;
}
.menu li {
    list-style: none;
    border-bottom: 1px solid #7d767687;
    margin: 10px 0;
    padding-bottom: 15px;
}
.menu li:last-child {
    border-bottom: 0 solid #7d767687;
}
@media (max-width: 870px) {
    .container1 {
        min-height: 800px;
        height: 155vh;
    }
    .signin-signup {
        width: 100%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s ease-in-out 0.8s;
    }
    .container1.sign-up-mode .signin-signup,
    .signin-signup {
        left: 50%;
    }
    .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }
    .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
        grid-column: 1/2;
    }
    .right-panel {
        grid-row: 3/4;
    }
    .left-panel {
        grid-row: 1/2;
    }
    .image {
        width: 200px;
        transition: transform 0.9s ease-in-out 0.6s;
    }
    .panel .content {
        padding-right: 15%;
        transition: transform 0.9s ease-in-out 0.8s;
    }
    .panel h3 {
        font-size: 1.2rem;
    }
    .panel p {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }
    .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }
    .container1:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }
    .container1.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }
    .container1.sign-up-mode .left-panel .content,
    .container1.sign-up-mode .left-panel .image {
        transform: translateY(-300px);
    }
    .container1.sign-up-mode .right-panel .content,
    .container1.sign-up-mode .right-panel .image {
        transform: translateY(0);
    }
    .right-panel .content,
    .right-panel .image {
        transform: translateY(300px);
    }
    .container1.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 570px) {
    form {
        padding: 0 1.5rem;
    }
    .image {
        display: none;
    }
    .panel .content {
        padding: 0.5rem 1rem;
    }
    .container1 {
        padding: 1.5rem;
    }
    .container1:before {
        bottom: 72%;
        left: 50%;
    }
    .container1.sign-up-mode:before {
        bottom: 28%;
        left: 50%;
    }
}
@media screen and (max-width: 790px) {
        .showcase {
   
    height: 450px;
  
}
    
    .showcase .bg-img {
  
    height: 450px;
  
}
    .showcase .banner_txt {
    padding-top: 75px;
}
     .forms-container {
  
    top: 20%;
  
}  
 .signin-signup {
        position: relative;
        top: 115px;
        left: 0;
        transform: none;
        width: 90%;
        margin: 0 auto;
    }
    .faq_section .wrapper {
        width: 80%;
    }
    .About_sec .image-column .inner-column {
        position: relative;
        padding-left: 50px;
        padding-bottom: 0;
    }
    .mob-padd {
        margin-top: 100px;
    }
    .mob-padd1 {
        margin-top: 50px;
    }
    .About_sec .image-column .inner-column:before {
        content: "";
        position: absolute;
        width: calc(50% + 117px);
        height: calc(100% + 80px);
        top: -42px;
        left: 3px;
        background: 0 0;
        z-index: 0;
        border: 27px solid #081e66d6;
    }
}
.h44 {
    font-size: 1rem;
}
