@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fal,
.fas,
.far {
    font-family: "Font Awesome 5 Pro";
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    color: rgb(var(--purple));
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

:root {
    --col-orange: #F47421;
    --col-darkgreen: #7EB142;
    --col-lightgreen: #8DC63F;
    --col-lightgray: #ECECEC;
    --col-darkgray: #343434;
    --radius: 10px;
    scrollbar-width: thin !important;
}

.ComnTitle {
    font-size: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 20px;
}

.SubTitle {
    font-size: 20px;
    color: #4B4B4B;
    line-height: 30px;
    font-weight: 600;
}

.ComnPadding {
    padding: 150px 0;
}

.desc {
    font-weight: 400;
    margin-bottom: 20px;
}

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

.text-green {
    color: var(--col-lightgreen) !important;
}

.text-black {
    color: var(--col-darkgray);
}

.LightGreenBg {
    background: #7eb14226 !important;
}

.btn {
    border-radius: var(--radius);
    display: flex;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: none !important;
}

.btn:hover {
    color: var(--col-lightgreen);
}

.btn:hover i {
    transform: translate(5px);
}

.black-btn {
    background: var(--col-darkgray) !important;
    color: #ffffff !important;
}

.orange-btn {
    background: var(--col-orange) !important;
    color: #ffffff !important;
}

.AboutContent {
    overflow: clip;
}


/* ------------------- Start Loader --------------------- */

.three {
    background-color: #eee;
    padding: 50px 0;
}

.loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0 0 0 0;
    background: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin: 35px 5px;
}

.loader span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
    background-color: var(--col-orange);
}

.loader span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
    background-color: var(--col-lightgreen);
}

.loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
    background-color: var(--col-orange);
}

@keyframes bounce {
    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}


/* ------------------- End Loader --------------------- */


/* ------------------- Start Header --------------------- */

#header .navbar {
    background-color: #373737;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    gap: 25px;
    align-items: center;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    padding: 10px;
    letter-spacing: 0.36px;
    height: 100px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--col-lightgreen);
}

.navbar-nav .nav-item:last-child .nav-link {
    padding: 18px 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 10px;
    background: linear-gradient(180deg, #C25C19 0%, #DC691D 20%, #F47421, #DC691D 80%, #C25C19 100%);
}

.navbar-nav .nav-item:last-child .nav-link:hover {
    opacity: 0.85;
    color: #fff;
}

nav.TopBar {
    padding: 16px 0;
}

nav.TopBar,
.ContactBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .dropdown-menu li {
    border-bottom: 1px solid #dfdfdf;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 9px 25px;
    color: var(--col-darkgray) !important;
    font-weight: 400 !important;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    color: #fff !important;
    background-color: var(--col-darkgreen);
}

.navbar .nav-item:hover>.dropdown-menu,
.navbar .dropend:hover>.dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu li:last-child {
    border-bottom: none;
}

.ContactBar {
    gap: 50px;
}

a.SocialIcon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.ContactItem.BefLine {
    position: relative;
}

.BefLine::before {
    content: "";
    display: block;
    height: 50px;
    width: 2px;
    background: var(--col-lightgray);
}

.ContactItem span.title {
    width: 100%;
    display: block;
    color: var(--col-orange);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2px;
}

a.SocialIcon span.icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    background: var(--col-darkgreen);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.ContactItem .link {
    font-size: 18px;
    color: var(--col-darkgrey);
    font-weight: 400;
}

a.SocialIcon span {
    font-size: 18px;
    color: var(--col-darkgray);
    font-weight: 400;
}

header#header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    height: 194px;
}

.subheader {
    position: relative;
    top: 94px;
    transition: all 0.5s;
    pointer-events: auto;
}

.topbox {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: all 0.5s;
}

.fixedHeader .topbox {
    top: -100%;
}

.fixedHeader .subheader {
    top: 0px;
}

#header.fixedHeader {
    background-color: transparent;
    pointer-events: none;
}


/* ------------------- End Header --------------------- */


/* ------------------- Start Hero --------------------- */

.Hero {
    padding: 20px 0 50px;
    background: url('../assets/hero-background.png') no-repeat center;
    background-size: cover;
}

