:root {
    --primarycolor: #1B69A7;
    --secondarycolor: #92D5FF;
    --accentcolor: #1B69A7;
    --othercolor: #000;
    --headingclr: #1B69A7;
    --textclr: #000000;
    --white: #ffffff;
    --black: #000000;
    --bgwhtxtclr: #ffffff;
    --bgdktxtclr: #000000;
    --bgdkclr: #1B69A7;
    --bgwhclr: #E9F7FF;
    --headfont: "Montserrat", sans-serif;
    --parafont: "Montserrat", sans-serif;
}

body {
    color: var(--textclr);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--parafont);
    overflow-x: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--blue);
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: 0;
    box-shadow: none;
}

p {
    color: var(--headclr);
    font-family: var(--headfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--headclr);
    font-family: var(--headfont);
}

.container {
    max-width: 1480px;
    width: 100%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primarycolor);
}

::-webkit-scrollbar-thumb {
    background: var(--othercolor);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primarycolor);
}

/* --- Button Code --- */
.custom-btn {
    display: inline-block;
    font-family: var(--parafont);
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    padding: 20px 36px;
    text-transform: capitalize;
    text-align: center;
    border-radius: 8px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.custom-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.custom-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.custom-btn:before, .custom-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--black);
    border-radius: 50%;
    z-index: -1;
}

