* {
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'DM Sans', sans-serif;
    color: #0c0c0c;
    font-size: 15px;
    font-weight: 500;

}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

body::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 1px solid #555555;
}

p {
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

a {
    font-size: 15px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'DM Sans', sans-serif;
    line-height: 24px;
    color: #0c0c0c;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    line-height: 24px;
    color: #0c0c0c;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
    margin: 0px;
    color: #0a0909;
}

p {
    margin: 0px;
}



.pt-50 {
    padding-top: 50px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pb-100 {
    padding-bottom: 100px;
}


.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}


.defaultBtn.centered {
    text-align: center;
}

.defaultBtn a,
.defaultBtn button {
    padding: 12px 52px 12px 20px;
    border-radius: 42px;
    background: linear-gradient(90deg, #f7931e, #f15a25);
    color: #fff;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 48px;
    border: none;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover,
.defaultBtn button:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.defaultBtn.colortwo a {
    background: #0b89ba;
    color: #fff;
}

.defaultBtn.colorthree a {
    background: linear-gradient(180deg, #005ab3, #0077ee);
    color: #fff;
}

.defaultBtn a i,
.defaultBtn button i {
    margin-left: 5px;
    position: absolute;
    width: 38px;
    height: 38px;
    background: #fff;
    color: #f05825;
    border-radius: 100%;
    text-align: center;
    line-height: 37px;
    right: 4px;
    bottom: 0px;
    margin: auto;
    z-index: 2;
    top: 0px;
}

.defaultBtn a::after,
.defaultBtn button::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #2f2f2f;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.defaultBtn a span,
.defaultBtn button span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover span,
.defaultBtn button:hover span {
    color: #ffffff;
}

.defaultBtn a:hover:after,
.defaultBtn button:hover:after {
    width: 120%;
}

.defaultBtn.light a {
    background: #fff;
    color: #2f075a;
}

.defaultBtn.light2 a {
    background: #fff;
    color: #2f075a;
}

.defaultBtn.light2 a i,
.defaultBtn.light2 button i {
    margin-left: 0px;
}



/* Header */

.topHeader {
    background: #f05924;
    padding: 5px 0px;
    /* display: none; */
}

.topHeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.topHeaderSocial ul {
    display: flex;
    align-items: center;
    color: #ffe0e0;
}

.topHeaderSocial ul li {
    color: #fff;
    margin: 0px 5px 0px 5px;
}

.topHeaderSocial ul li a.topContactLinks {
    color: #ffffff;
    line-height: 24px;
}

.topHeaderSocial ul li a.topContactLinks i {
    color: #ffffff;
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.topHeaderSocial ul li a.topContactLinks i.fa-envelope {
    font-size: 15px;
}

.topHeaderSocial ul li a.topSocialLinks {
    color: #ffffff;
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
}

.topHeaderSocial ul li a.topSocialLinks i {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
    line-height: 24px;
}

.topHeaderWrapper a,
.topHeaderWrapper p,
.topHeaderWrapper li {
    font-size: 14px;
}

.welcomeMessage p {
    /* padding-left: 165px; */
    color: #ffffff;
}

.topHeaderSocial ul li a.topSocialLinks::before {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    background: #fff;
    border-radius: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    margin: auto;
}

.topHeaderSocial ul li a.topSocialLinks:hover:before {
    visibility: visible;
    opacity: 1;
    width: 22px;
    height: 22px;
}

.topHeaderSocial ul li a.topSocialLinks:hover i {
    color: #000;
}

.toplogo {
    display: block;
    padding: 8px 0px;
}

.topLogoSec {
    width: 125px;
    margin: 0px auto;
}

.topLogoSec img {
    width: 100%;
}

.headerSection {
    position: absolute;
    top: 39px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 5;
    padding: 0px 0px;
    transition: 0.5s ease-in-out;
    background: #ffffff00;
    /* box-shadow: 0px 0px 10px #b5b5b5dd; */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    /* border-bottom: 1px solid #dddddd1a; */
}
.headerSection.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    background: #ffffffde;
    backdrop-filter: blur(5px);
}
.headerSection.sticky .logoSection{
    width: 86px;
    margin-top: 0px;
}

.headerSection.scroll-down {
    top: -100px;
    position: fixed;
}

.headerSection.scroll-up {
    position: fixed;
    top: 0px;
    width: 100%;
    background: #ffffffde;
    backdrop-filter: blur(5px);
}

.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoSection {
    width: 132px;
    margin-top: 0px;
    background: #ffffff00;
    box-shadow: none;
    transition: 0.4s ease-in-out;
    padding: 4px;
    position: relative;
    /* border-right: 1px solid #dddddd1a; */
    padding-right: 16px;
}
.logoSection.logoSectiontwo {
    width: 190px;
}
.headerSection.sticky .logoSection.logoSectiontwo {
    width: 150px;
}
.logoSection::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0px;
    bottom: 0px;
    background: #ffffff00;
    transition: 0.3s ease-in-out;
    display: none;
}
.headerSection.sticky .logoSection::before {
    background: transparent;
}
.headerSection.sticky .logoSection {
    background: transparent;
    width: 86px;
}
.headerSection.scroll-up .logoSection {
    width: 86px;
    margin-top: 0px;
    background: transparent;
    box-shadow: none;
}
.headerSection.scroll-down .logoSection {
    width: 86px;
    margin-top: 0px;
    background: transparent;
    box-shadow: none;
}

.logoSection h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.logoSection h5 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    line-height: 14px;
    margin-top: 0px;
}

.logoSection img {
    width: 100%;
}

.headerNav {
    display: flex;
    flex: auto;
    padding-left: 15px;
    justify-content: center;
}

.headerMenu {
    display: flex;
    gap: 25px;
}

/* .headerMenu>li {
    padding: 32px 14px;
} */

.headerMenu>li>a {
    padding: 28px 0px;
    position: relative;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}
.headerSection.sticky .headerMenu>li>a  {
    color: #111;
}
.headerMenu>li>a::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    top: 53%;
    background: #2e31921a;
    height: 5px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    border-radius: 10px;
}

.headerMenu>li a:hover:after,
.headerMenu>li a.active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.headerMenu>li a:hover,
.headerMenu>li a.active {
    color: #fbaf3b;

}

.headerMenu>li a.active {
    font-weight: 700;
}

.headerMenu>li.hasSub {
    position: relative;
}

.headerSubNav {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-top: 0px;
    top: 116%;
    transition: all 0.3s ease;
    width: 312px;
    background: #fff;
    padding: 14px;
}

.headerMenu>li.hasSub:hover .headerSubNav {
    visibility: visible;
    opacity: 1;
    top: 103%;
    margin-top: 0px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 6px 15px #7373732e;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;

}

.headerSubMenu {
    display: flex;
    flex-direction: column;
}

.headerSubMenu>li a {
    padding: 7px 12px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #dddddd57;
    transition: all 0.3s ease-in-out;
    background: #ffffffee;
    font-size: 15px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 7px 7px;
}

.megaMenuDiv .headerSubMenu>li a {
    padding: 7px 0px;
}

.megaMenuDiv .headerSubMenu>li a {
    padding: 7px 0px;
}

.megaMenuDiv .headerSubMenu>li:hover a {
    padding-left: 5px;
}

.megaMenuDiv .megaCol:last-child {
    margin-top: 20px;
}

.headerSubMenu>li:hover a {
    padding-left: 15px;
    color: #ffffff;
    background: #2e3192;
}

.headerRightMenu {
    display: flex;
}

.headerRightMenu li {
    margin: 0px 0px 0px 10px;
}

.headerRightMenu li .defaultBtn a i.headerarrow {
    margin: 0px;
    visibility: visible;
    opacity: 1;
    font-size: 16px;
    position: relative;
    top: 4px;
    margin-right: 3px;
    width: 33px;
    height: 33px;
    background: #fff;
    color: #111;
    text-align: center;
    border-radius: 100%;
    line-height: 30px;
    position: absolute;
    right: 4px;
    left: auto;
    margin-right: 0px;
    z-index: 2;
    transform: rotate(4deg);
    padding-left: 1px;
    padding-top: 2px;
}

.headerRightMenu .defaultBtn a,
.headerRightMenu .defaultBtn button {
    background: linear-gradient(225deg, #ff1717, #ff8729);
    color: #fff;
    padding: 0px 19px 0px 19px;
    height: 42px;
}

.headerRightMenu .defaultBtn a.searchBtn {
    padding: 0px;
    background: #fab03b00;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
}

.headerRightMenu .defaultBtn a.searchBtn span {
    color: #222;
}

.headerRightMenu li .defaultBtn a.searchBtn i {
    font-size: 14px;
    position: relative;
    left: 1px;
    top: 2px;
}

.headerRightMenu .defaultBtn a span,
.headerRightMenu .defaultBtn button span {
    color: #fff;
    font-weight: 500;
    line-height: 42px;
}

.headerRightMenu .defaultBtn a:hover span,
.headerRightMenu .defaultBtn button:hover span {
    color: #fdfdfd;
}

.headerRightMenu .defaultBtn.light2 a,
.headerRightMenu .defaultBtn.light2 button {
    background: #e7e7e7;
    color: #060606;
    border: 1px solid #ddd;
}

.headerRightMenu .defaultBtn.light2 a span,
.headerRightMenu .defaultBtn.light2 button span {
    color: #060606;
}

.headerRightMenu .defaultBtn.light2 a:hover span,
.headerRightMenu .defaultBtn.light2 button:hover span {
    color: #ffff;
}

.headerRightMenu .defaultBtn.light2 a span i,
.headerRightMenu .defaultBtn.light2 button span i {
    visibility: unset;
    opacity: unset;
}

.headerRightMenu .defaultBtn.light2 a:hover span i,
.headerRightMenu .defaultBtn.light2 button:hover span i {
    color: #fff;
    visibility: unset;
    opacity: unset;
}

.megaMenuDiv {
    visibility: hidden;
    opacity: 0;
    top: 110%;
    left: 0px;
    right: 0px;
    width: 92.6%;
    margin: auto;
    transition: 0.4s ease-in-out;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 30px 20px;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.hasmegaMenu:hover .megaMenuDiv {
    visibility: visible;
    opacity: 1;
    top: 101%;
}

.megaCol {
    width: 20%;
    padding: 0px 10px;

}

.megaCol h5 {
    position: relative;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #00082c;
}

.megaCol h5::after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 3px;
    background-color: #0450b2;
}

.megaCol h5::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #00e9f8;
}

.megaCol .headerSubMenu {
    max-height: 161px;
    overflow-y: auto;
}

.megaCol .headerSubMenu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.megaCol .headerSubMenu::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

.megaCol .headerSubMenu::-webkit-scrollbar-thumb {
    background-color: #00082c;
    border: 1px solid #9999a1;
}

.hamburger .line {
    width: 32px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger {
    display: none;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

#hamburger-11.is-active .line {
    width: 32px;
}

@keyframes smallbig {

    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}




.bannerSection {
    background: #ffffff;
    padding-top: 0px;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.bnrshape1 {
    width: 490px;
    height: 490px;
    position: absolute;
    background: #0000001c;
    top: 0px;
    left: -7%;
    z-index: 2;
    border-radius: 100%;
    bottom: 0px;
    margin: auto;
}

.bnrshape2 {
    width: 520px;
    height: 520px;
    position: absolute;
    background: transparent;
    top: 0px;
    left: -8%;
    z-index: 2;
    border-radius: 100%;
    bottom: 0px;
    margin: auto;
    border: 3px dashed #0000000a;
}

.bnrshape3 {
    width: 490px;
    height: 490px;
    position: absolute;
    background: #12121224;
    top: 0px;
    left: -7%;
    z-index: 2;
    border-radius: 100%;
    bottom: 0px;
    margin: auto;
    filter: blur(65px);
}

.dubaiTexture {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    z-index: 4;
}

.dbtextWrap {
    width: 100%;
}

.dbtextWrap img {
    width: 100%;
}

.bannerContent {
    display: flex;
    align-items: center;
    height: 110vh;
}

.bannerLeftContent {
    width: 50%;
    z-index: 5;
    position: relative;
    bottom: 0px;
    top: 0;
    /* text-align: center; */
}

.bannerSliderContent {
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.bannerRightContent {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
}

.bannerRightContent::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, #060606c9, transparent);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: none;
}

.videocont {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    /* z-index: 4; */
}

.hero-subheader__video {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.hero-subheader__video video {
    width: 100%;
}

.bannerPngImg {
    height: 100%;
}
.video-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-wrapper video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.bannerPngImg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000c2, #0000003d);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

/* .owl-carousel.bannerCarousel .owl-item .bannerPngImg img {
    width: auto;
    float: right;
} */

.bannerPngImg img {
    /* height: 100%; */
    animation: upandDown 20s ease-in-out infinite alternate-reverse both;

}

@keyframes upandDown {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.bannerCarousel {
    height: 100vh;
    position: relative;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 5px;
    top: 45%;
    width: 30px;
    height: 30px;
    background: #ede8f700;
    font-size: 19px;
    opacity: 0.3;
    color: #747474;
    font-size: 16px;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 5px;
    top: 45%;
    width: 30px;
    height: 30px;
    background: #ede8f700;
    font-size: 19px;
    opacity: 0.3;
    color: #747474;
    font-size: 16px;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-next:hover {
    background: #060606;
    color: #fff;
    opacity: 1;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: #060606;
    color: #fff;
    opacity: 1;
}

.bannerLeftContent h5 {
    font-size: 50px;
    color: #ffffff;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
    /* text-shadow: 0px 0px 10px #ffffff52; */
}

.bannerLeftContent h5.color2 {
    color: #ffba00;
}

.bannerLeftContent h5.color2 span {
    position: relative;
    display: inline-block;
}

.bannerLeftContent h5.color2 span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: 6px;
    left: -1px;
    border-radius: 6px;
    background: #2b2e8900;
    z-index: -1;
}

.bannerLeftContent h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    color: #ffffff;
    margin: 0px;
    letter-spacing: 0;
    margin-bottom: 3px;
    margin-top: 0px;
    text-shadow: 0px 0px 13px #00000038;
    position: relative;
    left: 5px;
}

.bannerLeftContent h2 span {
    color: #ffffff;
}

.bannerLeftContent p {
    color: #ffffff;
    margin-top: 0px;
    font-size: 16px;
    /* text-shadow: 0px 0px 8px #ffffff59; */
    margin-top: 8px;
    margin-bottom: 20px;
}

.bannerLocate {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.bannerLocate li {
    color: #fff;
}

.bannerLocate li i {
    color: #3fadde;
    margin-right: 4px;
}

.bannerLocate li span {
    color: #fff;
}

.afterbanner {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: -105px;
    height: 140px;
}

.afterbanner svg {
    width: 100%;
}

.bannerLeftContent .withAfter {
    position: relative;
    padding-bottom: 14px;
}

.bannerLeftContent .withAfter::after {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 3px;
    background: #00a8d9;
}

.bannerLeftContent .withAfter::before {
    position: absolute;
    content: '';
    bottom: 1px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #fff;
}

.bannerImgWrap {
    width: 27%;
    position: relative;
    z-index: 2;
    margin-right: 0px;
    margin-left: 10%;
}

.bannerimg {
    width: 100%;
}

.bannerimg img {
    width: 100%;
}


.titleSection h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 68px;
    z-index: 2;
    position: relative;
    background: -webkit-linear-gradient(225deg, #ff1717, #ff8729);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.titleSection h3 {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 68%;
    font-size: 85px;
    z-index: 1;
    font-weight: 700;
    color: #ffffff45;
    background-color: #ffffff36;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0.5px transparent;
}

.titleSection h2 span {
    color: #ff732d;
}

.titleSection h4 {
    z-index: 2;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #f89b28;
    position: relative;
    display: inline-flex;
    gap: 6px;
}

.titleSection h4::after {
    content: '';
    width: 46px;
    height: 4px;
    display: inline-block;
    background: linear-gradient(90deg, #f89b28, transparent);
    margin: auto;
}

.titleSection h4::before {
    content: '';
    width: 46px;
    height: 4px;
    display: inline-block;
    background: linear-gradient(270deg, #f89b28, transparent);
    margin: auto;
}

.titleSection {
    position: relative;
    padding-bottom: 12px;
}

.titleSection.left h3 {
    color: #ffffff57;
    background-color: #9b9b9b36;
}

.titleSection.left h4::before {
    display: none;
}

.titleSection.inWhite h3 {
    color: #d1d1d145;
}

.titleSection.aboutSecTitle {
    padding-top: 40px;
}

.titleSection.aboutSecTitle h3 {
    top: -17px;
}

.titleSection.aboutSecTitle h4 {
    margin-top: 10px;
}
.titleSection.centered {
    padding: 0px 21%;
}

.titleSection.light h2 {
    color: #fff;
    background: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

.featuerSection {
    padding-top: 90px;
}
.featuresCard {
    background: #f6f6f9;
    position: relative;
    padding: 18px;
    transition: 0.3s ease-in-out;
    min-height: 235px;
}
.featuresCard:hover {
    transform: translateY(-5px);
    background: linear-gradient(225deg, #ff1717, #ff8729);
}
.featuresCard::after {
    width: 89%;
    height: 4px;
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0px;
    right: 0px;
    background: #11111163;
    border-radius: 100%;
    filter: blur(3px);
    margin: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.featuresCard:hover::after {
    visibility: visible;
    opacity: 1;
}
.featuresIco {
    width: 98px;
    height: 98px;
    margin: auto;
    margin-bottom: 17px;
    background: linear-gradient(180deg, #f7931e, #f15a25);
    padding: 16px;
    border-radius: 100%;
    margin-top: -60px;
    border: 2px solid #fff;
}
.featuresIco img {
    width: 100%;
    transition: 0.3s ease-in-out;
}
.featuresCard:hover .featuresIco img {
    filter: invert(2) brightness(3);
    transform: rotate(360deg);
}
.featuresContent {
    text-align: center;
}
.featuresContent h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.featuresContent p {
    transition: 0.3s ease-in-out;   
}
.featuresCard:hover .featuresContent h4, .featuresCard:hover .featuresContent p {
    color: #fff;
}
.serviceWrapper {
    margin-top: 30px;
}

.servicesSlider .item {
    padding: 10px;
}
.servicesSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.servicesSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.servicesSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.servicesSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.servicesSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #faaf3a;
}

.serviceCard {
    padding: 26px;
    background:#fff;
    border-radius: 0px;
    transition: 0.4s ease-in-out;
    width: 100%;
    position: relative;
    min-height: 385px;
}


.serviceCard:hover {
    transform: translateY(-5px);
    background: #f05924;
}

.serviceCardImg {
    width: 100%;
    overflow: hidden;
    height: 273px;
    display: flex;
    align-items: center;
}

.serviceCardImg img {
    width: 100%;
    transition: 0.4s ease-in-out;
}

.serviceCard:hover .serviceCardImg img {
    transform: scale(1.05);
}

.newsContent {
    padding: 0px 10px;
}

.serviceCardTitle h4 {
    display: flex;
    color: #2a245a;
    font-weight: 600;
    font-size: 22px;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 12px;
    line-height: normal;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
}

.serviceCardTitle p {
    color: #474747;
    line-height: 24px;
    margin-bottom: 7px;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.serviceCard:hover .serviceCardTitle h4, .serviceCard:hover .serviceCardTitle p {
    color: #fff;
}
/* .newPara {
    display: inline-block;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
} */
.serviceCardFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.bCardAuthor {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bCardAuthor img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 100%;
    box-shadow: 0px 0px 10px #ddd;
    padding: 3px;
}

.serviceCardFooter p {
    line-height: 24px;
    font-size: 14px;
    color: #2e3192;
    font-weight: 600;
}

.newsReadMoreBtn {
    color: #2e3192;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    bottom: 0px;
}

.newsReadMoreBtn i {
    font-size: 12px;
    position: relative;
    top: -1px;
}

.bCardDate {
    position: absolute;
    top: 19px;
    z-index: 2;
    left: 19px;
    background: #ffffff9e;
    padding: 3px 10px;
    border-radius: 7px;
    backdrop-filter: blur(5px);
}

.bCardDate p {
    font-size: 12px;
    line-height: 19px;
}


.bg1 {
    background: linear-gradient(180deg, #fff3e3db, #fff3e3db), url(../img/texture/img1.jpg);
    background-size: 100%;
}

.bg2 {
    background: linear-gradient(180deg, #e9eaff9e, #e9eaff9e), url(../img/texture/img2.jpg);
    background-size: 100%;
}


.aboutUs::after {
    position: absolute;
    content: "";
    left: auto;
    bottom: 22px;
    contain: "";
    height: 145.7px;
    width: 113.54px;
    background-image: url(../img/texture/dotted.png);
    background-repeat: no-repeat;
    animation: jump-2 5s linear infinite;
    z-index: -1;
    right: 0px;
}

@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.aboutUsBg .video-wrapper {
    height: 88vh;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}
.aboutUsBg .video-wrapper::after {
    position: absolute;
    bottom: 0px;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #ffffff, #d8d8d8ab);
    left: 0px;
}
.aboutContainer {
    padding-right: 70px;
    z-index: 2;
    position: relative;
}
.aboutContainer.serviceContainer {
    padding-right: 0px;
    padding-left: 50px;
}
.aboutUsImg {
    position: relative;
}

.aboutUsImg img.aboutimg1 {
    width: 100%;
    
}
.aboutUsImg img.aboutimg1.animationZump {
    animation: jump-1 5s linear infinite;
    
}

.aboutUsImg img.aboutimg2 {
    width: 100%;
    border: 5px solid #fff;
}
.aboutUsImg .backOverlay {
    position: absolute;
    width: 32%;
    left: -50px;
    top: auto;
    animation: jump-1 5s linear infinite;
    bottom: 36%;
}
.aboutUsImg .backOverlay.abouthomeoverlay {
    left: -80px;
}
.aboutUsImg .backOverlay::after {
    backdrop-filter: blur(7px);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 8px;
    top: 8px;
    background: #fcd8ae5c;
    z-index: -1;
}
.aboutUsImg .backOverlay.serviceImgtwo {
    left: auto;
    right: -30px;
    width: 37%;
    bottom: 40px;
}
.mapSection.aboutUs::after {
    display: none;
}
.aboutBtns {
    display: flex;
    align-items: center;
    gap: 19px;
}
.aboutHelpline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.aboutHelpline i {
    width: 48px;
    height: 48px;
    background: #e3e1fa;
    text-align: center;
    line-height: 49px;
    border-radius: 100%;
}
.aboutHelpline p {
    font-size: 13px;
    color: #6e6e6e;
}
.aboutHelpline h5 {
    font-size: 21px;
    font-weight: 900;
}

.solarServiceCard {
    display: flex;
    align-items: center;
    gap: 11px;
}
.solarSerIco {
    width: 8%;
    padding: 9px;
}
.solarSerIco img {
    width: 100%;
}
.solarSerContent {
    position: relative;
    width: 87%;
}
.solarSerContent h5 {
    display: flex;
    color: #2a245a;
    font-weight: 600;
    font-size: 22px;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 6px;
    line-height: normal;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: 0.3s ease-in-out;
}
.solarSerContent p {
    color: #474747;
    line-height: 24px;
    margin-bottom: 7px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}
.popDestiWrapper {
    margin-top: 40px;
}
.popDestiCard {
    width: 100%;
}
.popDestiCard {
    position: relative;
    margin-bottom: 0px;
}
.popDestiImg {
    width: 100%;
    position: relative;
    height: 288px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 0px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.popDestiImg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000f5, transparent);
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    display: none;
}
.popDestiCard:hover .popDestiImg::after {
    opacity: 1;
}
.popDestiImg img {
    width: 100%;
    /* transition: 0.4s ease-in-out; */
}
/* .popDestiCard:hover .popDestiImg img {
    transform: scale(1.05);
} */
.popDestiContent {
    position: relative;
    z-index: 2;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 18px;
    background: #fff9ee;
    width: 90%;
    margin: auto;
    box-shadow: 0px 0px 10px #0000001a;
    border-radius: 0px;
    margin-top: -20px;
    border: 1px solid #e5e6ff;
    transition: 0.3s ease-in-out;
}
.popDestiCard.portfolioCard:hover .popDestiContent {
    background: #f15a25;;
}
.popDestiContent * {
    color: #fff;
}
.popDestiContent h4 {
    margin-bottom: 9px;
    font-size: 18px;
    font-weight: 600;
    color: #191162;
    transition: 0.3s ease-in-out;
}
.popDestiContent p {
    width:85%;
    font-size: 14px;
    line-height: 24px;
    color: #122;
    transition: 0.3s ease-in-out;
}
.popDestiCard.portfolioCard:hover .popDestiContent p, .popDestiCard.portfolioCard:hover .popDestiContent h4  {
    color: #fff;
}
.popDestiContent a {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: auto;
    bottom: 24px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 100%;
    transform: scale(0.2) translateY(20px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.popDestiCard:hover .popDestiContent a {
    transform: scale(1) translateY(0px);
    visibility: visible;
    opacity: 1;
}
.popDestiContent i {
    color: #1b1364;
    line-height: 39px;
    font-size: 16px;
    transform: rotate(-36deg);
}

.popDestiCard.LastCard .popDestiImg {
    height: 558px;
}
.projects {
    background: #f6f6f9 ;
}
.projectSlider .item {
    padding: 10px 10px 10px 10px;
}

.projectSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
}
.projectSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
}
.projectSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.projectSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.projectSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #2e3192;
}
.portfolioCImg {
    width: 100%;
    height: 291px;
}
.portfolioCImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.popDestiCard.portfolioCard:hover .portfolioCImg img  {
    transform: scale(1.08);
}

/* FilterSlider Start */
.before-after {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
}
.before-after .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
}

.before-after .img.front-img {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 7px;
    min-height: 50vh;
    cursor: pointer;
    background-color: white;
    border: 1px solid #c2c2c2;
    border-radius: 0;
}

.slider::-moz-range-thumb {
    -moz-appearance: none;
    width: 7px;
    min-height: 50vh;
    cursor: pointer;
    background-color: white;
    border: 1px solid #c2c2c2;
    border-radius: 0;
}

/* FilterSlider end */



.background-service {
    background-image: url(../images/service/bg-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.service-one-inner {
    display: flex;
    padding: 20px;
    position: relative;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.service-one-inner .thumbnail {
    margin-right: 20px;
}

.service-one-inner .thumbnail img {
    max-width: 76px;
}

.service-one-inner .service-details .title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
/* 
.service-one-inner .service-details p {
    margin-bottom: 20px;
} */

.rts-read-more i {
    padding: 13px;
    background: #fff;
    border-radius: 50%;
    margin-right: 12px;
    color: #1C2539;
    line-height: 12px;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
}


.service-one-inner::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background: #0001;
    right: -15px;
}

.service-one-inner.one::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #0001;
    bottom: 0;
    left: 0px;
}

.service-one-inner.two::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #0001;
    bottom: 0;
    left: 0;
}

.service-one-inner.three::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #0001;
    bottom: 0;
    left: 0;
}

.service-one-inner.four::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #0001;
    bottom: 0;
    left: 0;
}

.service-one-inner.four::after {
    display: none;
}

/* .service-one-inner.four::after {
    position: absolute;
    content: "";
    height: 71%;
    width: 1px;
    background: #0001;
    right: -15px;
}

.service-one-inner.five::after {
    position: absolute;
    content: "";
    height: 71%;
    width: 1px;
    background: #0001;
    right: -15px;
}

.service-one-inner.six::after {
    position: absolute;
    content: "";
    height: 71%;
    width: 1px;
    background: #0001;
    right: -15px;
    display: none;
} */


.eventCard {
    width: 100%;
}
.eventImg {
    height: 320px;
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0px 0px 10px #ddd;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: url(../img/watermark.png) no-repeat;
    background-position: center center;
    
    
}
.eventImg a{color: #3d36c7;}


.eventImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.eventCard:hover .eventImg img {
    transform: scale(1.08);
}
.eventContent {
    position: relative;
    padding: 20px 10px;
    /* border-bottom: 1px dashed #dddd; */
    border-radius: 0px;
    background: #fff;
    min-height: 50px;
    line-height: 30px;
}
.eventDate {
    position: unset;
    margin-bottom: 20px;
    width: fit-content;
    background: #fff;
    padding: 10px;
    border-radius: 0px;
    text-align: center;
    top: -66px;
    left: 15px;
    border-bottom: 3px solid #f15a25;
    border-left: 3px solid #f15a25;
}
.eventDate h4 {
    font-size: 16px;
    border-bottom: 1px solid #bfbfbf94;
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #4c4c4c;
    font-weight: 500;
}
.textbtn a {
    color: #f05924;
    font-weight: 500;
    display: inline-block;
    margin-top: 0px;
}
.eventDate h4 span {

}
.eventDate p {
    font-size: 15px;    color: #969696;
}
.eventTitle h5 {
    font-size: 14px;
    margin-bottom: 8px;
}
.eventTitle h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2a245a;
    line-height: 22px;
/*    margin-bottom: 14px;*/
}
.eventTitle p {
    margin-bottom: 12px;
}

.eventSlider .item {
    padding: 10px 10px 0px 10px;
}

.eventSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
}
.eventSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
}
.eventSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.eventSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.eventSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #2e3192;
}
.rts-read-more.whiteBg i {
    background: #e9eaffc7;
    border: 1px solid #26297912;
}
.rts-read-more.whiteBg:hover i {
    background: #2e3192;
    color: #fff;
}
.newsEventsWrapper {
    margin-top: 30px;
}


.careerWrapper {
    background: #fff;
    box-shadow: 0px 22px 23px rgba(0, 0, 0, 0.07);
    padding-left: 50px;
    padding-right: 50px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #2e3192;
    padding: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 12px;
}
.careerSection .careerImgSec {
    width: 90%;
    animation: jump-1 5s linear infinite;
    position: relative;
    z-index: 2;
}
.careerImgSec::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 130%;
    height: 141%;
    top: -260px;
    left: -230px;
    background-image: url(../img/other/career-texture.png);
    background-size: 100%;
}
.careerSection .careerImgSec img {
    width: 100%;
    position: relative;
    z-index: 2;
}
.aboutContainer.careerContainer .aboutContent {
    padding: 0px;
}
.aboutContainer.careerContainer {
    padding: 0px;
}

.careerContainer .aboutContent .careerList.normalList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0px;
    gap: 10px;
} 
.careerContainer .aboutContent .careerList.normalList li {
    width: 32%;
    padding: 7px 11px 7px 36px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-size: 16px;
    background-position: top 14px left 12px;
    font-size: 13px;
    border-radius: 10px;
}



.quickenquiry {
    background: linear-gradient(90deg, #ffffff, #ffffffe6), url(../img/bg/home-contact-bg.jpg);
    background-size: cover;
    background-position: left -101px top 61%;
}
.partnerWithUsFormWrapper {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #dddddd7a;
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    background: #ffffffab;
    backdrop-filter: blur(5px);
}
.contactqueryForm .form-control {
    height: 45px;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
}

.form-control {
    background-color: #fff;
}
.contactqueryForm .form-select {
    height: 45px;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
	line-height: normal;
}

.contactqueryForm .form-control.textarea {
    height: auto;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
}
.contactqueryForm .form-control.textarea:focus {
    border-color: #2e3192;
    background-color: #fff;
    box-shadow: none;
}
.contactqueryForm .form-control:focus {
    border-color: #2e3192;
    background-color: #fff;
    box-shadow: none;
}
.form-select:focus {
    border-color: #2e3192;
    background-color: #fff;
    box-shadow: none;
}
.form-select:focus {
    box-shadow: none;
}
.contactqueryForm  label {
    margin-bottom: 5px;
}


.circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -7%;
    left: -56px;
    background: #fff;
    transform: scale(0.8);
}

.logoText {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 800;
}

.text {
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: consolas;
	color: #000;
	font-size: 17px;
	animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
}

.text span {
    position: absolute;
    left: 50%;
    font-size: 25px;
    transform-origin: 0 100px;
}


.coutnerSec {
    background: linear-gradient(180deg, #181162, #12155a), url(../img/bg/counter-bg.jpg);
    background-size: 100%;
    background-blend-mode: multiply;
    background-position: center;
    background-attachment: fixed;
}
.common-box {
    text-align: center;
    position: relative;
}

.common-box::after {
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background: #bdbdbddd;
    content: '';
    top: 0px;
    bottom: 0px;
}

.counterIcon {
    width: 62px;
    margin: 0px auto;
    margin-bottom: 13px;
}

.counterIcon img {
    width: 100%;
    filter: brightness(3) invert(1);
}

.countersWraper .col-md-3:last-child .common-box:after {
    background: #9f9f9f00;
}

.counter-num span {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    font-family: 'campton';
    line-height: normal;
}

.counter-text {
    font-weight: 600;
    color: #ddd;
}
.forsomefeatures .counter-text {
    font-size: 20px;
}
.counterDataWrap {
    position: absolute;
    top: 156px;
    right: -20px;
    z-index: 3;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
}

.counterData {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 18px 23px;
    border-radius: 8px;
}

.counterData h4 {
    font-size: 38px;
    font-weight: 700;
    color: #002588;
    line-height: normal;
}

.counterData p {
    line-height: normal;
}




.mediaGallerWrapper {
    margin-top: 40px;
}

.gallerySlider {
    position: relative;
}

.gallerySlider .item {
    padding: 10px;
}

.gallerySlider.owl-carousel .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: -18px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.gallerySlider.owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: -18px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.gallerySlider.owl-carousel:hover .owl-nav button.owl-prev,
.gallerySlider.owl-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}


.gallHomeCard {
    position: relative;
}

.gallHomeImg {
    display: block;
    position: relative;
    height: 220px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border: 4px solid #fff;
    overflow: hidden;
}

.gallHomeImg img {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.gallHomeCard:hover .gallHomeImg img {
    transform: scale(1.05);
}

.gallHomeContent {
    text-align: center;
    padding: 10px;
    background: #fff;
    width: 90%;
    margin: auto;
    margin-top: -24px;
    position: relative;
    border-radius: 9px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.gallHomeContent h5 {

    font-size: 16px;
    font-weight: 600;
}

.gallHomeContent p {}

.canvas {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}

.canvastwo {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}

.canvasthree {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}

.quickenquiryContent a{
    color: #f15a25;
}


.footer-wrp-main {
    background: linear-gradient(0deg, #090026db, #090026e6), url(../img/bg/footer-bg.jpg);
    background-size: 100%;
    position: relative;
    background-position: center;
}
.footerMain {
    position: relative;
    padding: 60px 0px 0px;
}

.footer-logo-wrp img {
    width: 140px;
}
.othertwologo {
    width: 160px;
    display: flex
;
    flex-direction: column;
    gap: 10px;
}
.othertwologo img {
    width: 100%;
}
.footer-logo-wrp  {
    display: flex;
    align-items: center;
    gap: 20px;
}

#tsparticles {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 1;
}

#tsparticles canvas {
    position: unset !important;
}

.ftr-link-bx a {
    color: #fff;
    font-size: 13px;
    display: block;
    position: relative;
    line-height: 34px;
}

.ftr-link-bx.footerLinks a::before {
    content: '\f054';
    display: inline-block;
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 12px;
    margin-right: 11px;
    color: #fbb03a;
}
.ftr-link-bx.footerLinks a.title-16::before {
    display: none;
}
ul.address-sec li i {
    color: #ffba00;
    font-size: 14px;
    margin-right: 11px;
}

.ttle.title-16 {
    font-size: 22px;
    font-weight: 500;
    color: #e5e5e5;
    margin-top: 27px;
    margin-bottom: 29px;
    position: relative;
    padding-bottom: 9px;
}

ul.address-sec li a {
    display: inline-flex;
    align-items: baseline;
}

.ftr-link-bx a.title-16 {
    font-size: 16px;
    font-weight: 500;
    color: #e5e5e5;
    margin-top: 0px;
    margin-bottom: 29px;
    position: relative;
    padding-bottom: 3px;
    margin-bottom: 20px;
    display: inline-block;
}

.ftr-link-bx a.title-16::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 2px;
    background: #f7921f;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.address-sec .addP {
    text-align: center;
}
.addP.footContact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 5px;
}

.gallerySection {
    background: linear-gradient(#000000c7, #000000c7), url(../img/bg/gal-img.jpg);
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
}



.footerTitle {
    width: 30%;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}
.footerContents {
    margin-top: 20px;
}
.footerContents p {
    margin-right: 5px;
    color: #fff;
    line-height: 24px;
    font-size: 15px;
    text-align: justify;
}

.footer-links-wrp {
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-btm-wrp {
    background: #111;
    padding: 5px 0px;
}

.footer-btm-wrp p {
    color: #ffff;
    margin-bottom: 0px;
    font-size: 12px;
}

.footerContents ul {
    display: flex;
    align-items: center;
}

.footerContents ul {
    color: #fff;
}

.footerContents ul li {
    color: #fff;
}

.footerBlog li {
    border-bottom: 1px solid #dddddd30;
    padding-bottom: 10px;
    margin-bottom: 10px
}
.footerBlog li:last-child {
    border-bottom: none;
}
.footerBlogCard {
    display: flex;
}
.footerBlogCard img {
    width: 74px;
    height: 74px;
    margin-right: 11px;
}
.footerBlogCard .footerblogContent {
    width: 80%;
}
.footerblogContent p {
    color: #939393;
}
.footerblogContent h6 {
    font-size: 18px;
    color: #fff;
}
.footerContents ul li:nth-child(2) {
    margin-left: 5px;
}

.footerContents ul li a {
    display: inline-block;
    border: 1px solid #f8f9fa;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100%;
    margin: 0px 8px 0px 0px;
    color: #a72409;
    line-height: 36px;
}

ul.footerSocial {
    margin-top: 20px;
    justify-content: left;
    gap: 4px;
}
ul.footerSocial i {
    line-height: 40px;
    color: #fff;
    font-size: 14px;
}
ul.footerSocial a:hover {
    background: #fff;
}
ul.footerSocial a:hover i.fa-facebook-f {
    color: #0075ea;
}
ul.footerSocial a:hover i.fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
ul.footerSocial a:hover i.fa-linkedin-in {
    color: #0077B5;
}
ul.footerSocial a:hover i.fa-x-twitter {
    color: #000;
}
ul.footerSocial a:hover i.fa-youtube {
    color: #f70000;
}

.scrollToTop {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.15s ease;
}

.scrollToTop:after {
    content: "";
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-135deg);
}

.scrollToTop.showBtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#progress-bar {
    --scrollAmount: 0px;
}

#progress-bar svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50px;
    max-height: 50px;
    transform: rotate(90deg);
}

#progress-bar svg path {
    stroke-width: 0.2em;
    stroke-dasharray: 154;
    stroke-dashoffset: calc(-154px + var(--scrollAmount));
    animation-fill-mode: forwards;
}