.Hero .ComnTitle {
    font-size: 60px;
    line-height: 76px;
    font-weight: 700;
}

.SliderBtnContainer {
    border-radius: 50%;
    position: relative;
    transition: all;
    z-index: 1;
    /* transform: rotate(-24deg); */
}

.SliderBtnContainer .slide {
    position: absolute;
    cursor: pointer;
    transition: all 0.2s;
    width: 72px;
    height: 72px;
    border: 2px solid var(--col-darkgreen);
    border-radius: 50%;
}

.SliderBtnContainer .slide.disable {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.SliderBtnContainer .slide.active {
    opacity: 0;
    pointer-events: none;
}

.SliderBtnContainer .slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-carousel {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-slider {
    width: 800px;
    height: 800px;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.hero-slider .SliderBtnContainer {
    position: absolute;
    inset: -30px -30px -30px -30px;
}

.hero-slider::before {
    position: absolute;
    content: '';
    width: 95%;
    height: 95%;
    background: url('../assets/heropattern.svg') no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* ------------------- End Hero --------------------- */


/* ------------------- Start CustomerZone --------------------- */

.CustomerZone {
    background: url('../assets/Customer-zone-bg.png') no-repeat center;
    background-size: cover;
}

.CustomZoneUl {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.CustomZoneUl .CustomZoneItem {
    width: calc(50% - 25px);
    background: rgb(255 255 255 / 20%);
    backdrop-filter: blur(3px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    color: #fff;
    padding: 16px 26px;
    gap: 15px;
    font-size: 20px;
}

.CustomZoneItem>.imagwi {
    width: 60px;
}

.CustomerZone .orange-btn {
    font-size: 30px;
    width: calc(100% - 50px);
    justify-content: center;
}

.bill-orange {
    text-align: center;
}

.bill-orange>img {
    margin-bottom: 30px;
}


/* ------------------- End CustomerZone --------------------- */


/* ------------------- Start CITY GAS DISTRIBUTION --------------------- */

.point.text-green {
    color: #4F9200 !important;
}

img.side-image {
    max-width: 692px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}


/* ------------------- End CITY GAS DISTRIBUTION --------------------- */


/* ------------------- Start PreseLocation --------------------- */

.PreseLocation {
    background: url('../assets/location-list-bg.png') no-repeat center;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

.map-container {
    width: 600px;
    max-width: 100%;
    position: relative;
    margin: auto;
}

ul.location-ul {
    position: absolute;
    inset: 0 0 0 0;
}

li.locaton-item {
    position: absolute;
    top: calc(20% + 3px);
    left: 23%;
    width: 4%;
    display: flex;
    gap: 5px;
}

li.locaton-item::after,
li.locaton-item::before {
    content: "";
    border: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    bottom: -3px;
    transition: all 0.5s;
}

li.locaton-item::after {
    min-width: 100%;
    height: 11px;
    bottom: -5px;
}

li.locaton-item::before {
    min-width: 65%;
    height: 5px;
    bottom: -2px;
    left: 4px;
}

li.locaton-item:hover:after,
li.locaton-item:hover:before {
    border-color: #343434;
}

.locaton-item span.text {
    background: #fff;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 0 0px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0px;
    transition: all 0.5s;
    /* opacity: 0; */
}

.locaton-item:hover span.text {
    width: fit-content;
    padding: 0 10px;
    opacity: 1;
    border-color: #373737;
    position: relative;
    z-index: 1;
}

.LocationList strong {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}

.LocationList p {
    color: #fff;
    border-bottom: 1px solid;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.LocationList p:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.LocationList ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.LocationList ol li {
    text-align: center;
    color: #fff;
    padding: 10px;
}

.LocationList ol li span {
    display: block;
    font-size: 40px;
}

.LocationList ol li small {
    font-size: 20px;
}

.location-lis {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.loc_item {
    width: calc(30.33% - 8px);
    border-radius: var(--radius);
    background: rgb(255 255 255 / 50%);
    display: flex;
    align-items: center;
}

.loc_item span.loc-icon {
    padding: 16px 12px;
    font-size: 22px;
    background: #fff;
    border-radius: 10px 0 0 10px;
    color: #4B4B4B;
}

.loc-content {
    padding: 0 12px;
    color: #414141;
}

.loc-content .city {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    display: block;
}

.loc-content .state {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}


/* ------------------- End PreseLocation --------------------- */


/* ------------------- CNG Stations Start --------------------- */

.CngStation {
    background: url('../assets/CngStationBG.png') no-repeat center;
    background-size: cover;
}

.CardStation {
    max-width: 780px;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
}

.ctabs {
    border: 1px solid var(--col-lightgreen);
}

.ctabs .titlebox {
    background: var(--col-lightgreen);
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    padding: 16px 100px;
    font-weight: 400;
    margin-bottom: 0;
}

.locationOvervi {
    padding: 30px 20px;
}

.cmaps {
    margin-left: auto;
}

.locationOvervi {
    padding: 32px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.locationItem {
    display: flex;
    width: calc(50% - 11px);
    align-items: center;
    border: 2px solid #DADADA;
    border-radius: var(--radius);
    overflow: hidden;
    justify-content: space-between;
    background: linear-gradient(254deg, #fff 0%, #fff 100%);
    transition: background 0.5s;
}

.locationItem:hover {
    background: linear-gradient(254deg, #F58221 0%, #C55A00 100%);
    border-color: var(--col-orange);
    color: #fff;
}

.locationItem .textbx {
    flex-grow: 1;
    padding: 20px;
    font-size: 20px;
}

.locationItem .imagebx {
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
    height: 86px;
}

.locationItem .imagebx img {
    width: 100%;
}

.cmaps {
    height: 100%;
    border: 1px solid var(--col-orange);
}

.cmaps iframe {
    display: block;
    height: 100%;
}


/* ------------------- CNG Stations End --------------------- */


/* ------------------- News & Press Start --------------------- */

.updated_media {
    display: flex;
    background-color: #ECECEC;
    border-radius: var(--radius);
    overflow: hidden;
}

.details_intro {
    padding: 25px 35px;
    width: 60%;
    align-self: center;
}

.news_imges {
    width: 40%;
}

.date_icon {
    max-width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.date_icon .icon_one {
    padding-right: 15px;
    font-size: 18px;
    color: var(--col-darkgreen);
}

.date_icon p {
    margin: 0;
}

#media .owl-nav {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

#media .owl-item img {
    height: 240px;
    object-fit: cover;
}

#media .owl-nav button.owl-next,
#media .owl-nav button.owl-prev {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    margin: 0 5px;
    background-color: #ECECEC;
    border-radius: 10px;
}

#media .owl-nav button i {
    font-size: 25px;
    padding: 10px 15px;
    color: #8e8f8f;
}

#media .owl-nav button i:hover {
    color: white;
}

#media .owl-nav button.owl-next:hover,
#media .owl-nav button.owl-prev:hover {
    background-color: #7EB142;
}

.details_intro .title {
    font-weight: 600;
    margin: 0;
    font-size: 22px;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.date_icon {
    max-width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0 16px;
}


/* ------------------- News & Press End --------------------- */


/* ------------------- Start Footer --------------------- */

.footer_comnpadding1 {
    padding: 80px 0 0 0;
}

#footer {
    background-image: url(../assets/footer-image.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#footer .foot_logo {
    margin-bottom: 30px;
}

#footer .social ul li {
    display: inline-block;
}

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

.icon_box {
    width: 40px;
    height: 40px;
    background-color: #F47421;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
    margin: 0 15px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .desc {
    color: #FFFFFF;
    font-size: 18px;
    max-width: 400px;
}

#footer .comntitle {
    color: #7EB142
}

#footer ul li {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
    text-decoration: none;
}

#footer ul.address li a {
    color: #FFFFFF;
    display: flex;
}

#footer a:hover {
    color: #8ec73f;
}

#footer .contact li {
    display: flex;
    align-items: start;
    color: #FFFFFF;
}

#footer .contact li span {
    line-height: 32px;
}

.foot_location {
    margin-right: 15px;
    width: 25px;
    height: 25px;
    min-width: 25px;
    margin-top: 4px;
}

#footer .quick_link li {
    width: 49%;
    display: inline-block;
}

#footer .left_link ul li {
    margin-bottom: 20px;
}

#footer .link li {
    display: flex;
    align-items: start;
    color: #FFFFFF;
}