.custom-btn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.custom-btn span:after {
    content: '\2192';
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover span:after {
    transform: translateX(10px);
}

.dark-btn {
    color: var(--white);
    background: #1B69A7;
    border: 2px solid var(--primarycolor);
}

.dark-btn:hover {
    color: var(--white);
}

.light-btn {
    color: var(--black);
    border: 2px solid var(--secondarycolor);
    background-color: var(--secondarycolor);
}

.light-btn:hover {
    color: var(--white);
}

.border-btn {
    color: #fff;
    border: 2px solid #FFF;
}

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

.subtitle {
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- Header Code --- */
header {
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 999;
}

.top-header {
    padding: 15px 0;
    background: var(--primarycolor);
    position: relative;
    z-index: 1;
}

.top-header .info-row {
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
}

.nav-header .container {
    max-width: 84%;
}

header .nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

header.fixed-header header .nav-header {
    padding: 20px 0;
}

header.fixed-header .top-header {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

header.fixed-header {
    background-color: #fff;
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    top: 0;
}

header .logo-col img {
    transition: all 0.3s ease-in-out;
    max-width: 120px;
}

header.fixed-header .logo-col img {
    max-width: 66px;
}

nav button.navbar-toggler {
    background-color: var(--primarycolor);
}

.nav-header .row {
    align-items: center;
}

.nav-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-left: 10%;
}

nav.navbar {
    width: fit-content;
}

header.fixed-header ul.navbar-nav li a {
    color: #000;
}

ul.navbar-nav li {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

ul.navbar-nav>li {
    padding: 0px 30px;
}

ul.navbar-nav li a {
    position: relative;
    color: var(--bgwhtxtclr);
}

ul.navbar-nav li:hover a, ul.navbar-nav li.current-menu-item a {
    color: #fff;
}
ul.navbar-nav li.current-menu-item a:after, ul.navbar-nav li a:hover:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #fff;
}
ul.navbar-nav li.menu-item-has-children {
    position: relative;
}

ul.navbar-nav li.menu-item-has-children>span {
    position: absolute;
    top: 0;
    right: 0;
}

ul.navbar-nav li.menu-item-has-children>span:after {
    content: '\276E';
    transform: rotate(-90deg);
    position: absolute;
    right: 0px;
    color: var(--bgwhclr);
    transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children>span.active:after {
    transform: rotate(90deg);
}

ul.navbar-nav ul.sub-menu {
    position: absolute;
    left: 0;
    padding: 0;
    width: 270px;
    list-style: none;
    background-color: var(--bgwhclr);
    opacity: 0;
    visibility: hidden;
    transform: translate(0%, 50%);
    transition: all 0.3s ease-in-out;
}

ul.navbar-nav li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
}

ul.navbar-nav li ul.sub-menu a {
    color: var(--bgdktxtclr);
}

ul.navbar-nav ul.sub-menu>li {
    padding: 7px 15px;
    border-bottom: 1px solid #dcdcdc;
    font-size: 14px;
}

.header-btn {
    padding: 20px 36px;
}

ul.header-info {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: fit-content;
    padding: 5px 0;
    margin: 0;
}

ul.header-info li {
    color: var(--bgwhtxtclr);
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 1;
}

ul.header-info li a {
    color: var(--bgwhtxtclr);
}

ul.header-info li a:hover {
    color: var(--accentcolor);
}

ul.header-info li:first-child {
    padding-left: 0;
}

ul.header-info li:last-child {
    padding-right: 0;
}

ul.header-info li img {
    width: 20px;
    margin-right: 5px;
}

ul.social-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    width: fit-content;
}

ul.social-links>li {
    color: var(--bgwhtxtclr);
    font-size: 16px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 1;
    border-right: 1px solid var(--bgwhclr);
}

ul.social-links>li:first-child {
    padding-left: 0;
}

ul.social-links>li:last-child {
    padding-right: 0;
    border-right: 0;
}

ul.social-links>li a {
    color: var(--bgwhclr);
    font-size: 16px;
}

ul.social-links>li:hover a {
    color: var(--accentcolor);
}

/* CTA Section */
.cta-section {
    padding: 70px 30px 0px;
}

.cta-container {
    background: url('../img/cta-bg.webp') no-repeat center center/cover;
    background-color: #000;
    color: #fff;
    padding: 70px 260px;
    position: relative;
    border-radius: 44px;
}

.cta_top_content h2 span {
    display: block;
}

.cta_top_content {
    text-align: center;
}

.cta_top_content p {
    padding: 15px 26% 35px;
    margin-bottom: 0
}
.cta_top_content a.custom-btn svg, .cta_top_content a.custom-btn svg path {
    fill: #000 !important;
}
.cta_top_content a.custom-btn {
    border-radius: 8px;
    background: #FEFE3E;
    border: 1px solid #FEFE3E;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 22px 170px;
}
.cta_top_content a.custom-btn:hover {
    background: #000;
    color: #fff;
}
.cta_top_content a.custom-btn:hover svg, .cta_top_content a.custom-btn:hover svg path {
    fill: #fff !important;
}
.cta-section h2 {
    font-weight: 400;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-section h2 span {
    font-weight: 700;
}

.cta_btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta-section .btn {
    display: flex;
    padding: 16px 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    align-self: stretch;
    max-width: 290px;
    width: 100%;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

a.btn.btn-primary {
    background: #113781;
    border: 1px solid #113781;
}

.cta-section .btn:hover {
    background: #FFB425;
    border: 1px solid #FFB425;
    color: #113781;
}

/* --- Footer Code --- */
footer {
    background-color: var(--headclr);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    color: var(--bgdktxtclr);
    font-family: var(--mulishfont);
    font-size: 14px;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bottom-footer {
    background-color: var(--bgdkclr);
    width: 100%;
}

.bottom-footer .copyright-row {
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
}

.bottom-footer .copyright-row>* {
    width: fit-content;
    padding: 0;
    margin: 0;
    color: var(--white);
}

/* Custom Styles */
.footer_wrapper {
    background: linear-gradient(0deg, rgba(34, 34, 34, 0.80) 0%, rgba(34, 34, 34, 0.80) 100%), url('../img/f_bg.png') lightgray 50% / cover no-repeat;
    background-blend-mode: multiply, normal;
    width: 100%;
    padding: 160px 0px 100px;
    border-bottom: 3px solid #fff;
}

.f1 {
    width: 25%;
}

a.f_logo {
    max-width: 120px;
}

.f2 {
    width: 16%;
    padding-top: 40px;
}

.f3 {
    width: 38%;
    padding-top: 40px;
}

.f4 {
    width: 21%;
    padding-top: 40px;
}

.f3 ul li {
    width: 50%;
}

.f3 ul {
    display: flex;
    flex-wrap: wrap;
}

.f_content p strong {
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.footer_wrapper p {
    color: #FFF;
    font-weight: 400;
    margin: 0;
}

.footer_wrapper p svg {
    position: absolute;
    left: 0;
}

.footer_wrapper h5 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #5E5E5E;
    padding-bottom: 10px;
}

.footer_wrapper li {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0px;
}

.footer_wrapper li:last-child {
    padding-bottom: 0px;
}

a.f_logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer_wrapper a {
    color: #fff;
}

.footer_wrapper a:hover {
    color: #FFB425;
}

.f4 p {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    padding-left: 44px;
}

.f4 ul.social-links {
    padding-left: 10px;
    margin-top: 3rem;
}

.Subscribe_wrapper {
    padding-top: 15px;
}
.subscribe-box {
    margin-bottom: -78px;
    z-index: 10;
    position: relative;
    background: #FFB425;
    padding: 33px 75px;
}
.subscribe-box .row {
    align-items: center;
}

.subscribe-content h5 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.subscribe-content p {
    font-weight: 400;
    margin: 0;
}

.es-form-field-container .gjs-row {
    margin-bottom: 0 !important;
}

.newsletter_box input.ig_es_form_field_email {
    padding: 10px 190px 10px 20px;
    width: 100%;
    background: #FFF;
    border: 1px solid #FFF;
    color: #8E8E8E;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    height: 100%;
    top: 0px;
}

.newsletter_box input[type="submit"] {
    display: flex;
    padding: 0px 42px !important;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #113781 !important;
    border: 1px solid #113781 !important;
    color: #FFF !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px !important;
    margin-top: 0px !important;
}

.newsletter_box .gjs-cell {
    display: flex;
}

.es-form-1 label {
    text-indent: -9999px;
    width: 100%;
    position: relative;
    height: 100%;
}

div.newsletter_box form {
    display: flex;
    background: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 0px !important;
    max-width: 100% !important;
    position: relative;
    height: 62px;
}

.es-form-1 .es-field-wrap.ig-es-form-field {
    margin-bottom: 0px !important;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
}

div.newsletter_box .es-form-1 .es-field-wrap {
    margin-bottom: 0px !important;
}

.footer {
    background: #111827;
    color: #fff;
    padding: 50px 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    background: #0d47a1;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* --- Back To Top Code --- */
.back-to-top {
    position: fixed;
    z-index: 999;
    bottom: 150px;
    right: -2px;
    background-color: #1B69A7;
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #979797;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: var(--white);
}

.back-to-top:hover {
    background-color: var(--darkclr);
}

.back-to-top:hover i {
    color: var(--white);
}

/* ----- Faqs --------*/
.faq-section {
    padding: 80px 0px;
    background: #E9F7FE;
}

.faqs_top_content {
    position: relative;
    text-align: center;
    padding: 0px 10%;
    margin-bottom: 40px;
}

.faqs_content_wrp {
    display: flex;
    align-items: center;
}

.faq_img {
    display: block;
}

.faqs_top_content h2.maintitle span {
    display: inline-block;
}

.faqs_content_wrp .accordion {
    --bs-accordion-border-color: #E9F7FF;
    --bs-accordion-border-radius: 0px !important;
}

.accordion-item {
    border: 3px solid #e9f7ff !important;
}

.accordion-body {
    background: #E9F7FF;
    color: #000;
    font-size: 18px;
}

.accordion-body p {
    color: #000;
    font-size: 18px;
}

.accordion-button::after {
    display: none;
}

.faqs_content_wrp button.accordion-button.collapsed {
    display: flex;
    height: 68.493px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #000 !important;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff !important;
    background-image: url('../img/f-bottom-arrow.png');
    background-repeat: no-repeat;
    background-position: 97% center;
    box-shadow: none;
    outline: none !important;
    border-radius: 0px !important;
}

.faqs_content_wrp button.accordion-button {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0px !important;
    background-color: #113781 !important;
    background-image: url('../img/f-arrow.png');
    background-repeat: no-repeat;
    background-position: 97% center;
}

.faqs_content_wrp .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

/* --- Contact Form 7 --- */
.wpcf7 form span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form input.wpcf7-not-valid, .wpcf7 form select.wpcf7-not-valid {
    border: 1px solid #ff0000;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
}

/* --- Home Page Code --- */
.banner-section {
    padding: 180px 0px 100px;
    height: 93vh;
    background-color: var(--primarycolor);
}

.banner-section .container {
    position: relative;
    z-index: 9;
}

section.banner-wrp-section {
    padding: 40px;
}

.banner-section {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 44px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.banner-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 44px;
    background-image: url('../img/shadow.webp');
    background-position: center center;
    background-size: cover;
}

.banner-section .sub-title, .banner-section p {
    color: var(--bgwhtxtclr);
    font-size: 18px;
    font-weight: 600;
}

.banner-section h1 {
    color: var(--bgwhtxtclr);
    margin: 10px 0 20px 0;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.49);
    font-size: 60px;
    font-weight: 700;
}

.banner-section h1 span {
    font-size: 48px;
    font-weight: 300;
}

.banner-section h3 {
    font-family: var(--subheadfont);
    font-size: 30px;
}

.banner-section h1 span {
    color: var(--blue);
    display: block;
}

.banner-section h4 {
    color: var(--bgwhtxtclr);
    font-weight: 500;
    font-size: 30px;
}

.banner_content_wrp {
    padding: 0px 15%;
}

.banner_content_wrp .desc {
    padding: 0px 13% 20px;
}

.banner-section .btn-col {
    gap: 20px;
    display: flex;
    justify-content: center;
}

.about-section {
    padding: 70px 0;
}

h2.maintitle, .service-main-content h2, h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #00111D;
    font-style: normal;
    font-weight: 600;
}

h2.maintitle span, .service-main-content h2 strong, h2 strong {
    font-weight: 700;
}

.about-section h1.maintitle {
    font-size: 48px;
}

.about-section ul {
    padding: 0;
    list-style: none;
}

.about-section ul li {
    padding-left: 40px;
    margin: 20px 0;
}

.nw-cnt ul li {
    padding-left: 10px;
    list-style: disc;
}
.nw-cnt ul{
    padding-left:20px;
}


.abt-box img {
    border-radius: 32px;
}

.about-section p strong {
    font-weight: 600;
}

.about-section ul li strong {
    display: block;
}

.about-section .row {
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.about-section .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.about-section .video-box:before, .about-section .video-box:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--primarycolor);
    transition: all 0.3s ease-in-out;
}

.about-section .video-box:hover:before, .about-section .video-box:hover:after {
    width: 40%;
    height: 40%;
}

.about-section .video-box:before {
    top: 0;
    left: 0;
}

.about-section .video-box:after {
    right: 0;
    bottom: 0;
}

.video-box {
}

.about-section .video-box {
    padding: 20px;
    position: relative;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 250px 0 130px 0;
    background-color: var(--darkclr);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #1B69A7;
    border-radius: 44px;
}

.inner-banner-section h1 {
    color: var(--white);
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.36);
    font-size: 60px;
    font-weight: 700;
}

/* --- Animation Code --- */
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

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

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        transform: scale(2.0);
    }

    100% {
        left: 50%;
        transform: scale(15.0);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        transform: scale(2.0);
    }

    100% {
        right: 50%;
        transform: scale(15.0);
    }
}