.togglers {
    display: none;
}

.menuBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 3;
}

.menuBtn svg {
    width: 50px
}

.menuBtn .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menuBtn .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.menuBtn .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.menuBtn.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.menuBtn.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}


.inrbnr {
    position: relative;
    margin-top: 0px;
    min-height: 200px;
    background: linear-gradient(83deg, #dcb2ff54, #dcb2ff54), url(../img/bg/inner-bg1.jpg);
    background-size: 100% 100%;
    background-position: center;
}

.inrbnrimg {
    width: 100%;
    height: 200px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.inrbnrimg img {
    width: 40%;
    position: relative;
}


.inrbnrContent {
    position: relative;
    z-index: 2;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inrbnrtext h2 {
    font-size: 34px;
    color: #fff;
    font-weight: 600;
}

.inrbrnNav {
    display: flex;
    align-items: center;
    margin-top: 3px;
    justify-content: flex-start;
    justify-content: center;
}



.inrbrnNav li a i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.inrbrnNav li {
    position: relative;
    border-right: 1px solid #bfd0ff;
    padding: 0px 10px;
}

.inrbrnNav li:last-child {
    border: none;
}

.inrbrnNav li:last-child a {
    color: #39caff;
    font-weight: 600;
}
.inrbrnNav li a {
    color: #fff;
}

.aboutContent {
    padding-right: 30px;
}

.aboutContent p {
    text-align: justify;
    margin-bottom: 10px;
}
.aboutContent h5 {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
}

.ourHistory {
    background: linear-gradient(90deg, #f6e9ffcf, #f6ebffcc), url(../img/bgs/texture1.jpg);
    background-size: 100%;
    background-position: center;
}

.ourHistory.page {
    background: linear-gradient(90deg, #fffaf099, #ffffff80), url(../img/bgs/about-bg.jpg);
    background-size: 100%;
    background-position: center;
}

.ourHistoryContent p span {}

.titleSection.styletwo h2 {
    position: relative;
}

.titleSection.styletwo h2::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    left: 0px;
    bottom: 0px;
    background-color: #982fe2;
}
.titleSection.mapSecTitle h2 {
    font-size: 36px;
    line-height: normal;
}

.normalList li {
    background-image: url(../img/icons/checked.png);
    background-size: 14px;
    background-position: left top 5px;
    padding-left: 21px;
    background-repeat: no-repeat;
    text-align: justify;
}

.aboutContent .normalList {
    margin-left: 10px;
}

.aboutContent .normalList li {
    line-height: 26px;
    background-position: left top 5px;
    background-size: 15px;
    padding-left: 23px;
    width: 49%;
    text-align: left;
    margin-bottom: 7px;
}

.aboutContent .normalList {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.ourVisionImg {
    width: 100%;
}

.ourVisionImg img {
    width: 100%;
}
.solarServices.mapsLocationsLi {
    display: flex;
    align-items: center;
}
.solarServices.mapsLocationsLi li {
    width: 48%;
    margin-top: 20px;
}
.mapSection .aboutContent .solarServices.mapsLocationsLi li  h5 {
    font-size: 30px;
    font-weight: 800;
    margin: 0px;
    color: #f15a25;
}
.mapSection .aboutContent .solarServices.mapsLocationsLi li  p {
    margin: 0px;
}



.galleryWrap {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    overflow: hidden;
}

.galleryImgWrap.row {
    gap: 24px 0px;
}

.galleryImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galleryImg a {
    display: block;
    position: relative;
    height: 220px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 0px;
    border: 4px solid #ffffff36;
    overflow: hidden;
}

.galleryImg {
    text-align: center;
}

.galViewer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000021;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.galleryImg a:hover .galViewer {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.galViewer i {
    font-size: 24px;
    color: #fff;
}
.gallerySlider .swiper-slide {
    padding: 15px 10px;
} 
.gallerySlider .swiper-button-next:after {
    display: none;
}
.gallerySlider .swiper-button-prev:after {
    display: none;
}
.gallerySlider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
    color: #ddd;
    /* left: -10px; */
    left: 0px;
    position: unset;
}
.gallerySlider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
    color: #ddd;
    /* right: -10px; */
    right: 0px;
    position: unset;
}
.slidenaviga {
    width: 100%;
    display: flex
;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
}
.gallerySlider {
    padding: 0px 10px;
}
.gallerySlider .swiper-button-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.gallerySlider .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.gallerySlider .swiper-button-prev:hover , .gallerySlider .swiper-button-next:hover {
    background-color: #f6901e;
    color: #fff;
}

.clientCard {
    width: 100%;
    padding: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0px;
    height: 88px;
    margin-bottom: 20px;
}

.owl-carousel .owl-item .clientCard img , .clientCard img {
    height: 100%;
    width: 100%;
    margin: auto;
    object-fit: contain;
}
.clientSlider .item {
    padding: 10px;
}
.clientSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.clientSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.clientSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.clientSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.clientSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #faaf3a;
}



.mediaGallerWrapper.innerpage .gallHomeCard {
    margin-bottom: 30px;
}

/* 
.contactUsSection {
    padding-top: 90px;
} */

.contactOfferWrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}

.contactOfferHeader {
    text-align: center;
    padding: 20px;
    background: linear-gradient(285deg, #ffeded, #fff3e9);
    border-radius: 10px;
}

.contactOfferHeader h4 {
    font-size: 22px;
    font-weight: 600;
    color: #4c1616;
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: normal;
}

.contactOfferContent {
    margin-top: 40px;
}

.contactOfferContent p {
    text-align: center;
    margin-bottom: 10px;
}

.contactOfferContent a {
    color: #a62418;

}

.contactOfferContent .ctofspan {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.contactOfferContent .ctofspan span {
    font-size: 18px;
    font-weight: 800;
    color: #ff7500;
}

.contactOfferContent h6 {
    text-align: center;
    color: #ff202d;
    font-size: 19px;
    margin-top: 30px;
}

.contactInfoCard {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #ffffff42;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid #dddddd6b;
    transition: 0.4s ease-in-out;
    position: relative;
    min-height: 226px;
}

.contactInfoCard::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
    background: linear-gradient(45deg, #eaeaff, #e6e7ff);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    visibility: hidden;
    opacity: 0;
}

.contactInfoCard:hover:after {
    height: 105%;
    width: 100.5%;
    visibility: visible;
    opacity: 1;
}

.contactinfoIoc {
    width: 80px;
    margin: auto;
    height: 80px;
    background: linear-gradient(180deg, #2f3192, #2f3192);
    padding: 18px;
    border-radius: 20px;
    margin-top: 2px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.contactInfoCard:hover .contactinfoIoc {
    transform: scale(1.04);
}

.contactinfoIoc img {
    filter: invert(3) brightness(5);
    width: 100%;
}

.contactinfoContent {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    text-align: center;
}

.contactinfoContent h5 {
    font-size: 20px;
    font-weight: 600;
    color: #26199d;
    margin-bottom: 6px;
    margin-top: 22px;
}

.contactinfoContent a {
    display: block;
}


.contactusFromCard {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.contactUsForm {
    padding: 34px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 22px 0px;
}

.form-control {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.form-control:focus {
    box-shadow: none;
    border: 1px solid #283663;
}
.form-control::placeholder {
    color: #b3b3b3;
}
.form-select {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.form-select:focus {
    box-shadow: none;
    border: 1px solid #ffbe62;
}
.contactUsSection {
    min-height: 70vh;
}

.contactOfferWrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}

.contactOfferHeader {
    text-align: center;
    padding: 20px;
    background: linear-gradient(285deg, #ffeded, #fff3e9);
    border-radius: 10px;
}

.contactOfferHeader h4 {
    font-size: 22px;
    font-weight: 600;
    color: #4c1616;
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: normal;
}

.contactOfferContent {
    margin-top: 40px;
}

.contactOfferContent p {
    text-align: center;
    margin-bottom: 10px;
}

.contactOfferContent a {
    color: #a62418;

}

.contactOfferContent .ctofspan {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.contactOfferContent .ctofspan span {
    font-size: 18px;
    font-weight: 800;
    color: #ff7500;
}

.contactOfferContent h6 {
    text-align: center;
    color: #ff202d;
    font-size: 19px;
    margin-top: 30px;
}


.right-sidebar-box {
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 100% px;
    margin: 0px auto;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 0px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
}

.right-sidebar-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #26199d;
    margin-bottom: 6px;
    margin-top: 22px;
}

.right-sidebar-box .custom-form label {
    color: #565656;
    display: block;
    font-size: 15px;
    margin-bottom: calc(2px + 0.3125vw);
    font-weight: 600;
    font-family: 'DM Sans' ;
}

.right-sidebar-box .custom-form .custom-input {
    position: relative;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: none;
    padding: calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(38.8px + 0.6875vw);
}

.right-sidebar-box .custom-form .form-select:focus {
    box-shadow: none;
}

.right-sidebar-box .custom-form .form-select {
    border: 1px solid #dddddd80 !important;
    padding: 7px 14px;
    border-radius: 30px;
}

.form-control.captcha-value {
    border-radius: 30px;
}

.right-sidebar-box .custom-form .custom-input i {
    align-items: center;
    color: #4a5568;
    display: flex;
    font-size: 15px;
    left: 0;
    line-height: 1;
    padding: 15px;
    position: absolute;
    top: 0px;

}

.form-control {
    background-color: #fff;
}

textarea.form-control {
    min-height: 30px;
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 92px;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: 1px solid #dddddd80 !important;
    padding: 10px 14px;
    border-radius: 12px;
}

.right-sidebar-box .custom-form .custom-input .form-control::placeholder {
    font-size: 14px;
}

.right-sidebar-box .custom-form .custom-input .form-control:focus {
    box-shadow: none;
}

.captcha {
    padding: 0px;
    width: 177px;
    position: relative;
}

.captcha img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dddddd80 !important;
}

.refreshcaptcha {
    position: absolute;
    top: 20px;
    bottom: 0px;
    margin: auto;
    right: -29px;
    height: fit-content;
}

.submitandclear {
    display: flex;
    gap: 12px;
}



.activitiySlider {
    position: relative;
}

.activitiySlider.owl-carousel .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: -18px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.activitiySlider.owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: -18px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.activitiySlider.owl-carousel:hover .owl-nav button.owl-prev,
.activitiySlider.owl-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}

.activitiySlider .item {
    padding: 12px;
}

.activitiesCard {
    padding: 10px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 18px;
    padding-bottom: 30px;
}

.activityContentWrapper {
    display: flex;
    /* align-items: center; */
}

.activityTitle.text-center {
    padding-top: 16px;
}

.activityTitle.text-center h4 {
    font-size: 24px;
    position: relative;
}

.activityTitle h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #2b159e;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.activityTitle h4 span {
    font-size: 18px;
    color: #111;
}

.activityText {
    width: 40%;
    padding: 15px;
}

.activityText p {
    text-align: justify;
}

.acitivityImgWraper {
    width: 30%;
    padding: 15px;
}

.activityImg {
    display: inline-block;
    border: 5px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    overflow: hidden;
    height: 268px;
}

.activityImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.activityVideoSection {
    width: 30%;
    padding: 15px;
}

.activitVideo .activitVideoThumb {
    width: 100%;
    display: inline-block;
    border: 5px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    overflow: hidden;
    min-height: 268px;
}

.activitVideo .activitVideoThumb img {
    width: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    height: 100%;
}

.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
    transition: 0.4s ease;
}

.pulse i:hover {
    background: #ffffff54;
    color: #fff;
    backdrop-filter: blur(7px);
}


@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

.inMoreImg {
    display: none;
}

.mediaGalleryInner {
    border-bottom: 1px dashed #ddd;
}


.TeamPic {
    position: relative;
    width: 100%;
    border: 4px solid #fff;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 15px;
    overflow: hidden;
}
.TeamPic img {
    width: 100%;
}
.teamContent .aboutTitle h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2e3192;
    margin-bottom: 8px;
}
.teamContent .aboutTitle h5 {
    margin-bottom: 14px;
    font-size: 18px;
}
.teamContent .aboutContent {
    padding: 0px;
}

.teamSlider .item {
    padding: 20px;
}
.teamSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.teamSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.teamSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.teamSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.teamSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #2e3192;
}

.patronName {
    position: absolute;
    z-index: 3;
    bottom: 7px;
    left: 0px;
    width: 96%;
    right: 0px;
    margin: auto;
    background: #ffffffba;
    text-align: center; 
    padding: 7px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.patronName h5 {
    font-size: 20px;
    font-weight: 600;
    color: #2b159e;
}

.patronName p {}

.normalVideoPlayer {
    width: 100%;
}

.VideoPlayerThumb {
    width: 100%;
    display: inline-block;
    border: 5px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    overflow: hidden;
}

.VideoPlayerThumb img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.theTagline {
    background: #fce2ff;
    padding: 5px 0px;
    margin-top: 6px;
}

.prparaReadBtn {
    color: #8224ca;
}

.magazineCard {
    width: 100%;
}

.magazineThumbnail {
    display: block;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border: 4px solid #fff;
    overflow: hidden;
}

.magazineThumbnail img {
    width: 100%;
    transition: 0.4s ease-in-out;
}

.magazineCard:hover .magazineThumbnail img {
    transform: scale(1.04);
}

.magazineContent {
    text-align: center;
    padding: 12px;
    background: #fff;
    width: 90%;
    margin: auto;
    margin-top: -24px;
    position: relative;
    border-radius: 9px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.magazineContent h4 {
    font-size: 18px;
    font-weight: 600;
}

.magazineContent p {
    font-size: 14px;
}

.magazineWrapper {
    position: relative;
    z-index: 3;
}

.abhikhyaMagazineCardWrapper {
    margin-top: 30px;
}

.executiveCommitteeCard {
    padding: 0px 30px   0px 30px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    /* background: #fff; */
    margin-bottom: 30px;
    /* border-radius: 18px; */
}


.rwd-table {
    max-width: 100%;
    border-collapse: collapse;
    width: 100%;
}

.rwd-table tr:first-child {
    border-top: none;
    background: #003c78;
    color: #fff;
}

.rwd-table tr th:first-child,
.rwd-table tr td:first-child {
    display: none;
}

.rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
}

.rwd-table th {
    display: none;
}

.rwd-table td {
    display: block;
}

.rwd-table td:first-child {
    margin-top: .5em;
}

.rwd-table td:last-child {
    margin-bottom: .5em;
}

.rwd-table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
}

.rwd-table th,
.rwd-table td {
    text-align: left;
}

.rwd-table {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
}

.rwd-table tr {
    border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
    padding: .5em 1em;
}

@media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: #d8e7f3;
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

    .rwd-table th:first-child,
    .rwd-table td:first-child {
        padding-left: 0;
    }

    .rwd-table th:last-child,
    .rwd-table td:last-child {
        padding-right: 0;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }

    .rwd-table th a,
    .rwd-table td a {}
}


.btntwocombo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.gallerySliderMain {
    position: relative;

}

.gallerySliderMain .swiper-button-next:after,
.gallerySliderMain .swiper-rtl .swiper-button-prev:after {
    display: none;
}

.gallerySliderMain .swiper-button-prev:after,
.gallerySliderMain .swiper-rtl .swiper-button-next:after {
    display: none;
}

.gallerySliderMain .swiper-button-next i {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    text-align: center;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
    line-height: 29px;
    visibility: hidden;
    opacity: 0;
}

.gallerySliderMain .swiper-button-prev i {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #1b115b;
    color: #282828;
    text-align: center;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
    line-height: 29px;
    visibility: hidden;
    opacity: 0;
}

.gallerySliderMain:hover .swiper-button-prev i,
.gallerySliderMain:hover .swiper-button-next i {
    visibility: visible;
    opacity: 1;
}

.gallerySliderMain {
    overflow: hidden;
    padding: 0px;
    margin-bottom: 40px;
}

.numlist {
    margin-top: 10px;
}

.numlist li {
    list-style: auto;
}

.teamCard {
    padding: 18px;
    position: relative;
    margin-bottom: 22px;
    cursor: pointer;
    /* min-height: 469px; */
}

.teamCard::after {
    content: '';
    position: absolute;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 70%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 20px;
    background: #fff;
}

.teamCardImg {
    width: 78%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    border: 3px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
}

.teamCardImg img {
    width: 100%;
}

.teamCardContent {
    text-align: center;
    position: relative;
    z-index: 3;
}

.teamCardContent h4 {
    font-size: 19px;
    font-weight: 600;
}

.teamCardContent h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 2px;

}

.teamCardContent p {
    margin-top: 10px;
    /* min-height: 50px; */
}

.patronsContent p {
    font-size: 16px;
}

.stickyPicture {
    position: sticky;
    top: 130px;
}

.featuresWrapper {
    max-width: 100%;
    margin: 0px auto;
}


.fCardImg {
    width: 210px;
    margin: 0px auto;
    background: #fff;
    height: 210px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px #ddd;
    padding: 30px;
}

.fCardImg img {
    width: 100%;
    /* filter: hue-rotate(255deg); */
}

.fCardContent {
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #009aca29;
    min-height: 144px;
    box-shadow: rgb(0 0 0 / 4%) 0px 3px 12px;
    transition: 0.4s ease-in-out;
    width: 72%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    min-height: 194px;
}
.featuresCard:hover .fCardContent{
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.096) 0px 25px 20px -20px;
}