#footer .link li a {
    margin-left: 15px;
}

#footer .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid white;
    color: #fff;
    gap: 14px;
    font-weight: 400;
    font-size: 18px;
}

#footer .footer-bottom p {
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 23px;
}

#footer hr {
    margin: 0;
    margin-top: 50px;
    background-color: #FFFFFF;
}

.FootTitle {
    font-size: 30px;
    color: var(--col-darkgreen);
    margin-bottom: 40px;
    font-weight: 500;
}


/* ------------------- End Footer --------------------- */


/* ------------------- Start CustomerZone --------------------- */

#ContactModal .modal-footer {
    justify-content: center;
}

#ContactModal .ContactBar {
    flex-wrap: wrap;
}

#ContactModal .ContactItem {
    width: 100%;
}

#ContactModal .ContactItem.BefLine {
    display: none;
}

.modal-title .icon {
    margin-right: 10px;
}

.navbar-toggler-icon {
    background: url('../assets/menu.png') no-repeat center;
    background-size: contain;
}


/* ------------------- End CustomerZone --------------------- */


/* ------------------- Start About --------------------- */

.InnerBanner {
    padding: 0;
    position: relative;
    height: 500px;
    max-height: 500px;
}

.InnerBanner>img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.InnerBanner .title {
    position: absolute;
    inset: 0 0 0 0;
}