@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;
    }
}

/* -------- testimonials --------------*/
.testimonial_wrapper {
    padding: 80px 0px;
}

.testimonial_top_content {
    text-align: center;
    margin-bottom: 24px;
}

.slick-dots {
    position: relative !important;
    bottom: -20px !important;
    display: flex !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    justify-content: center;
}

.slick-dots li {
    position: relative;
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    justify-content: center;
}

.slick-dots li button {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 19px !important;
    height: 19px !important;
    background: #D9D9D9;
    border-radius: 100%;
    padding: 0;
}

.slick-dots li.slick-active button {
    width: 28px!important;
    height: 28px!important;
    background: #1B69A7;
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-size: 24px;
}

.slick-dots li button:before {
    font-size: 8px;
    color: #fff;
    opacity: 1;
    right: 0;
    bottom: 0;
    left: 0px;
    top: 0px;
    margin: auto;
}

.slick-dots li.slick-active button:before {
    color: #FFB425;
    font-size: 18px;
    opacity: 1;
}

.slick-center {
    background: #FFF;
}

.slick-next, .slick-prev {
    top: 0 !important;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 44px;
    height: 45px;
    background-size: cover;
    background-position: center center;
    transition: .4s;
    z-index: 99;
    margin: auto;
    opacity: 1 !important;
}