.fCardContent h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2e3192;
    margin-bottom: 5px;
}

.fCardContent p {
    text-align: justify;
}

.subServices {
    background: #fff;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 12px;
    padding: 18px;
    margin-top: 40px;
}
.subServices h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.subServices .aboutContent .normalList {
    margin-left: 0px;
}
.footerLinks.Footerservices a {
    display: flex;
}
.normalList.justNormal li {
    line-height: normal;
    margin-bottom: 10px;
    background-position: left top 3px;
}
.zedCertificationWrap {
    display: flex;
    gap: 24px;
    align-items: center;
}
.DeepSubService {
    margin-top: 30px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}
.ourProjects .popDestiCard{
    margin-bottom: 40px;
}

.projectDetails .popDestiImg {
    height: 439px;
}
.projectOtherImages .prjImgWrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 439px;
}
.projectDetailsImages {
    margin-bottom: 20px;
    margin-top: 9px;
}
.projectDetails .subServices {
    margin: 0px;
    padding: 40px;
}
.ourProjects  {
    margin-top: 0px;
}
.careerPage .careerImgSec::after {
    display: none;
}


/*  */
.contactLocations {
    margin-top: 40px;
}

.choose-location-tab-card {
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px 0px;
    text-align: center;
    /* border: 1px solid #fe9da0; */
    transition: 0.4s ease;
    border-radius: 30px;
    background: linear-gradient(90deg, #f5f5ff, #e4e5ff), url(../img/location-icon/world-map-bg.png);
    box-shadow: rgb(149 157 165 / 9%) 0px 8px 24px;
    border: 1px solid #e9e9e996;
    min-height: 240px;
    border-bottom: 2px solid #2e3192;
}

.choose-location-tab-card:hover {
    background: linear-gradient(90deg, #e4e5ff, #f5f5ff), url(../img/location-icon/world-map-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.4s ease;
}

.choose-location-tab-card h5 {
    color: #2e3192;
    font-weight: 600;
    font-size: 18px;
    padding-top: 15px;
    margin-bottom: 15px;
}
.choose-location-tab-card P {
    color: #2e2e2e;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}
.choose-location-tab-card i {
    font-size: 12px;
    color: #2e3192;
    margin-right: 4px;
}
.location-tab-sec {
    padding-top: 35px;
}
.choose-location-tab-card a{
    font-size: 15px;
    color: #2e2e2e;
}
.choose-location-tab-card img{
    width: 70px;
}
/*  */


.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
    transition: 0.4s ease;
}

.pulse i:hover {
    background: #ffffff54;
    color: #fff;
    backdrop-filter: blur(7px);
}


@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}
.serviceImgCard {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    max-height: 360px;
}
.serviceImgCard img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.service-one-inner.solar-lights-inner::after {
    display: none;
}
/* 08-Aug-24 */


.aboutContainer .solar_subheading{
    padding-top: 0px;
}

.aboutContainer .solar_subheading h5{
    font-size: 28px;
    margin-bottom: 0px;
}

.popDestiContent2{
    margin-top: -60px;
}
.popDestiContent2 h4{
    margin-bottom: 0px;
}

.solar-lights-inner{
    display: block;
}

.solar-lights-inner::before{
    background: none !important;
}

.solar-lights-box{
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    margin-bottom: 19px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #c7c7c759;
}

.careerSection .director_sec{
    width: 90%;
    animation: none;
    position: relative;
    z-index: 2;
}

.managementTeam{
    background: linear-gradient(180deg, #ffffff9e, #e9eaff9e), url(../img/texture/img2.jpg) !important;
    background-size: 100%;
}

.team_modal_header{
    border-bottom: none;
}




/* Ckeditor */
.aboutContent.ckeditor h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.aboutContent.ckeditor ul li {
    background-image: url(../img/icons/checked.png);
    background-repeat: no-repeat;
    text-align: justify;
    background-size: 15px;
    padding-left: 23px;
    line-height: normal;
    margin-bottom: 10px;
    background-position: left top 3px;
}
/* Ckeditor */



/* inner Banenr  */

.inrbnr {
    position: relative;
    min-height: 350px;
    background: linear-gradient(83deg, #fff4de59, #ffe1e1ab), url(../img/bgs/inner-bnr-bg.png);
    padding-top: 80px;
    background-size: 100%;
    background-position: center center;

}

.inrbnrimg {
    width: 100%;
    height: 350px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.inrbnrimg img {
    width: 40%;
    position: relative;
}

.inrbnrContent {
    position: relative;
    z-index: 2;
    height: 270px;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    padding-bottom: 50px;
}

.inrbnrtext h2 {
    font-size: 32px;
    color: #ffffff;
}

.inrbrnNav {
    display: flex;
    align-items: center;
    margin-top: 3px;
    justify-content: flex-start;
}



.inrbrnNav li a i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}
.inrbrnNav li:first-child {
    padding-left: 0px;
}
.inrbrnNav li {
    position: relative;
    border-right: 1px solid #959595;
    padding: 0px 10px;
}

.inrbrnNav li:last-child {
    border: none;
}
.inrbrnNav li a {
    color: #fff;
}
.inrbrnNav li:last-child a {
    color: #f59100;
}
/* inner Banenr End */


.firstWord {
    float: left;
    line-height: 10px;
    font-size: 29px;
    color: #262362;
    margin-right: 9px;
    position: relative;
    top: 2px;
}
.centeredLighttext .titleSection {
    padding: 0px 20%;
}
.centeredLighttext .titleSection h2 {
    font-size: 40px;
}
.centeredLighttext .titleSection p {
    color: #fff;
}


.sisterConcerns {
    position: relative;
}
.sisterconcernsWrap {
    margin-top: 30px;
}
.sisconcard {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    text-align: center;
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 19px;
    margin-bottom: 21px;
}
.sisconcard h4 {
    font-size: 16px;
    font-weight: 400;
}


#chartdiv {
    width: 100%;
    height: 100vh;
  }


.servicesMainWrap .serviceCardImg {
    height: 260px;
}
.servicesMainWrap .serviceCardImg img {
    height: 100%;
    object-fit: cover;
}
.servicesMainWrap .serviceCard {
    min-height: auto;
    padding: 12px;
    margin-bottom: 20px;
}
.servicesMainWrap .serviceCardTitle h4 {
    font-size: 20px;
    justify-content: center;
}


.locationCard {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    min-height: 310px;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* justify-content: center; */
}
.locationcHead img {
    width: 70px;
    margin-bottom: 12px;
}
.locationcHead h4 {
    font-size: 22px;
    font-weight: 600;
    color: #262362;
    margin-bottom: 8px;
}
.locationCard h6 {
    color: #f59100;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 19px;
}
.locationCard p {
    line-height: 28px;
}
  

.aboutUsImg.servicesImg {
    height: 450px;
    overflow: hidden;
}
.aboutUsImg.servicesImg img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    vertical-align: baseline;
}



/* blogsdetails  */

.blogMainImg {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #ddd;
    padding: 5px;
}

.blogMainImg img {
    width: 100%;
    border-radius: 5px;
}

.blogMainHeader {
    margin-bottom: 30px;
}

.blogMainHeader .newsDate ul {
    justify-content: flex-start;
}

.blogMainHeader .newsDate ul li:first-child {
    margin-right: 10px;
}
.blogTitle h1, .blogTitle h2 {
    font-size: 34px;
    font-weight: 700;
}
.blogdSidebar {
  
    position: sticky;
    top: 90px;

}
.blogSiderCard {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 12px;
}
.blogNeedAssistants {
    padding: 12px;
    text-align: center;
}
.blogNeedAssistants img.mainImg {
    width: 50px;
    margin-bottom: 8px;
}
.blogNeedAssistants h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.blogNeedAssistants h5 {
    font-size: 12px;
}
.astrolBtns.ondetails.onblogs {
    flex-direction: column;
    gap: 7px;
} 
.astrolBtns.ondetails.onblogs a.astrolCall:nth-child(2) {
    background: #002968;
}
h5.sidebarTitle {
    font-weight: 600;
    position: relative;
    padding: 16px 0px 8px;
    margin-bottom: 12px;
    padding-top: 0px;
}

h5.sidebarTitle::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #002968;
    bottom: 0px;
    left: 0px;
}