.InnerBanner .ComnTitle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    /* text-shadow: 2px -2px 5px #fffcfc; */
    max-width: 500px;
}

.MenusAboutItem {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.AboutItemBtn {
    width: 100%;
    background: var(--col-darkgreen);
    color: #fff !important;
    font-size: 22px;
    line-height: 39px;
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
}

.MenusAboutItem .card {
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0;
}

.AboutItemBtn::before {
    content: '\f067';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    font-size: 20px;
    transition: all 0.5s;
}

.AboutItemBtn:not(.collapsed)::before {
    content: '\f068';
}

.aboutlinkli {
    background-color: #F3F3F3;
    border-bottom: 0.5px solid #919191;
    padding: 10px 15px;
    font-size: 18px;
    color: #828282;
}

.aboutlinkli:last-child {
    border: none;
}

.aboutlinkli a>img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 14px;
}

.slide-content {
    padding-left: 50px;
}

.about-side-img {
    float: left;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin-right: 30px;
    margin-bottom: 10px;
    border-radius: var(--radius);
}

.close-cont {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 10px;
    text-align: end;
}

.close-btn {
    all: unset;
    color: #343434;
    font-size: 30px;
    padding: 0 10px;
}

.mobilesidebar {
    display: none;
}


/* ------------------- End About --------------------- */


/* ------------------- Start PNG --------------------- */

.max_1000 {
    max-width: 1000px;
    margin: auto;
}

.characterisitem {
    min-height: 264px;
    width: 211px;
    background: #ECECEC;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.characterisitem .icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.characterisitem .phars {
    font-size: 20px;
    max-width: 96%;
    line-height: 28px;
}

.characterisitem small {
    font-size: 16px;
}

.characterisul {
    display: flex;
    gap: 25px;
}

.gasdistributboxli {
    position: relative;
}

.gasdistributboxli::before {
    content: "";
    background: url('../assets/icons/check.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    top: 0;
}

.gasdistributboxli .title {
    font-size: 20px;
    color: #373737;
    margin-bottom: 5px;
}

.gasdistributbox {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gasdistributbox .gasdistributboxli {
    width: calc(50% - 7.5px);
    padding-left: 40px;
    margin-bottom: 20px;
}


/* ------------------- End PNG --------------------- */

.gallryItem {
    position: relative;
}

.gallryItem>.titleBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(244 116 33 / 85%);
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
    padding: 8px 20px;
}

.gallryItem>img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    border-radius: var(--radius);
}