.slick-prev {
    left: 80px !important;
    background-image: url('../img/n-prev-h.png');
}

.slick-next {
    right: 80px !important;
    background-image: url('../img/n-next-h.png');
}

.slick-prev:hover {
    background-image: url('../img/n-prev.png');
}

.slick-next:hover {
    background-image: url('../img/n-next.png');
}

.slick-next:before, .slick-prev:before {
    display: none;
}

.slick-list {
    display: flex;
}

.slick-track {
    display: flex;
    align-items: center;
}

/* -------- Project section -------- */
.projects-section {
    padding: 80px 0;
    text-align: center;
    background: #E9F7FE;
    overflow: hidden;
}

.projects-top-content p {
    padding: 0px 10%
}

.swiper {
    width: 100%;
    padding: 50px 0 100px;
    margin-bottom: 20px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.swiper-slide:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}

.swiper-slide-active {
    transform: scale(1.1) !important;
    opacity: 1 !important;
    z-index: 10;
}

.swiper-slide-active:after {
    display: none;
}

.swiper-slide img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.swiper-slide {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-button-next svg, .swiper-button-prev svg, .swiper-button-next svg path, .swiper-button-prev svg path {
    fill: #FEFE3E !important;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

span.swiper-pagination-bullet {
    background-image: url('../img/li.webp');
    background-size: contain;
    width: 20px;
    height: 20px;
    box-shadow: none;
    border: none;
    background-color: transparent;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-image: url('../img/li-active.webp');
    width: 28px;
    height: 28px;
}

.swiper-horizontal {
    .swiper-button-next, .swiper-button-prev, ~.swiper-button-next, ~.swiper-button-prev {
        top: var(--swiper-navigation-top-offset, 45%);
    }
}

/*  --------- Our Process -------------- */
.why-choose-us-section {
    padding: 80px 0px;
}

.process-top-content {
    margin-bottom: 30px;
    text-align: center;
}

.process-top-content h2.maintitle span {
    display: block;
}

.process-top-content p {
    padding: 0px 15%
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    max-width: 65%;
    margin: auto;
}

.process-step {
    position: relative;
    padding: 12px;
}

.process-step .icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.process-step span.num {
    display: block;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 0px;
}

.wc-inn-wrp p {
    min-height: 140px;
}

.wc-inn-wrp {
    border-radius: 50px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 100%;
    padding: 40px 30px;
    transition: 0.4s;
}

.wc-inn-wrp:hover {
    box-shadow: 0px 0px 10px #FFB425;
    border: 1px solid #FFB425;
}

.process-image {
    padding: 12px;
}

.process-image .wc-inn-wrp {
    padding: 0;
    overflow: hidden;
}

.process-image .wc-inn-wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-inn-wrp .icon {
    height: 70px;
    width: 70px;
}

.wc-inn-wrp .icon img {
    height: 100%;
}

.counter-wrap .counter {
    color: #000;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
}

.counter-wrap .label {
    color: #4B4B4B;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.counter-wrap {
    border-top: 1px solid #D9D9D9;
    padding-top: 30px;
}

/* --------------- Service section --------------- */
.services-section {
    text-align: center;
    padding: 60px 0px;
    background-color: #E9F7FE;
    background-image: url('../img/our-service-bg.png');
    background-repeat: no-repeat;
    background-position: 100% 0;
}

.services-top-content p {
    color: #000;
}

.services-grid {
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-card {
    background: #FFF;
    padding: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 31.333%;
    position: relative;
    border-radius: 16px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 416px;
    object-fit: cover;
    border-radius: 16px;
}

.service-card-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url('../img/shadow-h.png');
    background-size: cover;
    background-position: center bottom;
    opacity: 0;
    text-align: left;
    z-index: 999;
}

.service-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.service_img h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 30px;
    text-align: left;
}

.service-card p {
    color: #fff;
    padding: 10px 0px;
    margin: 0;
}

span.ser_icon {
    width: 80px;
    height: 80px;
    display: flex;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0px;
    margin: auto;
    background: #113781;
    align-items: center;
    justify-content: center;
}

.service_img {
    position: relative;
}

.service-card:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url('../img/shadow.png');
    background-size: cover;
    background-position: center bottom;
}

