/**** Fonts ****/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html {
    scroll-behavior: smooth;
} */

body {
    font-family: 'Red Hat Display', sans-serif;
}

body,
html {
    background-color: #0A0A0A;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* =========VARIABLES========= */
:root {
    --offset-value: 10;
    --btn-size: 60;
    --yellow: #E7C621;
    --blue: #245D8A;
    --blue-light-bg: #E9EFF3;
    --yellow-bg: #E7C621;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p {
    color: #e0e0e0;
}

ul li {
    list-style: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.z-index1 {
    z-index: 1;
    position: relative;
}

.z-index2 {
    z-index: 2;
    position: relative;
}

.text-blue {
    color: var(--blue) !important;
}

.light-blue {
    background-color: var(--blue-light-bg) !important;
}

/* Usable Css */
.blue-btn {
    border-radius: 50px;
    background: linear-gradient(0deg, #245D8A 0%, #3C9EEC 100%);
    box-shadow: 0px 15px 20px 0px rgba(36, 93, 138, 0.20);
    color: #fff;
    padding: 6px 25px 6px;
    display: inline-block;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    transition: all ease-in 0.2s;
}

.yellow-color {
    background: linear-gradient(0deg, #f1c905 0%, #e7c621 100%) !important;
}

.blue-btn:hover {
    color: #fff;
}

.highlight-text {
    color: var(--yellow);
}

.section-title {
    font-size: 40px;
}

.sub-title {
    color: #fff;
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-gap {
    padding-top: 100px;
}

.section-gap-bottom {
    padding-bottom: 100px;
}

.section-gap70 {
    padding-top: 70px;
}

.section-gap-bottom70 {
    padding-bottom: 70px;
}

.text-white {
    color: #fff !important;
}

.explore-btn a {
    color: var(--yellow);
    font-size: 20px;
    font-weight: 700;
}

.explore-btn a img {
    transform: translateX(5px);
    transition: all .5s ease;
}

.explore-btn a:hover img {
    transform: translateX(15px);
}

.main-title {
    margin-bottom: 50px;
}

.bg-thumb {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/*--  Loader Styles  --*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 999999;
}

#preloader .preloader {
    width: 150px;
    height: 150px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
}

#preloader .preloader span {
    position: absolute;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e7c621;
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
}

#preloader .preloader span:last-child {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*-----  Back to top -----*/
.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
    .back-to-top-wrapper {
        right: 4px;
        bottom: 40px !important;
    }
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 130px;
}

.back-to-top-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 39px;
    text-align: center;
    background: var(--yellow-bg);
    border-radius: 50%;
    border: none;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    transform: rotate(-90deg);
    width: 18px;
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    background: var(--yellow-bg);
}

/* ---- Header Section Style ---- */
header {
    position: fixed;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 10;
    transition: 0.3s;
}

.sticky {
    background-color: #e9eff3;
    transition: .3s;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.nav-up {
    top: -80px;
}

header ul li a {
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    padding: 10px 15px !important;
    transition: all ease-in .2s !important;
}

.sticky ul li a {
    color: #0A0A0A !important;
}

header ul li a:hover {
    color: var(--yellow) !important;
}

header ul li a.active {
    color: var(--yellow) !important;
}

header .navbar-brand {
    width: 190px;
}
.dropdown-menu a{
	color:#000 !important;
}
@media (min-width: 993px) {
.dropdown-menu {
   width: 350px;
}
.dropdown:hover .dropdown-menu {
   display: block;
   margin-top: 0;
}
}
/* Mobile Menu CSS */
.mobile-menu {
    position: fixed;
    display: block;
    top: 0;
    height: 50px;
    width: 100%;
    background: #e9eff3;
    overflow: hidden;
    transition: all 0.5s ease-out, background 1s ease-out;
    transition-delay: 0.2s;
    z-index: 10;
    display: none;
    height: 70px;
}

.mobile-menu .burger-container {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu .burger-container #burger {
    width: 30px;
    height: 8px;
    position: relative;
    display: block;
    margin: -4px auto 0;
    top: 50%;
}

.mobile-menu .burger-container #burger .bar {
    width: 100%;
    height: 1.5px;
    display: block;
    position: relative;
    background: #245d8a;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
}

.mobile-menu .burger-container #burger .bar.topBar {
    transform: translateY(0px) rotate(0deg);
}

.mobile-menu .burger-container #burger .bar.btmBar {
    transform: translateY(6px) rotate(0deg);
}

.mobile-menu .icon {
    display: inline-block;
    position: absolute;
    height: 100%;
    line-height: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu .icon.icon-bag {
    right: 0;
    top: 0;
    left: auto;
    transform: translateX(0px);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.65s;
}

.mobile-menu ul.menu {
    position: relative;
    display: block;
    padding: 0px 12px 0;
    list-style: none;
}

.mobile-menu ul.menu li.menu-item {
    border-bottom: 1px solid rgb(36 93 138 / 20%);
    margin-top: 5px;
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.mobile-menu ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.49s;
}

.mobile-menu ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.42s;
}

.mobile-menu ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.35s;
}

.mobile-menu ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.28s;
}