.gallryItem {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.locationList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.locationList>li {
    width: calc(25% - 25px);
}

.locationList .locatItem {
    background: #ECECEC;
    padding: 30px 30px 30px 54px;
    border-radius: var(--radius);
    display: inline-block;
    border: 3px solid #ECECEC;
    height: 100%;
}

.locationList .locatItem:hover {
    background-color: #fff;
}

.locatItem .cityName {
    color: var(--col-orange);
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 24px;
    position: relative;
    font-weight: 500;
    margin-bottom: 20px;
}

.locatItem .cityName>i {
    position: absolute;
    left: -28px;
    top: 0px;
    font-size: 24px;
}

.locatItem .address {
    margin-bottom: 40px;
    min-height: 51px;
    overflow: hidden;
}

.loctiLink {
    color: var(--col-darkgreen);
    position: relative;
    float: right;
}

.LocationExpolre .nav-link {
    border: none;
    background-color: #ECECEC;
    color: #828282;
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 0.4px;
    padding: 15px 30px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.LocationExpolre .nav-link.active {
    background: var(--col-darkgreen);
    color: #ffffff;
}

.LocationExpolre .nav-tabs {
    margin-bottom: 25px;
    border: none;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

.LocationExpolre .nav-tabs::-webkit-scrollbar {
    /* width: 5px; */
    height: 5px;
}

.LocationExpolre .nav-tabs::-webkit-scrollbar-track {
    background: #f9f9f9;
}

.LocationExpolre .nav-tabs::-webkit-scrollbar-thumb {
    background: #ededed;
    transition: all 0.5s;
}

.LocationExpolre .nav-tabs::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.FaqsList {
    background: #ECECEC;
}

#faqsAccordion .accordion-button::after {
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    background-image: unset !important;
    color: var(--col-orange);
    font-size: 22px;
    position: relative;
    right: -8px;
    top: -1px;
}

#faqsAccordion .accordion-button {
    box-shadow: unset;
    font-size: 20px;
    color: #373737;
    position: static;
    padding: 22px 35px;
    font-weight: 500;
}

#faqsAccordion .accordion-item {
    margin-bottom: 40px;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

#faqsAccordion .accordion-button:not(.collapsed) {
    background-color: unset;
    color: var(--col-orange) !important;
}

#faqsAccordion .accordion-body {
    padding: 0 35px 22px;
    margin-bottom: 0;
    color: #747474;
}

#faqsAccordion .accordion-button::before {
    content: '';
    width: 6px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #828282;
    z-index: 1;
}

#faqsAccordion .accordion-button:not(.collapsed):before {
    background-color: var(--col-orange);
}

.datebox {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--col-orange);
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding: 8px 22px;
    border-bottom-left-radius: var(--radius);
}

.NewsItem {
    display: flex;
    align-items: center;
    position: relative;
    background: #ECECEC;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 50px 30px;
}

.NewsItem .image {
    width: 210px !important;
    height: 210px !important;
    aspect-ratio: 1/1;
}

.NewsItem .image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.NewsItem .content {
    padding-left: 20px;
}

.NewsItem .title {
    color: var(--col-orange);
    font-size: 26px;
    line-height: 1.4;
}

.NewsItem .publish {
    font-size: 16px;
    color: #747474;
    margin-bottom: 30px;
}

.NewsItem .viewbtn {
    font-size: 18px;
    color: #373737;
}

.gallryItem {
    cursor: pointer;
    display: block;
}

.gallerygroup {
    display: none;
    opacity: 0;
}

.cusPagination .pagination {
    gap: 10px;
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #ECECEC;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    box-shadow: none !important;
}

.active.page-link {
    background: var(--col-darkgreen);
    color: #ffffff;
}

.page-link:hover,
.page-link:focus,
.page-link:active {
    color: var(--col-darkgray);
    background-color: #fff;
}

.memberitem {
    display: flex;
    margin-bottom: 60px;
}

.memberitem>.image {
    width: 310px;
    height: 310px;
    min-width: 310px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.memberitem>.image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.memberitem>.image::before {
    content: '';
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #F47421;
}

.memberitem .content {
    padding-left: 60px;
}

.memberitem h5.title {
    font-size: 26px;
    color: #F47421;
    text-transform: uppercase;
    letter-spacing: 0.52px;
    margin-top: 10px;
}

.memberitem h5.subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #373737;
}

.memberitem p.desc {
    color: #747474;
    font-size: 16px;
    margin-bottom: 0;
}

.contactbox {
    border-radius: 10px;
    overflow: hidden;
    background: #ECECEC;
    height: 100%;
}