.service-card span.ser_icon img {
    width: auto;
    height: auto;
}

.service-card:hover:after {
    opacity: 0
}

.services-top-content {
    margin-bottom: 40px;
}

.counter-box {
    width: 19%;
}

.service-card:hover .service_img h3 {
    opacity: 0;
}

.service-card:hover .service-card-content {
    opacity: 1;
}

a.read {
    color: #FEFE3E;
    font-size: 18px;
    font-weight: 600;
}

.blog-section {
    padding: 80px 0px;
}

.blog-top-content {
    text-align: center;
    padding: 0px 10%;
    margin-bottom: 40px;
}

.thumb.blog-img img {
    border-radius: 32px;
    height: 420px;
    width: 100%;
    object-fit: cover;
    background: #f1f1f1;
}

.blog-content h3 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.blog-content h2 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}


.blog-date {
    border-radius: 50px;
    background: #1B69A7;
    width: 80px;
    height: 80px;
    color: #FFF;
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 5px;
    margin-top: -44px;
    z-index: 9;
    position: relative;
    margin-bottom: 34px;
    left: 20px;
}

.blog-date span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.blog-content {
    border-bottom: 2px solid #9A9A9A;
    padding-bottom: 20px;
}

.blog_details {
    display: flex;
    justify-content: center;
    gap: 18px;
    width: 56%;
    background: #fff;
}

