:root {
    --primarycolor: #113781;
    --secondarycolor: #92D5FF;
    --accentcolor: #1B69A7;
    --othercolor: #FF8000;
    --headingclr: #113781;
    --textclr: #000000;
    --white: #ffffff;
    --black: #000000;
    --bgwhtxtclr: #ffffff;
    --bgdktxtclr: #000000;
    --bgdkclr: #113781;
    --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: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 12px;
}

p {
    color: var(--headclr);
    font-family: var(--headfont);
    font-size: 16px;
    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: 1560px;
    width: 100%;
}

section {
    position: relative;
}

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

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

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

::-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: 15px 25px;
    border-radius: 0px;
    text-transform: capitalize;
    text-align: center;
    -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-color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
}

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

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

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

.border-btn {
    color: var(--secondarycolor);
    border: 1px solid var(--secondarycolor);
}

.border-btn:hover {
    color: var(--white);
    border: 1px solid var(--secondarycolor);
}

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

/* --- Header Code --- */
header {
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 5px solid #FF8000;
}

header .nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    padding: 10px 190px;
    justify-content: space-between;
    align-items: center;
}

header.fixed-header .header-btn {
    background-color: var(--secondarycolor);
    color: var(--bgdktxtclr);
}

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 {
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background: #fff;
}

header .logo-col img {
    transition: all 0.3s ease-in-out;
    max-width: 105px;
    margin: auto;
    display: block;
}

header.fixed-header .logo-col img {
    max-width: 55%;
}
.logo_text {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    color: #f89800;
    text-align: center;
    font-size: 28px;
    line-height: normal;
}

.logo_text_2 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    text-align: center;
    font-size: 12px;
    line-height: normal;
    letter-spacing: .4px;
}

.logo-col a {
    display: inline-block;
}
.nav-col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.inn-nav-col {
    text-align: left;
}
.nav-col h4 {
    color: #002E6A;
    text-align: left;
    font-family: Montserrat;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    padding: 5px 0px;
}
.nav-col h4 span{
    display: inline-block;
    width: 38px;
    text-align: center;
}
.nav-col h4 a {
    color: #002E6A;
}

.nav-col h4 a:hover {
    color: #FF8000;
}

/* CTA Section */
.cta-section {
    color: #fff;
    padding: 50px 0px;
    background: #002E6A;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 10px;
}

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

.cta-section h6 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px
}

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

.cta-section .btn {
    display: inline-block;
    padding: 16px 25px;
    margin: auto;
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 8px;
    background: #FF8000;
    border: 1px solid #FF8000;
}

.cta-section .btn svg {
    position: relative;
    top: -1px;
    padding-left: 5px;
}

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

.cta-section .custom-btn:before, .cta-section .custom-btn:after {
    background: #fff;
}

/* --- 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-image: url('../img/footer_bg.png');
    width: 100%;
    background-size: cover;
    background-position: center center;
}

h2.h2_title {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    text-align: center;
    position: relative;
}

h6.h6_title {
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h2.h2_title span span {
    font-weight: 700;
}

span.border_line {
    border-bottom: 1px solid #FF8000;
    display: inline-block;
    padding-bottom: 5px;
}

.footer_row {
    padding: 50px 0px 20px;
}

.footer_row h2 {
    color: #fff;
}

.contact_details {
    display: flex;
    justify-content: space-evenly;
    padding-top: 45px;
}

.footer_detail_box {
    max-width: 22%;
    width: 100%;
}

p.c_heading {
    color: #FF8000;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.c_para p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.c_para p a {
    color: #fff;
}

.c_para p a:hover {
    color: #FF8000;
}

.c_icon {
    text-align: center;
    height: 100px;
    margin-bottom: 25px;
}

.copyright {
    border-top: 1px solid #D8D8D8;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 30px 0px;
}

/* --- Back To Top Code --- */
.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: var(--primarycolor);
    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: 60px 0px;
    background-image: url('../img/faqs_bg.png');
    background-size: cover;
    background-position: center center;
}

.faqs_top_content {
    position: relative;
}

.faqs_content_wrp {
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq_img {
    text-align: right;
}

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

.faqs_content_wrp .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0px !important;
    box-shadow: none !important;
    /* display: flex; */
    /* flex-wrap: wrap; */
    column-count: 2;
}

.accordion-item {
    /* width: 50%; */
    padding: 0px 44px;
    background: transparent;
    box-shadow: none !important;
}

.faqs_content_wrp .accordion-item {
    margin-bottom: 15px;
}

.accordion-item:not(:first-of-type) {
    border: none;
}

.accordion-body {
    background: #F5F5F5;
    color: #000;
    padding: 15px 15px 20px;
    font-size: 16px !important;
    font-weight: 500;
}

.accordion-body p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

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

.faqs_content_wrp button.accordion-button.collapsed {
    display: flex;
    height: 68.493px;
    padding: 15px 42px 15px 15px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #000 !important;
    font-size: 20px;
    font-weight: 600;
    background-color: transparent !important;
    background-image: url('../img/plus.png');
    background-repeat: no-repeat;
    background-position: 99% center;
    box-shadow: none;
    border: 1px solid #D9D9D9 !important;
    outline: none !important;
    border-radius: 0px !important;
}