.mobile-menu ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.21s;
}

.mobile-menu ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.14s;
}

.mobile-menu ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.07s;
}

.mobile-menu ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #245d8a;
    font-weight: 100;
    text-decoration: none;
    font-size: 24px;
    line-height: 2.35;
    font-weight: 500;
    width: 100%;
}

.menu-opened {
    height: 100%;
    background-color: #e9eff3;
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
}

.menu-opened .burger-container {
    transform: rotate(90deg);
}

.menu-opened .burger-container #burger .bar {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.2s;
}

.menu-opened .burger-container #burger .bar.topBar {
    transform: translateY(4px) rotate(45deg);
}

.menu-opened .burger-container #burger .bar.btmBar {
    transform: translateY(3px) rotate(-45deg);
}

.menu-opened ul.menu li.menu-item {
    transform: scale(1) translateY(0px);
    opacity: 1;
}

.menu-opened ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.27s;
}

.menu-opened ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.34s;
}

.menu-opened ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.41s;
}

.menu-opened ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.48s;
}

.menu-opened ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.55s;
}

.menu-opened ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.62s;
}

.menu-opened ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.69s;
}

.menu-opened .icon.icon-bag {
    transform: translateX(75px);
    transition-delay: 0.3s;
}

.mobl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    padding: 10px 10px;
}

.mobile-logo {
    width: 150px;
}