.bblog_details_box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -32px;
}

.blog_details span {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    display: inline-flex;
}

.inn-blog-card {
    transition: 0.5s;
}

.inn-blog-card:hover {
    margin-top: -10px;
}

.inn-blog-card:hover .blog-content h3 {
    color: #FFB425
}

.inn-blog-card:hover .blog-date {
    background: #FFB425;
}
.height{
    height:80px;
}
.abt_call_us span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    display: block;
}

.abt_call_us a {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

.abt_call_us {
    position: relative;
    padding-left: 40px;
}

.tel_icon {
    position: absolute;
    left: 0;
    top: 8px;
}
.abt-btns {
    display: flex;
    align-items: center;
    gap: 55px;
}

.abt-btns a {
    margin-top: 0 !important;
}
section.our-history-section {
    background-color: #E9F7FE;
    background-image: url('../img/a_bg2.png');
    background-position: 100% center;
    background-repeat: no-repeat;
    padding: 80px 0px;
}
section.our-history-section .container {
    max-width: 85%;
}
section.our-history-section .container {
    max-width: 85%;
}

.our-history-content {
    display: flex;
    align-items: center;
}

.our-history-img {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 40px;
}
.our-history-img .counter-wrap {
    display: inline-flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    left: 0;
    max-width: 220px;
    width: 100%;
    height: 220px;
}

.our-history-img .counter {
    color: #00111D;
    text-align: center;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.our-history-img .label {
    color: #00111D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.our-history-content .inn-history-content {
    padding-right: 30px;
}
.mission-services .row {
    justify-content: space-between;
}
.mission_detail_wrp {
    border-radius: 32px;
    border: 1px solid #D9EEFB;
    background: #FFF;
    display: flex;
    padding: 35px 23px;
    flex-direction: column;
    align-items: flex-start;
    width: 32.5%;
}
.mission-services {
    padding: 60px 0px;
}

.our_goals_image {
    text-align: center;
    padding: 0px 30px;
}

.mission_item h5 {
    color: #113781;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    padding: 20px 0px 15px;
}
.home .mission_item h3 {
    color: #113781;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    padding: 20px 0px 15px;
}

.mission_item p {
    margin: 0;
    padding-bottom: 15px;
}
.home .mission_item {
    width: 100%;
}
.mission_detail_wrp .icon {
    width: 60px;
    height: 60px;
}
.mission_item {
    width: 80%;
}
.what-we-do-top-content h2 span {
    display: block;
}

.what-we-do-top-content {
    text-align: center;
    padding: 0px 14%;
}

section.what_we_do_section {
    padding: 70px 0px 10px;
}

.doprocess.counter-wrap {
    border-radius: 32px;
    background: #06518C;
    border: none;
    padding: 60px 10px;
    height: 200px;
}

.doprocess.counter-wrap .label{
    color: #FFF;
    text-align: center;
}

.doprocess .counter {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.row.we-doprocess-steps {
    padding-top: 30px;
}
.breadcrumb a {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.breadcrumb {
    color: #FFB703;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
}
span.dash {
    padding: 0px 8px;
}

.banner-text {
    text-align: center;
}
.blogs .blog-card {
    margin-bottom: 55px;
}


ul.page-numbers {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
ul.page-numbers li{
    list-style: none;
}
ul.page-numbers li a.page-numbers {
    border-radius: 7.197px;
    background: #E9F7FE;
    width: 50px;
    height: 50px;
    color: #000;
    text-align: center;
    font-size: 16.192px;
    font-style: normal;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.page-numbers a.next.page-numbers , ul.page-numbers a.prev.page-numbers{
    border-radius: 7.197px;
    background: #FEFE3E;
    width: auto;
    padding: 17.992px 32.385px;
}

ul.page-numbers span.page-numbers.current, ul.page-numbers li a.page-numbers:hover { 
    border-radius: 7.197px;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-size: 16.192px;
    font-style: normal;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;border-radius: 7.197px;
    background: #1B69A7;
}
ul.page-numbers a.next.page-numbers:hover, ul.page-numbers a.prev.page-numbers:hover {
    border-radius: 7.197px;
    background: #1B69A7;
    width: auto;
    padding: 17.992px 32.385px;
}
section.Service-section {
    padding: 60px 0px 0px;
}

.blog-top-content.service h2 span {
    display: block;
}

.image-div img {
    border-radius: 32px;
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.content-div h4 {
    color: #1B69A7;
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    padding: 18px 0px;
}

.content-div h2 {
    color: #1B69A7;
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    padding: 18px 0px;
}

span.read-more {
    color: #1B69A7;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.content-div {
    text-align: center;
    padding: 12px 5px;
}

.Service-item a {
    display: flex;
    height: 100%;
    width: 100%;
}
.Service-item {
    margin-top: 40px;
}
.blog-top-content.service {
    padding: 0px 3%;
    margin-bottom: 15px;
}
.Service-box {
    border-radius: 32px;
    transition: .4s;
}

.Service-box:hover {
    box-shadow: 0px 0px 10px hwb(0deg 0% 100% / 20%);
    
}
.sidebar-menu li a{
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 25px;
    align-self: stretch;
    border-bottom: 1px solid #1B69A7;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400; 
}

.sidebar-menu li.current-menu-item a, .sidebar-menu li:hover a{
    background-color: #1B69A7;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-position: 94% center;
    color: #fff;
}
section.Service-deatils-section {
    padding: 60px 0px;
}

section.Service-deatils-section .container {
    padding: 0px 3%;
}
.post-featured-image img {
    border-radius: 32px;
    max-width: 100%;
    display: block;
    max-height: 530px;
    object-fit: cover;
}

.post-featured-image {
    margin-bottom: 40px;
}

.service-main-content {
    padding-left: 15px;
}

.service-main-content h5 {
    font-size: 28px;
}
.service-main-content h3, .service-main-content h4, .service-main-content h5, .service-main-content h6{
    color: #00111D;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
}
.service-main-content li {
    background-image: url('../img/charm_square-tick.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
    margin: .5rem 0;
    padding-left: 40px;
    width: 50%;
}

.service-main-content ul {
    margin: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
}
.container-fluid.portfolio-area-wrap {
    padding: 40px 0px 60px;
}
.gallery_img {
    padding: 6px;
}
.gallery_img:nth-child(1), .gallery_img:nth-child(2) {
    width: 50%;
    padding-bottom: 10px;
}

.gallery_img img {
    height: 260px;
    border-radius: 32px;
    width: 100%;
    object-fit: cover;
}
.gallery_img:nth-child(1) img, .gallery_img:nth-child(2) img{
    height: 330px;
}
.row.service_gallery_repeater {
    padding-top: 10px;
}
.service_gallery {
    padding: 45px 0px 0px;
}
.service_gallery h5 span {
    font-weight: 400;
}
.gallery-filter {
  text-align: center;
  margin-bottom: 20px;
}

.gal_images_wrp{
    display: none;
}
.gal_images_wrp.active{
    display: block;
}
.inn_gal_items img {
    height: 275px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gal_items {
    padding: 5px;
}
.work_category{
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 25px;
    align-self: stretch;
    border-bottom: 1px solid #1B69A7;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.work_category.active, .work_category:hover{
    background-color: #1B69A7;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-position: 94% center;
    color: #fff;
}
.our_work_category {
    padding-right: 25px;
}
.contact-form-area-wrap {
    padding: 60px 0px;
    background-image: url('../img/contact_bg.png');
    background-size: cover;
    background-position: center center;
}

.details-wrap {
    border-radius: 16px;
    border: 0.872px solid #1B69A7;
    background: #FFF;
    display: flex;
    max-width: 384px;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8.717px;
    margin-bottom: 20px;
}
.d_content h5 {
    color: #000;
    font-size: 20.921px;
    font-weight: 600;
}

.d_content p {
    font-size: 15.691px;
    font-weight: 400;
    margin: 0;
}

.icon {
    margin-bottom: 6px;
}
.map_iframe {
    height: 490px;
    margin-bottom: -92px;
}

.map_iframe iframe {
    width: 100%;
    height: 100%;
}
.contact-form-wrap {
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 63px 73px;
}
.form-group input, .form-group select {
    color: #939393;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    outline: none !important;
    padding-bottom: 20px;
    box-shadow: none !important;
}
.form-group textarea {
    color: #939393;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400; 
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    outline: none !important;
    padding-bottom: 20px;
    box-shadow: none !important;
    height:200px
}
.appointment-form .row {
    display: flex;
    justify-content: space-between;
}

.appointment-form .col-md-6, .appointment-form .col-md-12 {
    padding: 0px 10px;
    margin-bottom: 24px;
}

.contact-appointment-form h2 {
    margin-bottom: 25px;
}

.form-btn input {
    border-radius: 8px;
    background: #1B69A7;
    border: 1px solid #1B69A7;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    padding: 0px 80px;
    height: 68px;
}

.form-btn input:hover {
    background: #000;
}
.gallery_btn {
    text-align: right;
    padding-top: 20px;
}


section.blog-single-section {
    padding: 60px 0px;
}
.post_thumbnail img {
    max-height: 350px;
    border-radius: 32px;
}
.b-date {
    padding: 10px 0px;
    font-weight: 700;
}

.b-author {
    padding-bottom: 10px;
}
header.fixed-header ul.navbar-nav li.current-menu-item a:after, header.fixed-header ul.navbar-nav li a:hover:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #1B69A7;
}
section.for-section {
    padding-top: 30px;
}
.f_content {
    margin-bottom: 30px;
}

a.b_logo {
    display: inline-block;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.for-section {
    padding-top: 50px;
}

.sp-easy-accordion {
    padding-bottom: 20px;
}

table tr td {
    border: 1px solid #000;
    padding: 10px;
}

table{
    margin-bottom: 30px !important;
}

.cta_top_content h2.maintitle {
    color: #fff;
}