.contactbox .title {
    margin-bottom: 0;
    background-color: #F47421;
    color: #ffffff;
    font-size: 26px;
    padding: 20px 30px;
}

.contactbox.green .title {
    background-color: #7EB142;
}

.details {
    padding: 16px 30px;
}

.detailul .detali {
    padding-left: 40px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #747474;
}

.detailul .detali>img {
    position: absolute;
    left: 0;
    top: 2px;
}

.emergan {
    color: #747474;
    font-weight: 400;
    line-height: 24px;
}

.emergan .tee {
    font-weight: 500;
    margin-right: 6px;
}

.slide-uln .slide-lin {
    position: relative;
    padding-left: 30px;
    margin-bottom: 9px;
}

.slide-uln .slide-lin::before {
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url('../assets/double-check.png') no-repeat center;
    background-size: contain;
    left: 0px;
    top: 3px;
}

.text-ordaas {
    color: var(--col-orange);
}

a.actlot {
    color: #000;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.text-ach {
    color: var(--col-orange) !important;
}

.grey-box {
    background-color: #ECECEC;
}

.locastionmap {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gettouch {
    border-radius: 10px;
    overflow: hidden;
    padding: 50px;
    background-color: #ffffff;
}

.gettouch .SubTitle {
    font-size: 26px;
    margin-bottom: 30px;
}

.form-control {
    background: #ECECEC;
    border: transparent;
    font-size: 18px;
    padding: 16px 22px;
    border-radius: 10px;
}

.gettouchform .orange-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.gredientgreen .item,
.gredientgreen {
    position: relative;
}

.gredientgreen .item .slide-conte {
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.gredientgreen .item::before {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    z-index: 1;
    background: linear-gradient(90deg, #8DC63F 26%, transparent 70%);
}

.gredientgreen .item>.container-lg {
    position: relative;
    z-index: 2;
}

.gredientgreen .item .images-conte>img {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-carousel {
    position: relative;
}

.who-we-carousel .owl-nav {
    position: absolute;
    max-width: 1670px;
    margin: auto;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -120px);
    padding-left: 14px;
}

.who-we-carousel .owl-nav>button {
    margin: 0 10px;
}

.who-we-carousel .owl-nav>button i {
    color: #FFFFFF;
    font-size: 22px;
}

.owl-item .who-carousoal-phrp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.owl-item .who-carousoal-title {
    font-size: 30px;
    width: 100%;
}

.owl-item.active .who-carousoal-title,
.owl-item.active .who-carousoal-phrp,
.owl-item.active .black-btn {
    animation: fadeInRight 1.5s ease-out;
}

.gredientgreen .ComnTitle {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 0;
    background: rgb(255 255 255);
    padding: 10px 20px;
    border-radius: 10px 0 0 10px;
    color: #373737;
    text-transform: capitalize;
}


/* ---------------------------------------------------------------------------- */


/* first part herer */


/* 
section {
    overflow: hidden;
}

.pin-spacer {
    padding: 0 !important;
}

.swipe-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    max-height: 830px !important;
    display: flex;
    align-items: center;
    margin-top: 50px !important;
}

.swipe-section .panel {
    position: absolute;
    width: 100%;
    max-height: 830px !important;
    top: 0px;
    overflow: hidden !important;
} */


/* first end herer */


/* .downerbox {
    position: fixed;
    width: 50px;
    height: 50px;
    Top: 60%;
    right: 80px;
    transform: translate(-50%, -50%);
    margin: auto;
    text-decoration: none;
    text-align: center;
    font-size: 35px;
    z-index: 2;
    rotate: 0deg;
}

.map-container .slideright {
    animation: fadeInright .5s ease-in-out infinite;
    animation-duration: 5s;
}

.locaton-item>img {
    animation: bounceIn .5s ease-in-out infinite;
    animation-duration: 5s;
} */


/* second part herer */

.mobile_view_map {
    /* background: #F47421; */
    overflow: hidden;
    display: none;
}



/* @media only screen and (min-width:1200px) and (max-width:1600px)  {
    .location-lis{
        gap: 15px;
    }
    .loc_item {
        width: calc(32.3% - 5px);
    }
} */