.blogSiderCard {
    padding: 15px;
    border-radius: 10px;
}
.latest-post {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 10px 0px;
}

.blogdSidebar .latest-post:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.thumbnail {
    margin-right: 10px;
}

.thumbnail a {
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;

}

.blog-meta li {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #606060;
}
.blogContainer ul li {
    list-style: inside;
}
.blogMainHeader .newsDate ul {
    justify-content: flex-start;
}
.blogMainHeader .newsDate ul li:first-child {
    margin-right: 10px;
    display: flex
    ;
        align-items: center;
}
.newsDate ul li i {
    color: #f59100;
    font-size: 13px;
    margin-right: 7px;
}

.newsDate ul li p {
    font-size: 14px;
    margin-bottom: 0px;
}

.content p , .content li{
    color: #999999;
    margin-bottom: 15px;
    text-align: justify;
}
.content h1, .content h2, .content h3, .content h4,.content h5,.content h6 {
    margin-bottom: 4px;
}


.servicesMainWrap.accoladesWrap .serviceCard {
    min-height: 440px;
    border: 1px solid #ffebe5;
}
.servicesMainWrap.accoladesWrap .serviceCardTitle h4 {
    text-align: center;
}
.accoladesWrap .serviceCardTitle p {
    text-align: center;
}

