:root {
    --theme-color: #6495ED;
    --secondary-color: #6495ED --dark-color: #000;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #fff;
    color: #444;
    font-family: "Fira Sans", sans-serif;
    font-size: 19px;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #51d8af;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    /* margin: 0 0 30px 0; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--theme-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.rounded-30 {
    border-radius: 30px !important;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: var(--theme-color);
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
    /* padding: 10px 0; */
}

#header #logo img {
    padding: 0;
    margin: 0;
    width: 93px;
	height:98px;
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }
    #header #logo h1 {
        font-size: 34px;
    }
    #header #logo img {
        max-height: 62px;
        object-fit: contain;
    }
}

.scrolled-offset {
    margin-top: 70px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 57px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #e7edf9;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--theme-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 17px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #e7edf9;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        /* left: -100%; */
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
    z-index: 999;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(8, 30, 91, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--theme-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#topbanner {
    width: 100%;
    /* height: 100vh; */
    position: relative;
    background-size: cover;
    padding: 0;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 64px;
    font-weight: 700;
    text-shadow: 0em 0.0375em 0.159375em rgba(0, 0, 0, 0.325000);
    text-align: center;
}

@media(min-width:768px) {
    .hero-content1 {
        position: absolute;
        bottom: 0;
        top: 0;
        left: auto;
        right: 50px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

.btn-get-started,
.btn-projects {
    font-size: 19px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 15px;
    transition: 0.5s;
    margin: 10px 0;
    color: #fff;
}

.btn-get-started {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.btn-get-started:hover {
    background: none;
    color: var(--theme-color);
}

.btn-projects {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.btn-projects:hover {
    background: none;
    color: var(--theme-color);
}

.hero-slider {
    z-index: 8;
    height: 70vh;
}


/* 
.hero-slider::before {
content: "";
background-color: rgba(255, 255, 255, 0.7);
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: 7;
} */

.hero-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
}

.ctaform .form-control {
    border: 0;
    padding: 13px 13px;
    background-color: #fff;
    border-radius: 20px;
}

.ctaform ::placeholder {
    color: var(--theme-color);
}

.ctaform select {
    color: var(--theme-color);
}

 :focus {
    box-shadow: unset !important;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    padding: 40px 0;
    overflow: hidden;
}


/* Sections Header
--------------------------------*/

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 50px;
    color: var(--theme-color);
    font-weight: 700;
    position: relative;
/*     padding-bottom: 20px; */
	padding-bottom:0;
}

.section-header p {
    padding: 0;
    margin: 0;
}

.fs-21 {
    font-size: 19px;
}

.bg-theme {
    background: var(--theme-color);
}

.ser_img img {
    height: 320px;
    width: 320px;
    object-fit: cover;
    margin: auto;
    text-align: center;
    display: flex;
}

.whyimg img {
    height: 260px;
    width: 260px;
    object-fit: cover;
}

.fs-25 {
    font-size: 25px;
}

.fs-19 {
    font-size: 19px;
}

.text-theme {
    color: var(--theme-color) !important;
}

.about1 {
    width: 70%;
    margin: auto;
    z-index: 1;
    position: relative;
}

.about2 {
    width: 200px;
    height: 200px;
}

.arrowimg {
    position: absolute;
    width: 164px;
    height: 80px;
    transform: rotate(160deg);
    top: 53%;
    bottom: 0;
    /* left: 0; */
    right: 43%;
    z-index: 9;
}

.mt-top {
    margin-top: -1rem;
    z-index: 0;
    position: relative;
}

.testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.swiper-pagination {
    bottom: -8px !important;
}

.serul a {
    color: #fff;
}

.serul li {
    margin-bottom: 10px;
}

.serul a:hover {
    text-decoration: underline;
}

.accordion-item {
    background-color: transparent;
    border: 0;
}

.accordion-button {
    background-color: transparent;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
    box-shadow: unset;
}

.accordion-body {
    padding: 0;
}

.accordion-body {
    color: #000;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-item p {
    color: #fff;
}

.innerfaq .accordion-item {
    background-color: transparent;
    border: 0;
}

.innerfaq .accordion-button {
    background-color: transparent;
    color: #000;
}

.innerfaq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: unset;
}

.innerfaq .accordion-body {
    padding: 0;
}

.innerfaq .accordion-body {
    color: #000;
}

.innerfaq .accordion-button::after {
    filter: brightness(0) invert(0);
}

.innerfaq p {
    color: #000;
}

img {
    object-fit: cover;
}

.service_drop a:hover {
    background-color: transparent;
}

.serinner a {
    color: #000;
}

@media(min-width:992px) {
    .mt-8 {
        margin-top: -8rem;
    }
    .mt-9 {
        margin-top: 11rem;
    }
    .mt-18 {
        margin-top: 20rem;
    }
    .mt-11 {
        margin-top: -15rem;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.bg-footer {
    background: var(--theme-color);
}

.footmenu a:hover,
.footcontact a:hover {
    color: var(--secondary-color);
}

.footmenu a,
.footcontact a {
    color: #fff;
}

.footnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.h-300 {
    height: 300px;
    width: 300px;
}

.h-200 {
    height: 200px;
    width: 200px;
}

.servicesinner img {
    width: 300px;
    height: 300px;
}

.arrowwhite img {
    filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
	section.newstylea1 {
    /* margin-top: -35px; */
    padding-top: 1px;
}
    .hero-content h1 {
        font-size: 27px;
        text-align: center;
    }
    .hero-slider {
        height: 25vh;
    }
    .ctaform .form-control {
        border: 1px solid #000;
    }
    s.ctaform {
        margin-top: 1rem;
    }
    .section-header h2 {
        font-size: 25px;
    }
    .fs-21 {
        font-size: 16px;
    }
    .fs-19 {
        font-size: 16px;
    }
    .whyimg {
        text-align: center;
    }
    .whyimg img {
        height: 200px;
        width: 200px;
        object-fit: cover;
    }
    .ser_img img {
        height: 200px;
        width: 200px !important;
        object-fit: cover;
    }
    .ser_img {
        text-align: center;
    }
    .about1 {
        width: 57%;
        margin: auto;
    }
    .about2 {
        width: 160px;
        height: 160px;
    }
    .fs-25 {
        font-size: 21px;
    }
    .arrowimg {
        position: absolute;
        width: 82px;
        height: 44px;
        transform: rotate(160deg);
        top: 43%;
        bottom: 0;
        /* left: 0; */
        right: 43%;
    }
    .mobile_flex {
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
        /* Hide vertical scrollbar */
        /* white-space: nowrap; */
        /* Ensure items stay in a single line */
        -webkit-overflow-scrolling: touch;
        /* Enable smooth scrolling on iOS */
        scroll-behavior: smooth;
        /* Smooth scrolling behavior */
    }
    .mobile_flex>* {
        width: 100%;
        margin-right: 10px;
        /* Add margin between items */
        display: inline-block;
        /* Display items in a line */
        vertical-align: top;
        /* Align items at the top */
    }
    .serul {
        font-size: 16px;
    }
    .fs-20 {
        font-size: 16px;
    }
    .fs-21 {
        font-size: 16px;
    }
}

@media(min-width:768px) and (max-width:992px) {
    .hero-slider {
        z-index: 8;
        height: 41vh;
    }
    .hero-content h1 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 31px;
    }
    .hero-content1 {
        position: absolute;
        bottom: unset;
        top: 91px;
        left: auto;
        right: 27px;
    }
    .ser_img img {
        height: 200px;
        width: 200px !important;
        object-fit: cover;
        margin: auto;
        display: flex;
    }
    .section-header h2 {
        font-size: 34px;
    }
}

@media(min-width:1022px) and (max-width:1100px) {
    .ser_img img {
        height: 250px;
        width: 250px;
        object-fit: cover;
    }
}
.c1 ul{
	margin-bottom:0;
}
.c2{
	margin-right:6px;
}
/* added by bks */
.customc1{
	    font-size: 21px;
    margin-top: -34px;
}
.areacheck{
	color:#6495ed;
}
.wp-gr .rpi-dots-wrap{
	padding-top:2px !important;
}
.formnewstyle1{
    margin-bottom:1px !important;
}
/* end added by bks */