/*Mobile dropdown*/
.mobile-submenu button{
	padding: 0;
    background: #e9eff3;
}
.mobile-submenu button:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}
.mobile-submenu button:not(.collapsed) {
    color: inherit !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.mobile-submenu ul{
	padding: 0;
}
.mobile-submenu ul a{
	font-size: 20px !important;
    line-height: 1 !important;
    margin: 20px 0;
}
/*Mobile dropdown End*/

@media (max-width: 992px) {
    .header {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .mobile-menu ul.menu li.menu-item a.active  {
        color: #e7c621 !important;
    }
}


/* ---- Banner Section Style ---- */
.logo-back {
    position: absolute;
    top: -15px;
    left: -15px;
}

.logo-back svg {
    width: 544px;
    height: 750px;
}

.home-banner {
    position: relative;
    padding-top: 140px;
    padding-bottom: 50px;
}

.banner-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 64px;
    color: #fff;
    line-height: 70px;
    margin-bottom: 40px;
}

.banner-content p {
    font-size: 22px;
    color: #aaa;
    width: 70%;
    margin-bottom: 40px;
    font-weight: 500;
}

.banner-img-rhs {
    position: relative;
}

.banner-img-rhs img {
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    aspect-ratio: 3/3.2;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.pro-details {
    color: #fff;
    line-height: 1.3;
    background: #242424;
    box-shadow: -10px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    font-size: 28px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
}

.pro-details:nth-child(even) {
    top: 60px;
    right: -50px;
    padding: 30px 40px;
}

.pro-details:nth-child(odd) {
    bottom: 30px;
    left: 40px;
    padding: 30px 50px;
}

.pro-details span {
    font-size: 40px;
    font-weight: 700;
}

/* ---- Home Service Style ---- */
.home-service {
    padding-top: 50px;
    padding-bottom: 100px;
}
.service-box {
    background: linear-gradient(0deg, #e9eff3 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.service-box .dot {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: #0A0A0A;
    display: inline-block;
}

.service-box h2 {
    font-size: 24px;
    color: #0A0A0A;
}

.service-box .icon {
    width: 45px;
    height: 45px;
    background-color: var(--yellow-bg);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out;
}

.service-box:hover .icon {
    transform: rotate(0deg);
}

.service-box:hover {
    background: #EFE1AD;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 1px;
    right: -18px;
    background: url(../images/icons/dots-shape.svg) no-repeat;
    width: 120px;
    height: 120px;
    opacity: 0;
    transition: 0.2s;
}

.service-box:hover:before {
    opacity: 1;
}

.swiper-services{
	overflow: hidden;
}

.swiper-services .service-box a{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	height:200px;
}

/* ---- Home About Us Style ---- */
.counter {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.counter-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box p {
    margin-bottom: 0px;
}

.counter-box:nth-child(odd) {
    border-right: 1.5px solid #D9D9D9;
    padding-right: 50px;
}

/* ---- Home Blog Style ---- */
.quotes-area {
    border-radius: 30px;
    padding: 50px 250px;
    height: 400px;
    margin: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.quotes-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(36, 93, 138, 0.95);
}

/* ---- Home Blog Style ---- */
.blog-thumb {
    margin-bottom: 30px;
    overflow: hidden;
}

.blog-thumb img {
    aspect-ratio: 3/2.5;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
    width: 100%;
    border-radius: 20px;
}

.blog-article h4 {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 16px;
}

.blog-meta ul {
    display: flex;
    padding: 0;
    gap: 15px;
}

.blog-meta ul li {
    color: #aaa;
}

/* ---- Client Logo Slider style ---- */

.clients {
    padding: 100px 0;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 30px;
    align-items: center;
}

.client-bran img {
    width:75%;
    filter: grayscale(100%);
    transition: 0.3s;
}

.client-bran:hover img {
    filter: none;
}

.client-box {
    position: relative;
    height: 120px;
    text-align: center;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 1px 1px 15px 0px rgba(120, 81, 252, 0.05);
    cursor: pointer;
}

.client-box+.client-box {
    margin-top: 20px;
}

.client-box img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
}

/* ---- Testimonials Style ---- */
.testimonials .swiper-container {
    padding-top: 20px;
}

.testimonials .swiper-slide {
    display: flex;
}

.testimonials .testim-img img {
    border-radius: 50px;
}

.testim-side {
    width: 40%;
    margin-right: 17%;
    position: relative;
}

.testim-quote {
    position: absolute;
    top: 10%;
    right: -66%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .testim-content p {
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    color: #595959;
    line-height: 1.7;
}

.client-details h6 {
    color: var(--blue);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}

.client-details p {
    color: #595959;
    font-size: 18px;
    font-weight: 400;
}

.testimonials .swiper-pagination {
    position: relative;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid var(--yellow);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--yellow-bg);
    width: 16px;
    height: 16px;
}

/* ---- Footer Style ---- */
.footer {
    padding-top: 70px;
}

.footer-content p {
    width: 80%;
}

.footer .brand-logo {
    width: 160px;
    margin-bottom: 30px;
}

.footer h4 {
    margin-bottom: 30px;
    color: var(--yellow);
    font-size: 20px;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style: none;
    padding-bottom: 10px;
}

.footer ul li:hover a {
    color: var(--yellow);
}

.footer ul li,
.footer ul li a {
    color: #e0e0e0;
    transition: .2s;
}

.footer-menus{
	display: flex;
    gap: 100px;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid #3f3f3f;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.copyright ul {
    display: flex;
    gap: 10px;
}

.desk-hide {
    display: none;
}

/* ---- Media Queries ---- */

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }

    .mob-hide {
        display: none;
    }

    .desk-hide {
        display: block;
    }

    .home-banner {
        height: auto;
    }

    .banner-content h1 {
        font-size: 45px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .banner-content p {
        width: 100%;
        font-size: 18px;
    }

    .logo-back svg {
        width: 544px;
        height: 750px;
    }

    .quotes-area {
        padding: 50px 20px;
        margin: 50px 0 60px;
    }
}


@media (max-width: 768px) {

    .section-title {
        font-size: 34px;
    }

    .banner-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

}

@media (max-width: 600px) {
    .section-gap-bottom {
        padding-bottom: 70px;
    }

    .section-gap {
        padding-top: 70px;
    }

    .main-title {
        margin-bottom: 20px;
        text-align: left !important;
    }

    header .navbar-brand {
        width: 180px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content {
        margin-bottom: 150px;
    }

    .pro-details:nth-child(even) {
        right: 20px;
        top: -70px;
        z-index: 1;
    }

    .logo-back svg {
        width: 390px;
        height: 650px;
    }

    .counter-box:nth-child(odd) {
        padding-right: 30px;
    }

    .counter {
        margin-bottom: 40px;
    }   

    .quotes-content {
        text-align: left !important;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-content {
        display: block;
        margin-top: 30px;
    }

    .testimonials .swiper-slide {
        display: block;
    }

    .testim-side {
        margin: auto 0 20px;
    }

    .testim-quote {
        display: none;
    }

    .testimonials .swiper-pagination {
        justify-content: left;
    }

    .footer {
        padding-top: 50px;
    }
	.footer-content p {
		width: 98%;
	}
    .client-details {
        padding-bottom: 30px;
    }

    .copyright {
        flex-direction: column-reverse;
    }

    .copyright ul li {
        padding: 0;
    }
	
}


/* =======About Page Style======= */

.about-pg-banner {
    padding-top: 100px;
}

.about-pg-banner .row {
    position: relative;
    z-index: 1;
}

.about-pg-banner img {
    border-radius: 25px;
}

.about-pg-rt {
    position: relative;
}

.about-pg-banner .pro-details-2 {
    position: absolute;
    bottom: 10px;
    left: 22px;
    background-color: #1a1a1a91;
    padding: 15px 30px;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    backdrop-filter: blur(50px);
}

.about-pg-banner .pro-details-2 span {
    font-size: 22px;
    font-weight: 700;
}


/* =======Service page Styel======= */

.page-banner {
    padding: 200px 0 100px 0;
}

.page-banner h2 {
    color: #fff;
    font-size: 50px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

.service-pg-bnr {
    position: relative;
}

.service-pg-bnr span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(36 93 138 / 20%);
    font-size: 200px;
    font-weight: 800;
    min-width: max-content;
    pointer-events: none;
}

.service-page h3 {
    color: #fff;
    margin-bottom: 25px;
}

.service-page img {
    border-radius: 25px;
    width: 95%;
    display: block;
}

.service {
    position: relative;
}

.service::before {
    position: absolute;
    counter-increment: bli-compact-counter;
    content: "" counter(bli-compact-counter, decimal-leading-zero);
    top: -30%;
    left: 30%;
    line-height: 1;
    font-size: clamp(40px, 37vw, 360px);
    font-weight: normal;
    color: #FFF;
    opacity: 0.1;
    z-index: -1;
}

.service-page .row {
    margin-bottom: 70px;
}

.srvc span {
    font-size: 250px;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(256 256 132568 / 8%);
    pointer-events: none;
}

.srvc .container h3 {
    color: #ffffff;

}

.srvc .container .row {
    padding: 100px 0;
}

.srvc .container .row .col-lg-8 {
    padding: 0 100px;
}

.srvc .container img {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .srvc .container .row .col-lg-8 {
        padding: 0 12px;
    }

    .srvc .container .row {
        padding: 50px 0;
    }
}

/* =======Contact Page Style======== */

.form input,
.form textarea {
    background-color: transparent !important;
    color: #fff !important;
    border: none;
    outline: none;
    border-bottom: 1px solid #e7c62178;
    border-radius: 0px !important;
    padding: 10px 0 !important;
}

.form input::placeholder {
    color: #fff;
}

.form input:focus {
    box-shadow: none !important;
    border-bottom: 1px solid #e7c621;
}

.form textarea:focus {
    box-shadow: none !important;
    border-bottom: 1px solid #e7c621;
}

.form label {
    color: #fff;
    padding: 0;
}

.contact-form img {
    width: 90%;
    border-radius: 20px;
    display: block;
}

.form .submit-btn {
    padding: 10px 30px;
    background: #e7c621;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
}

.form .submit-btn:hover {
    background: #dbb913;
}

@media (max-width: 992px) {
    .contact-form img {
        width: 100%;
        border-radius: 20px;
        display: block;
        margin-bottom: 70px;
    }
}

@media (max-width: 600px) {
    .f-wrap {
        flex-wrap: wrap !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .form-floating {
        margin-right: 0 !important;
    }
}


/* =======Industries Page Style======= */
.industries-list {
    border-bottom: 1px solid #266494;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: flex;
	margin-left: 60px;
}
.industries-list-img {
	width: 50px;
	margin-right: 20px;
	margin-top: -5px;
}

.industries-box{
    background: #242424;
    padding: 30px;
    border-radius: 15px;
	margin-top: 30px;
}
.industries-box h4{
    color: #fff;
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
	margin-bottom: 30px;
}
.industries-box ul{
	padding:0px;
	margin:0px;
}
.industries-box ul li{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin-top: 8px;
}
@media (max-width:767px) {
	.industries-section-home{
		padding-top:0px;
	}
	.industries-list {
		margin-left: 0;
	}
	.industries-btn-mob{
		display:block !important;
		width: 260px;
	}
	.industries-btn-desktop{
		display:none !important;
	}
}


/* =======Career Page Style======= */
.career img {
    border-radius: 20px;
}

.career h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
}

.career a {
    padding: 10px 30px;
    background-color: #245d8a;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-radius: 50px;
    margin-right: 20px;
}

/* =======Services Details Page Style======= */
.bord-top {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bord-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.sec-head2{
	font-size:50px;
	text-transform:uppercase;
}
.fw-200 {
    font-weight: 200 !important;
}
.page-intro{
	z-index: 1;
}
.line-overlay {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.line-overlay svg path {
    stroke: #353535;
}

.page-intro .fit-img {
    margin-top: 70px;
    height: 520px;
	border-radius: 30px 0px 0 30px;
	overflow: hidden;
}

.fit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.page-intro-desc h4{
	font-size:18px;
	font-weight: 500;
}
.page-intro-desc p{
	font-size:22px;
}

.card-item-grid .service-box{
	height:100%;
    padding: 40px 50px;
	font-size:18px;
}

.listing-section{
    padding: 0px;
}
.listing-section li {
    text-align: left;
    list-style: none;
    margin-bottom: 16px;
    position: relative;
    padding-left: 45px;
	font-size: 18px;
}
.listing-section li:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
	width: 32px;
    height: 32px;
    background: url(../images/icons/check-yellow-icon.svg);
    background-size: cover;
}

@media screen and (max-width: 992px) {
    .sec-head2 {
        font-size: 35px;
    }
}
@media screen and (max-width: 767px){
	.sec-head2 {
		font-size: 28px;
	}
	.page-intro .fit-img {
		margin-top: 0px;
		border-radius: 0;
	}
}