.portfolioSlider .item {
    padding: 20px;
} 
.portfolioSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.portfolioSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}
.portfolioSlider.owl-carousel .owl-nav button.owl-prev:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.portfolioSlider.owl-carousel .owl-nav button.owl-next:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.portfolioSlider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #faaf3a;
}
.portfolioSlider .popDestiContent h4 {
    text-align: center;
}



.serviceCardImg.awardsImg {
    height: 550px;
}
.awardsSec .serviceCardContent {
    min-height: 123px;
}



.gallerySection.lightbackground {
    background: #fff;
}


.gallerySection.lightbackground .gallerySlider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
    color: #111;
    /* left: -10px; */
    left: 0px;
    position: unset;

}
.gallerySection.lightbackground .gallerySlider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #e9eaff9e;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border: 1px solid #e9eaff;
    color: #111;
    /* right: -10px; */
    right: 0px;
    position: unset;
}
.gallerySection.lightbackground .gallerySlider .swiper-button-prev:hover {
    background: #2e3192;
    color: #fff;

}
.gallerySection.lightbackground .gallerySlider .swiper-button-next:hover {
    background: #2e3192;
color: #fff;
}


.titleSection.withbutton {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsEventsWrapper.inner .eventCard {
    margin-bottom: 30px;
}


.lb-close {
    background: #fff;
    width: 30px;
    display: inline-block;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 33px;
    font-size: 18px;
    position: absolute;
    top: -17px;
    right: -17px;
    cursor: pointer!important;
}
.lb-nav a.lb-next {
    background: url(../img/icons/next-arrow.png) !important;
    background-size: 33px !important;
    background-repeat: no-repeat !important;
    background-position: center right 10px !important;
}
.lb-nav a.lb-prev {
    background: url(../img/icons/prev-arrow.png)!important;
    background-size: 33px !important;
    background-repeat: no-repeat !important;
    background-position: center left 10px !important;
}

@media screen and (max-width: 1600px) and (min-width: 1200px) {
    .ftr-link-bx a {
        font-size: 13px;
    }
    .logoSection.logoSectiontwo {
        width: 200px;
    }
    .sisconcard {
        padding: 14px;
        min-height: 86px;
    }
    .sisconcard h4 {
        font-size: 15px;
        font-weight: 600;
    }
    .logoText {
        font-size: 50px;
    }
    .servicesMainWrap.accoladesWrap .serviceCardTitle h4 {
        text-align: center;
        font-size: 17px;
    }
    .awardsSec .serviceCardContent {
        min-height: 116px;
    }
}


@media screen and (max-width: 786px) {
    
    .organizationCharWrapper {
        overflow-x: scroll;
    }
    .featuresCard {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .fCardContent {
        width: 100%;
        border-radius: 12px;
        margin-top: -30px;
        padding-top: 50px;
    }
    .fCardImg {
        width: 110px;
        height: auto;
        box-shadow: 0px 0px 10px #ddd;
        padding: 20px;
        position: relative;
        z-index: 3;
    }
    .zedCertificationWrap {
        flex-direction: column;
    }
  
    .headerMenu {
        display: none;
        position: fixed;
        z-index: 3;
        background: #2e3192e8;
        left: 0px;
        right: 0px;
        top: 143px;
        backdrop-filter: blur(7px);
        height: 100vh;
    }
    .headerSection.sticky .headerMenu {
        top: 87px;
    }
    .headerMenu>li {
        padding: 0px 14px;
        border-bottom: 1px dashed #dddddd52;
    }
    .headerMenu>li:last-child {
        border-bottom:none;
    }
    .headerMenu>li>a {
        display: block;
        padding: 10px 0px;
        color: #fff;
    }
    .headerMenu>li a:hover, .headerMenu>li a.active {
        color: #89e7ff;
    }
    .welcomeMessage {
        display: none;
    }
    .welcomeMessage p {
        padding: 0px;
    }
    .topHeaderWrapper {
        justify-content: center;
    }
    .headerMenu>li.hasSub:hover .headerSubNav {
        visibility: unset;
        opacity: unset;
        top: unset;
        overflow: unset;
        transition: unset;
       
    }
    .headerSubNav {
        position: initial;
        visibility: unset;
        opacity: unset;
        top: unset;
        overflow: unset;
        width: 100%;
        display: none;
        transition: unset;
    }
    .headerSubMenu>li a {
        display: block;
        background: #181b68d1;
        backdrop-filter: blur(5px);
        color: #fff;
    }
    .titleSection h3 {
        font-size: 70px;
    }
    /* .topHeaderSocial ul {
        flex-direction: column;
    } */
    .topHeaderSocial ul li:nth-child(3) , .topHeaderSocial ul li:nth-child(4), .topHeaderSocial ul li:nth-child(5), .topHeaderSocial ul li:nth-child(6) {
        display: none;
    }
    .inrbrnNav a {
        font-size: 10px;
    }
    .headerRightMenu .defaultBtn a, .headerRightMenu .defaultBtn button {
        font-size: 10px;
        padding: 4px 15px;
        height: 30px;
        border-radius: 8px;
    }
    .headerRightMenu .defaultBtn a.searchBtn {
        padding: 0px;
        background: #cdcfff;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 28px;
        margin-right: 9px;
    }
    .headerRightMenu li .defaultBtn a.searchBtn i {
        font-size: 12px;
        left: 2px;
        top: 3px;
    }
    .menuBtn {
        top: -5px;
    }
    .pulse i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }

    .activityImg {
        height: auto;
    }

    .magazineCard {
        margin-bottom: 30px;
    }

    .headerSection {
        z-index: 4;
    }

    .subMenu {
        width: 100%;
        position: unset;
        background: #a82dc9;
        visibility: visible;
        opacity: 1;
        transform: unset;
        padding: 0px;
        border-radius: 0px;
        display: none;
    }

    .navigationSection ul>li:hover .subMenu {
        visibility: unset;
        opacity: unset;
        filter: unset;
        top: unset;
        -webkit-transform: unset;
        transform: unset;
    }

    .subMenu>li {
        visibility: visible;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        opacity: 1;
    }

    .hasSub {
        position: relative;
    }

    .hasSub::after {
        content: '\f107';
        display: inline-block;
        font-family: 'Font Awesome 6 Free';
        font-weight: 600;
        position: absolute;
        right: 10px;
        top: 8px;
        background: #ffffff38;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 32px;
        border-radius: 7px;
        color: #fff;
        transition: 0.4s ease-in-out;
    }

    .hasSub.active::after {
        transform: rotate(90deg);
    }

    .subMenu>li>a {
        color: #fff;
    }

    /* .subMenu>li:last-child>a{
        border-bottom: none;
    } */
    .navigationSection ul>li:hover .subMenu>li {
        opacity: unset;
        visibility: unset;
        -webkit-transform: unset;
        transform: unset;
        -webkit-transition-delay: unset;
        transition-delay: unset;
    }

    .activityTitle h4 {
        text-align: center;
    }

    .activityContentWrapper {
        flex-direction: column;
    }

    .activityText {
        width: 100%;
    }

    .acitivityImgWraper {
        width: 100%;
        padding: 0px;
    }

    .activityVideoSection {
        width: 100%;
    }

    .navigationSection {
        display: none;
        position: fixed;
        top: 72px;
        background: linear-gradient(45deg, #530fa5, #d94fea);
        left: 0px;
        right: 0px;
        width: 100%;
        height: 100vh;
        z-index: 333;
    }

    .togglers {
        display: block;
    }

    .logoSection {
        width:30%;
        margin-top: 0px;
    }

    .navigationSection ul {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0px;
    }

    .navigationSection>ul>li>a {
        padding: 12px 10px;
        position: relative;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        display: block;
        border-bottom: 1px dashed #dddddd54;
        width: 100%;
    }

    .navigationSection ul>li a:hover {
        color: #fff;
    }

    .navigationSection ul li {
        width: 100%;
    }

    .navigationSection ul>li>a::after {
        bottom: 0px;
        background: #ffc87c;
    }

    /* .gallHomeCard {
        margin-bottom: 30px;
    } */
    .defaultBtn.mt-5.text-center {
        margin-top: 0px !important;
    }

    .mediaGallerWrapper {
        margin-top: 20px;
    }

    .aboutContent {
        padding-right: 0px;
    }

    .aboutTitle h3 {
        font-size: 22px;
    }

    .aboutTitle h5 {
        font-size: 13px;
        line-height: normal;
    }

    .aboutTitle {
        margin-bottom: 18px;
        margin-top: 20px;
        text-align: center;
    }

    .inrbnrtext h2 {
        font-size: 24px;
    }

    .activityTitle.text-center h4 {
        font-size: 15px;
    }

    .activityText p {
        font-size: 11px;
        line-height: 18px;
    }

    .activityText {
        padding: 5px;
    }

    .ourVisionImg {
        margin-top: 40px;
    }
    .defaultBtn a, .defaultBtn button {
        font-size: 11px;
        border-radius: 8px;
        padding: 6px 18px;
        height: 36px;
    }
    .titleSection.aboutSecTitle h3 {
        top: -8px;
        right: 0px;
        left: 0px;
        margin: auto;
        width: fit-content;
    }
    .titleSection h4 {
        font-size: 14px;
    }
    .titleSection h4::before{
        display: block!important;
    }
    .aboutContainer {
        margin-bottom: 30px;
    }
    .aboutUsImg img.aboutimg2 {
        top: 52%;
        left: 20px;
    }
    .service-one-inner.four::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #0001;
        bottom: 0;
        left: 0;
    }
    .service-one-inner.five::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #0001;
        bottom: 0;
        left: 0;
    }
    .common-box::after {
        display: none;
    }
    .common-box {
        margin-bottom: 40px;
    }
    .careerWrapper {
        padding: 20px;
    }
    .aboutContainer.careerContainer {
        margin-bottom: 0px;
    }
    .ftr-link-bx.orgnizerFooterSec {
        margin-top: 20px;
    }
    .ftr-link-bx.footerLinks {
        margin-top: 20px;
    } 
    .careerSection .director_sec {
        width: 100%;
        border-radius: 7px;
        overflow: hidden;
    }
    .titleSection.aboutSecTitle {
        text-align: center;
    }
    .inrbnrtext h2 {
        font-size: 15px;
    }
    .projects .aboutContainer.subServices {
        padding: 12px;
    }
    .projects .projectDetails .aboutContainer.subServices .popDestiImg {
        height: 170px;
        margin-bottom: 20px;
    }
    
    .projectOtherImages .prjImgWrapper {
        height: 170px;
    }
}