.faqs_content_wrp button.accordion-button {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    height: 68.493px;
    padding: 15px 42px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0px !important;
    background-color: #F5F5F5 !important;
    background-image: url('../img/minus.png');
    background-repeat: no-repeat;
    background-position: 99% center;
    border: 1px solid #f5f5f5 !important;
}

.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 {
    height: 852px;
    background-color: var(--primarycolor);
}

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

.banner-section .row, .b-content-col {
    height: 100%;
}

.b-content-col {
    display: flex;
    align-items: flex-start;
    padding-top: 208px;
}

.banner-section {
    display: flex;
    align-items: center;
}

.banner-content-wrp {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}
.banner-content-wrp:after{
    content:'';
    position: absolute;
    left:0px;
    top:0px;
    height:100%;
    width:100%;
    background: hwb(0deg 0% 100% / 33%)
}
.banner_content h2 {
    color: #FFF;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.77);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 0px 30px;
}
.banner-section p{
    color: #FFF;
    font-weight: 500;
    font-size:20px;
}
.banner-section li{
    color: #FFF;
    font-weight: 500;
    font-size:20px;
}
.banner-section h1 {
    color: #FFF;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.77);
    font-family: Montserrat;
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.form_content {
    padding-top: 80px;
}

.form_content h6 {
    color: #EF0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.form_content p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 0px 30px;
}

.form_wrp_box {
    background: #002E6A;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.42);
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.form_wrp_box h3 {
    color: #FF8000;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

h2.maintitle, h2 {
    font-size: 48px;
    font-weight: 400;
}

h2.maintitle span {
    display: block;
    font-weight: 500;
}

h2 strong {
    font-weight: 700;
}

/* --- Inner Page Code --- */
.inner-banner-section {
    padding: 140px 0px;
    background: #002E6A;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

section.abt_page .row:nth-child(2n) {
    flex-direction: row-reverse;
    padding: 80px 0px;
}

.inner_banner_content_wrp h4 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 10px 0 0;
}

.inner_banner_content_wrp h1 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 5px 0px 0px;
}

.inner_banner_content_wrp h6 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.inner_banner_content_wrp h1 span {
    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: 60px 90px 120px;
    background-image: url('../img/client_bg.png');
    background-position: center center;
    background-size: cover;
}

.testimonial_top_content h2 {
    text-align: left;
}

.testimonial_top_content h2.h2_title span span {
    display: block;
}

.testimonial_top_content {
    margin-bottom: 30px;
}

.innt_image {
    position: relative;
    padding-right: 45px;
    display: flex;
    justify-content: flex-end;
}

.counter-wrap {
    background: #002E6A;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 197.534px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.counter.started {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    width: 100%;
}

.counter-wrap .label {
    color: #FFF;
    text-align: center;
    font-size: 19.929px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

div#testimonialCarousel p {
    font-weight: 500;
    margin-bottom: 22px;
}

div#testimonialCarousel {
    padding-top: 25px;
}

.testimonial-card {
    text-align: center;
    margin: 0px 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.testimonial-card img {
    display: block;
    max-width: 100%;
}

.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-prev {
    left: -25px;
}

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

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

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

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

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

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

/* -------- Project section -------- */
.projects-section {
    padding: 60px 60px;
    text-align: center;
    background: #FFF2E4;
}

.gallery-item {
    width: 25%;
    border: 10px solid transparent;
    overflow: hidden;
}

.acf-gallery-wrap {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item img {
    width: 100%;
    transition: 0.4s;
    background-color: #000;
    height: 326px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.09);
    opacity: .6;
}

.projects-top-content h2 {
    margin-bottom: 10px;
}

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

/* ------------- Counter section ----------------- */
.counter-section {
    padding: 35px 70px;
    background-size: cover;
}

.wrap {
    display: flex;
    justify-content: space-between;
    border-radius: 156px;
    background: #002E6A;
    padding: 40px 110px;
}

.wrap .inn-icon {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .counter {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    text-align: left;
}

.wrap .label {
    color: #FF8000;
    font-size: 22px;
    font-weight: 600;
}

/*  --------- Our Process -------------- */
.process-section {
    text-align: center;
    padding: 60px 0px;
}

.process-top-content {
    margin-bottom: 60px;
}

.process-top-content p {
    color: #fff;
    padding: 0px 15%
}

span.num-wrp {
    background: #FF8000;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 2px 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    /* 168.75% */
}

.process-bottom-content {
    display: flex;
    width: 916px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #343434;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #F3F3F3;
    margin: 60px auto 0px;
}

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

.process-step {
    width: 100%;
    text-align: center;
    position: relative;
    border-radius: 36px;
    border: 2px solid #F4A453;
    display: flex;
    max-width: 385px;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.process-step:nth-child(1):after {
    content: '';
    position: absolute;
    right: -148px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 141px;
    height: 31px;
    background-image: url('../img/v1.png');
}

.process-step:nth-child(2):after {
    content: '';
    position: absolute;
    right: -148px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 141px;
    height: 31px;
    background-image: url('../img/v2.png');
}

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

.process-step span.num {
    display: flex;
    color: #002E6A;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    gap: 10px;
}

.process-step p {
    margin: 0;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0 10px;
}

.process-step .icon {
    z-index: 1;
}

.pinn-icon {
    height: 115px;
    display: flex;
    align-items: center;
}

/* --------------- Service section --------------- */
.services-section {
    text-align: center;
    padding: 160px 0px 80px;
}

.services-top-content p {
    color: #000;
    font-size: 18px;
    margin: 0;
    padding: 15px 0px 0px;
}

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

.service-card {
    background: #FFF;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 450px;
    border-radius: 0 64px 0 0;
    position: relative;
    margin: 0px 10px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.service-card-content > div{
    width:100%;
}

.service-card:hover .service-card-content {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.73) 0%, rgba(0, 46, 106, 0.73) 100%);
}

.service-card:hover span.ser_title {
    opacity: 0
}

.service-card p {
    color: #000;
    margin-bottom: 20px;
}

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;
    height: 100%;
}

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

.services-top-content {
    padding: 0px 12%;
    margin-bottom: 40px;
}

.ser_icon {
    border-radius: 94.891px;
    background: #FF8000;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services_re {
    display: flex;
    align-items: center;
    gap: 18px;
}

.services_re h5 {
    color: #243891;
    font-size: 19.929px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.service_icon_repeater {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 89px;
    margin-bottom: 60px;
}

.service_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 40px;
}

.service_btn .btn {
    display: inline-block;
    padding: 16px 25px;
    margin: auto;
    color: #000;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 8px;
    background: #FF8000;
    border: 1px solid #FF8000;
}

.service_btn .btn svg {
    position: relative;
    top: -1px;
    padding-left: 5px;
}

.service_btn .btn:hover {
    border: 1px solid #FFB425;
    color: #000;
}

.service_btn .custom-btn:before, .service_btn .custom-btn:after {
    background: #fff;
}

.counter-box {
    display: flex;
    gap: 25px;
}

.map_iframe {
    height: 450px;
}

.map_iframe iframe {
    width: 100%;
    height: 100%;
}

.form_shortcode input, .form_shortcode select {
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 0 15px;
    border-radius: 0px;
    border: 1px solid #fff;
    outline: none !important;
    box-shadow: none !important;
    color: #6B6B6B;
    width: 100%;
    height: 50px;
}

.form_shortcode textarea {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    border: 1px solid #fff;
    outline: none !important;
    padding: 12px 15px;
    box-shadow: none !important;
    height: 120px;
    resize: none;
    width: 100%;
}

.form_shortcode .row {
    display: flex;
    justify-content: space-between;
}

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

select {
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: 97% center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.submit-field input {
    border-radius: 8px;
    background: #FF8000;
    border: 1px solid #FF8000;
    display: flex;
    max-width: 248px;
    width: 100%;
    height: 67px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: auto;
    transition: 0.4s;
}

.submit-field input:hover {
    background: #000;
}

::-webkit-input-placeholder {
    color: #6B6B6B;
}

::-moz-placeholder {
    color: #6B6B6B;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6B6B6B;
    opacity: 1;
}

:-moz-placeholder {
    color: #6B6B6B;
    opacity: 1;
}

span.wpcf7-spinner {
    position: absolute;
    margin: auto !important;
    right: 0;
    left: 0;
}

.textarea-field {
    margin-bottom: 5px;
}

.submit-field {
    position: relative;
    margin: 0;
}

span.ser_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #002E6A;
    height: 82px;
    display: flex;
    align-items: center;
    padding: 5px;
}

span.ser_title h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    margin: 0;
}

.service-card:hover .service-card-content h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.service-card:hover .service-card-content p {
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    text-align: left;
}
.service-card-content a {
    width: 100%;
    border-radius: 8px;
    background: #243891;
    border: 1px solid #243891;
}

.service-card-content a:after, .service-card-content a:before {
    display: none;
}
.why_choose_us_wrapper {
    background: #142129;
    padding: 70px 0px;
}
.why_choose_content h6, .why_choose_content h2 {
    color: #fff;
    text-align: left;
}

.why_choose_content h2 span span {
    display: block;
    text-transform: capitalize;
}
.why_content h5 {
    background: #FF8000;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0 12px;
    padding: 8px 18px;
    display: inline-block;
}

.why_content p {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.why-card {
    text-align: center;
    padding: 10px;
}
.why_choose_image {
    display: flex;
    justify-content: flex-end;
}
.why_choose_content h2.h2_title {
    font-size: 38px;
    margin-bottom: 55px;
}
.why_btn a {
    width: 100%;
    border-radius: 8px;
    border: 3px solid #FF8000;
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
.why_btn a:after, .why_btn a:before{
	display: none;
}
.why_btn {
    padding-top: 30px;
}
section.for-section {
    padding: 40px 0px;
}