@media screen and (max-width:768px) and (min-width :500px) {
  
    .careerContainer .aboutContent .careerList.normalList li {
        width: 48%;
        font-size: 11px;
        padding: 1px 11px 1px 30px;
        background-size: 12px;
        background-position: top 10px left 12px;
    }
    .titleSection h3 {
        font-size: 58px;
    }
    .logoTitle h1 {
        font-size: 13px;
    }

    .logoTitle h1 span {
        font-size: 13px;
    }

    .logoImg {
        width: 90px;
    }

    .logoTitle p {
        font-size: 10px;
        line-height: normal;
    }
    .logoSection {
        width: 20%;
    }
    .headerMenu {
        top: 129px;
    }
    .bannerLeftContent h2 {
        font-size: 14px;
    }
    .bannerLeftContent h5 {
        font-size: 23px;
        line-height: normal;
    }
    .bannerLeftContent p {
        font-size: 12px;
        margin-bottom: 0px;
        line-height: 20px;
    }
    .bannerContent {
        height: 230px;
    }
    .bannerLeftContent {
        width: 90%;
        margin: auto;
        text-align: center;
    }
    .bannerCarousel {
        height: 230px;
    }
    .titleSection h2 {
        font-size: 26px;
        font-weight: 600;
        line-height: normal;
        text-align: center;
    }
    
    .aboutContainer {
        padding-right: 0px;
    }
}

@media screen and (max-width:499px) and (min-width :200px) {
    .inrbrnNav li a {
        font-size: 8px;
    }
    .titleSection.aboutSecTitle h3 {
        font-size: 50px;
    }
    
    .bannerLeftContent h2 {
        font-size: 13px;
        line-height: normal;
    }
    .bannerLeftContent h5 {
        font-size: 18px;
        line-height: normal;
    }
    .bannerLeftContent p {
        font-size: 12px;
        margin-bottom: 0px;
        line-height: 20px;
    }
    .bannerContent {
        height: 230px;
    }
    .bannerLeftContent {
        width: 90%;
        margin: auto;
        text-align: center;
    }
    .bannerCarousel {
        height: 290px;
    }

    .titleSection h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
        text-align: center;
    }
    .titleSection h4 {
        font-size: 10px;
        text-align: center;
    }
    .mobbtnCenter  {
        text-align: center;
    }
    .serviceCardImg {
        height: 140px;
    }
    .serviceCardTitle h4 {
        text-align: center;
        font-size: 16px;;
    }
    .serviceCard {
        min-height: auto;
    }
    .popDestiImg {
        height: 168px;
    }
    .popDestiContent {
        padding: 14px;
    }
    .popDestiContent h4 {
        font-size: 16px;
    }
    .popDestiContent p {
        width: 100%;
    }
    .popDestiContent a {
        visibility: visible;
        opacity: 1;
        transform: unset;
        left: 0px;
        right: 0px;
        bottom: -11px;
        margin: auto;
    }
    .popDestiCard:hover .popDestiContent a {
        transform: unset;
        visibility: unset;
        opacity: unset;
    }
    .popDestiContent {
        padding: 14px;
        padding-bottom: 28px;
    }
    .service-one-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
        padding: 10px;
    }
    .service-one-inner .thumbnail {
        margin: 0px;
    }
    .titleSection h3 {
        font-size: 30px;
    }
    .eventTitle h4 {
        font-size: 13px;
    }
    .eventTitle p {
        font-size: 11px;
        line-height: normal;
    }
    .eventTitle h5 {
        font-size: 10px;
    }
    .eventDate h4 {
        font-size: 10px;
    }
    .eventDate p {
        font-size: 11px;
        line-height: normal;
    }
    .eventDate {
        top: -40px;
    }
    .careerContainer .aboutContent .careerList.normalList li {
        width: 100%;
    }
    .footer-links-wrp .col {
        width: 100%;
        flex: 1 100%;
    }
    .bannerPngImg {
        height: 100%;
    }
    .bannerPngImg img {
        object-fit: cover;
    }
    .bannerLeftContent p {
        font-size: 10px;
        margin-bottom: 0px;
        line-height: 14px;
    }
    .aboutContainer {
        padding-right: 0px;
    }
    .aboutContainer.subServices {
        padding-right: 20px;
    } 
    .topHeaderWrapper a, .topHeaderWrapper p, .topHeaderWrapper li{
        font-size: 10px;
    }
    .headerRightMenu .defaultBtn a, .headerRightMenu .defaultBtn button {
        font-size: 8px;
        padding: 1px 7px;
        height: 25px;
        border-radius: 8px; 
    }
    .headerRightMenu li .defaultBtn a i {
        font-size: 9px;
    }
    .headerRightMenu .defaultBtn a.searchBtn {
        height: 25px;   
        width: 25px;
    }
    .headerRightMenu li .defaultBtn a.searchBtn i {
        font-size: 9px;
        left: 2px;
        top: 0px;
    }
    .menuBtn {
        top: -4px;
    }
    .menuBtn .line2 {
        stroke-dasharray: 44 29;
        stroke-width: 6;
    }
    .logoTitle p {
        font-size: 6px;
        line-height: normal;
    }

    .headerSection.sticky .logoTitle p {
        font-size: 6px;
    }

    .activityTitle h4 {
        font-size: 20px;
        text-align: center;
    }

    .logoTitle h1 {
        font-size: 10px;
    }

    .headerSection.sticky .logoTitle h1 {
        font-size: 10px;
    }

    .logoTitle h1 span {
        font-size: 10px;
    }

    .logoImg {
        width: 115px;
    }

    .headerSection.sticky .logoImg {
        width: 115px;
        padding: 0px;
    }

    .bannerMainContent h5 {
        line-height: normal;
        font-size: 11px;
        color: #fff;
    }

    .bannerMainContent {
        padding: 0px;
        padding-bottom: 10px;
    }

    .newsCardImg {
        height: 150px;
    }

    .gallHomeImg {
        height: 180px;
    }

    .gallHomeContent h5 {
        font-size: 14px;
    }

    .gallHomeContent p {
        font-size: 11px;
        line-height: normal;
    }
    .bannerSliderContent {
        padding-top: 70px;
    }
}

.our_clients_content {width: 100%; margin: 20px 0px;}
.our_clients_content p{text-align: center;}




