/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
}

a {
    color: #Ed3237;
    text-decoration: none;
}

a:hover {
    color: #fc4e55;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    padding-bottom: 30px;
}

.section-header div.header-line {
    margin: 6px 0px 3px;
    width: 160px;
    height: 4px;
    background-color: #Ed3237;
    border-radius: 15px;
}

.section-header h1 {
    /* font-size: 13px; */
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #006CB5;
    /* color: #012970; */
    text-transform: uppercase;
}

.section-header h2 {
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #006CB5;
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 22px;
    line-height: 42px;
    font-weight: 700;
    color: #006CB5;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #012970;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 57px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #Ed3237;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff0007;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0 20px;
}

.header.header-scrolled {
    background: #006cb5;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 70px;
    margin-right: 6px;
    transition: 0.2s;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Montserrat", sans-serif;
    margin-top: 3px;
}

.header.header-scrolled .logo img {
    max-height: 40px;
    margin-right: 6px;
    transition: 0.2s;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #f5c358;
    border-bottom: 2px solid #f5c358;
}

@media (max-width: 991px) {
    .navbar a,
    .navbar a:focus {
        border-bottom: none;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #ffc03d;
        border-bottom: none;
    }
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #Ed3237;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #ff0007;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0px 0 0 0;
    padding: 1px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #212529;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #f5c358;
}


/* .navbar .li.dropdown li:hover>a {
    color: #f5c358;
    border-bottom: 0px solid #f5c358;
} */

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        color: #ffffff;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #f5c358;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #f5c358;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 700px;
    /* background: url(../images/homepageBanner.jpg) top center no-repeat; */
    background: linear-gradient(84deg, #21252912, #2125295e), url(../images/updatedbanner-img2.png) center center no-repeat;
    background-size: cover;
}

.hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 26px;
}

.hero .hero-img {
    text-align: right;
}

.hero .banner-button img {
    max-width: 220px;
    margin-top: 30px;
}

@media (max-width: 1120px) {
    .hero {
        height: 620px;
        padding: 120px 0 60px 0;
    }
    .hero .banner-button img {
        max-width: 200px;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .hero {
        height: 460px;
        padding: 120px 0 60px 0;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero .banner-button img {
        max-width: 180px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 420px;
        padding: 120px 0 60px 0;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero .banner-button img {
        max-width: 160px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 320px;
        padding: 120px 0 60px 0;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero .banner-button img {
        max-width: 160px;
        margin-top: 20px;
    }
}


/*--------------------------------------------------------------
#  LPG Hero 2 Section
--------------------------------------------------------------*/

.hero2 #lpg-banner {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.hero2 #lpg-banner .inner {
    padding-top: 56%;
    display: block;
    height: 0;
}

.hero2 #lpg-banner {
    background-image: url("../images/ALDS-Banner.jpg");
}


/*--------------------------------------------------------------
#  cng Hero 2 Section
--------------------------------------------------------------*/

.hero2 #cng-banner {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.hero2 #cng-banner .inner {
    padding-top: 56%;
    display: block;
    height: 0;
}

.hero2 #cng-banner {
    background-image: url("../images/lpg-banner.png");
}


/*--------------------------------------------------------------
#  High Pressure Cylinders Hero 3 Section
--------------------------------------------------------------*/

.hero3 #high-pressure-cylinders {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.hero3 #high-pressure-cylinders .inner {
    padding-top: 56%;
    display: block;
    height: 0;
}

.hero3 #high-pressure-cylinders {
    background-image: url("../images/cylinders/high-pressure-cylinders.png");
}


/*--------------------------------------------------------------
#  High Pressure Cylinders Hero 3 Section
--------------------------------------------------------------*/

.hero4 #packed-cylinder-division {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.hero4 #packed-cylinder-division .inner {
    padding-top: 53%;
    display: block;
    height: 0;
}

.hero4 #packed-cylinder-division {
    background-image: url("../images/cylinder-division.png");
}

.hero5 #lpg-banner {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.hero5 #lpg-banner .inner {
    padding-top: 56%;
    display: block;
    height: 0;
}

.hero5 #lpg-banner {
    background-image: url("../images/top-banner/about_final.png");
}


/*--------------------------------------------------------------
# Sub Pages Hero Section
--------------------------------------------------------------*/

.hero-topBanner {
    width: 100%;
    height: 480px;
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-topBanner.contactBanner {
    background: url(../images/top-banner/contact-us.jpg) rgb(33 45 69 / 83%);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-topBanner.ourProductsBanner {
    background: url(../images/top-banner/our-products.jpg) rgb(33 45 69 / 83%);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-topBanner.aboutusBanner {
    background: url(../images/top-banner/about2.jpeg) rgb(33 45 69 / 83%);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-topBanner h1,
.hero-topBanner.aboutusBanner h1,
.hero-topBanner.contactBanner h1,
.hero-topBanner.ourProductsBanner h1 {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero-topBanner,
    .hero-topBanner.aboutusBanner,
    .hero-topBanner.contactBanner,
    .hero-topBanner.ourProductsBanner {
        height: auto;
        padding: 120px 0 60px 0;
    }
}


/*--------------------------------------------------------------
# division
--------------------------------------------------------------*/

.division {
    background-color: #fefefe;
}

.divisions-head h1,
.divisions-head h5 {
    color: #ffffff;
}

.division .content {
    background-color: #2d6ab0;
    padding: 40px;
}

.division h3 {
    font-size: 14px;
    font-weight: 700;
    color: #Ed3237;
    text-transform: uppercase;
}

.division h1 {
    /* font-size: 24px; */
    font-weight: 700;
    color: #012970;
}

.division p {
    margin: 0px 0 30px 0;
    line-height: 24px;
}

.division .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #Ed3237;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.division .btn-read-more span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.counter-box {
    box-shadow: 26px 18px 81px 0px rgba(225, 225, 225, 0.48);
    padding: 0px 0px 0px 0px;
}

.division .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.division .btn-read-more:hover i {
    transform: translateX(5px);
}

.division-content {
    background-color: #ffffff;
    min-height: 160px;
}

.division .box {
    width: 50%;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.division .box.box1 {
    height: 100%;
    width: 100%;
    border-right: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    border-width: 0px 1px 1px 0px;
    border-color: #E1E1E1;
}

.division .box.box2 {
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #E1E1E1;
    border-width: 0px 0px 1px 0px;
    border-color: #E1E1E1;
}

.division .box.box3 {
    height: 100%;
    width: 100%;
    border-right: 1px solid #E1E1E1;
    border-width: 0px 1px 0px 0px;
    border-color: #E1E1E1;
}

.division .box.box4 {
    height: 100%;
    width: 100%;
    border: 0px solid #E1E1E1;
}


/*--------------------------------------------------------------
# products
--------------------------------------------------------------*/

.products .box {
    padding: 20px 20px 0px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    background-color: transparent;
    /* background-image: linear-gradient(0deg, #006CB5 22%, #FFFFFF00 44%); */
    background-image: linear-gradient(180deg, #ffffff 50%, #006cb5f5 80%);
    opacity: 1;
}

.products .box .box-info {
    max-width: 200px;
}

.products .box img {
    padding: 0px 0px 0px;
    transition: 0.5s;
    transform: scale(1.1);
}

.products .box h5 {
    /* font-size: 24px; */
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 18px;
}

.products .box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.products .box:hover img {
    transform: scale(1);
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding: 0px 0 0px;
}

.counts .count-box {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: #Ed3237;
}

.counts .count-box h1 {
    /* font-size: 36px; */
    display: block;
    font-weight: 700;
    color: #0b198f;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.sustainability .sustainability-box {
    height: 100%;
    background: url(../images/sustainability.jpg) center center no-repeat;
    background-size: cover;
}

.sustainability .sustainability-boxInfo {
    max-width: 500px;
    min-height: 400px;
    padding: 80px 20px;
    margin: auto;
}

.sustainability .sustainability-boxInfo h1 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    opacity: 1;
    position: relative;
    z-index: 11;
}

.sustainability .sustainability-icons h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .sustainability .sustainability-icons h3 {
        font-size: 28px;
    }
}

.sustainability .sustainability-icons .content .icon-box {
    display: flex;
}

.sustainability .sustainability-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #012970;
}

.sustainability .sustainability-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: #0245bc;
    margin-right: 15px;
}

.sustainability .sustainability-icons .content .icon-box p {
    font-size: 15px;
    color: #848484;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 15px 20px 0;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: #444444;
    text-align: left;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    background: none;
    color: #Ed3237;
    border-bottom: 0;
}

.faq .accordion-body {
    padding: 0 0 25px 0;
    border: 0;
}

@media (max-width: 991px) {
    .faq .accordion-flush .accordion-item.accordion-item-mobile:first-child {
        border-top: 1px solid #dfe2e5;
    }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.high-pressure-cylinders {
    background: #fafafa;
    padding: 60px 0;
}

.high-pressure-cylinders .cylinder {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
}

.high-pressure-cylinders .cylinder .cylinder-img {
    position: relative;
    overflow: hidden;
}

.high-pressure-cylinders .cylinder .cylinder-info {
    padding: 12px 12px 12px 12px;
    background-color: #006CB5;
}

.high-pressure-cylinders .cylinder .cylinder-info h5 {
    font-weight: 600;
    margin-bottom: 4px;
    /* font-size: 14px; */
    color: #ffffff;
}

.high-pressure-cylinders .cylinder .cylinder-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}

.high-pressure-cylinders .cylinder:hover {
    transform: scale(1.04);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #DBF4E3;
    padding: 20px 0;
}

.team .member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    /* background: #fff; */
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    max-width: 250px;
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}


/* .team .member .img-fluid {
    max-width: 100%;
    height: auto;
}

.team .member .img-fluid_2 {
    max-width: 100%;
    height: auto;
} */

.team .member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    /* background: url(../img/team-shape.svg) no-repeat center bottom; */
    background-size: contain;
    z-index: 1;
}

.team .member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.team .member .social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}

.team .member .social a:hover {
    color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 10px 15px 10px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #012970;
}

.team .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6d6868;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}

.team .member:hover {
    background: #fff;
    transform: scale(1.04);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
    right: 8px;
    opacity: 1;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.nav-pills .nav-link {
    font-size: 22px;
    font-weight: 600;
    color: #444444;
    border: 1px solid #9D9E9E;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.nav-pills .nav-link:hover,
.nav-pills .show>.nav-link:hover {
    color: #FEFEFE;
    background-color: #Ed3237;
    border: 1px solid #Ed3237;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #FEFEFE;
    background-color: #Ed3237;
    border: 1px solid #Ed3237;
}

.contact {
    background: #ffffff;
}

.contact .info-box {
    color: #444444;
    background: #ffffff;
    padding: 30px;
    height: 100%;
}

.contact .info-box {
    color: #444444;
    background: #EBFCF8;
    padding: 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #006CB5;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #006CB5;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    /* background: #fafbff; */
    padding: 30px 0px;
    height: 100%;
}

.contact .php-email-form .error-message {
    display: none;
    color: #FEFEFE;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #FEFEFE;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #FEFEFE;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 18px;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
    border-color: #006CB5;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact.contact-enquire button[type=submit] {
    background: #006CB5;
    border: 0;
    padding: 10px 30px;
    color: #FEFEFE;
    transition: 0.4s;
    border-radius: 4px;
}

.contact.contact-enquire button[type=submit]:hover {
    background: #005e9d;
}

.contact input::placeholder {
    color: #ababab;
    opacity: 1;
    /* Firefox */
}

.contact input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ababab;
}

.contact input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ababab;
}

.contact .form-select-lg {
    /* Microsoft Edge */
    color: #555555;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    color: #FEFEFE;
    background: #232d43;
    padding: 0 0 30px 0;
}

.footer .footer-newsletter {
    padding: 50px 0;
    background: #f6f9ff;
    border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #006CB5;
}

.footer .footer-newsletter form {
    margin-top: 20px;
    background: #FEFEFE;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 8px;
    width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #006CB5;
    color: #FEFEFE;
    transition: 0.3s;
    border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
    background: #ff0007;
}

.footer .footer-top {
    /* background: #006CB5 url(../img/footer-bg.png) no-repeat right top; */
    background: #006CB5;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 10px;
    color: #FEFEFE;
    font-size: 18px;
}

.footer .footer-top .footer-info address {
    line-height: 26px;
    font-size: 16px;
}

.footer .footer-top .footer-info address a {
    color: #fff;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FEFEFE;
    font-family: "Calibri", sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Calibri", sans-serif;
}

.footer .footer-top .social-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
    padding: 0 15px;
    border-left: 1px solid #e9e9e9;
}

.footer .footer-top .social-links a:hover {
    color: #FEFEFE;
}

.footer .footer-top h3 {
    font-weight: bold;
    color: #FEFEFE;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 10px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 18px;
    line-height: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: #FEFEFE;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

.footer .footer-top .footer-links ul a:hover {
    color: #C6C7C7;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    /* text-align: center; */
    padding-top: 30px;
    color: #FEFEFE;
    font-size: 14px;
}

.footer .terms_condition{
    text-align: end;
    padding-top: 30px;
    font-size: 14px;
}

.footer .terms_condition a{
    color: #FEFEFE;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #FEFEFE;
}


/* ==== marquee ===================== */

.marquee-container {
    width: 100%;
    height: 30px;
    overflow: hidden;
    /* line-height: 30px; */
    position: relative;
}

.marquee-container .marquee {
    width: 1000%;
    overflow: hidden;
}

.marquee-container .marquee span {
    color: #ffffff;
    font-size: 16px;
    padding: 0px 30px 20px;
    display: inline-block;
}

.marquee-container b {
    padding-left: 10px;
}

.marquee:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}


/* ======== cylinders-division  ================ */

.cylinders-division .heading {
    margin-bottom: 20px;
}

.cylinders-division .heading h3 {
    font-weight: 600;
    color: #006CB5;
}

.cylinders-division .content {
    margin-bottom: 20px;
}

.cylinders-division .content h5 {
    font-weight: 600;
    color: #006CB5;
}

.cylinders-division .header-line {
    margin: 6px 0px 3px;
    width: 160px;
    height: 2px;
    background-color: #Ed3237;
    border-radius: 15px;
}


/* ======== New style ================ */

.bg-light-pista,
.bg-welcome {
    background-color: #EBFCF8;
}

.dealer-button {
    padding-bottom: 20px;
}

.bg-gray {
    background-color: #f5f5f5;
}

.text-sds {
    color: #006CB5;
}

.btn-know-more {
    display: inline-block;
    background: #Ed3237;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 4px;
}

.btn-know-more:hover {
    color: #ffffff;
    background: #ff0007;
}

.topHeader {
    display: none;
}

.header.fixed-top.header-scrolled .topHeader {
    transition: all 0.5s;
    display: none;
}

.topHeader {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: block;
}

.form-select-lg {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1rem;
    font-size: 1.1rem;
    border-radius: .5rem;
}

.error {
    color: red;
    font-size: 14px;
    /* border: 1px solid red; */
}

.bg-notice {
    background-color: #006cb5;
}

.modal-dialog {
    text-align: center;
}

.inside-card {
    margin: 50px;
    color: #ffffff;
    padding: 50px;
}

.top-margin {
    margin-bottom: 250px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .top-margin {
        margin-bottom: 14px;
    }
    
    .blog_page{
        left: 35% !important;
    }
    
    #blog{
        margin-left: 25px !important;
    }
}

.distributor h4 {
    color: black;
}

.contact .distributor-box {
    color: #444444;
    background: #ffffff;
    padding: 30px;
    height: 100%;
}

.contact .distributor-box {
    color: #444444;
    background: #EBFCF8;
    padding: 30px;
}

.contact .distributor-box i {
    font-size: 18px;
    line-height: 0;
    color: #006CB5;
}

.contact .distributor-box h3 {
    font-size: 20px;
    color: #006CB5;
    font-weight: 700;
    margin: 0px 0 10px 0;
}

.contact .distributor-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

#pageloader {
    background: rgba( 255, 255, 255, 0.8);
    display: none;
    height: 300px;
    position: fixed;
    width: 300px;
    z-index: 9999;
}

#pageloader img {
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}


/*--- # our-legacy --------------*/

.our-legacy {
    background-color: #EBFCF8;
    padding: 20px;
}

.our-legacy .our-legacy-item {
    box-sizing: content-box;
    padding: 0px;
    margin: 40px 20px;
    background: #fff;
    min-height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    border-radius: 20px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
}

.our-legacy .our-legacy-item .our-legacy-img {
    width: 100%;
    border-radius: 20px;
    border: 0px solid #fff;
    margin: 0 auto;
}

.our-legacy .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.our-legacy .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}

.our-legacy .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

.our-legacy .swiper-slide {
    opacity: 1;
}

@media (max-width: 1199px) {
    .our-legacy .swiper-slide-active {
        opacity: 1;
    }
    .our-legacy .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .our-legacy .swiper-slide-next {
        opacity: 1;
        transform: scale(1);
    }
}

/*--- # our-partner --------------*/

.our-partner { 
    padding: 20px;
    margin-top:75px;
    margin-bottom: -75px;
}

.our-partner .our-legacy-item {
    /* box-sizing: content-box; */
    padding: 0px;
    margin: 40px 50px;
    /* background: #fff; */
    min-height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    border-radius: 20px;
    /* box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1); */
}

.our-partner .our-legacy-item .our-legacy-img {
    width: 100%;
    border-radius: 20px;
    border: 0px solid #fff;
    margin: 0 auto;
}

.our-partner .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.our-partner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}

.our-partner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

.our-partner .swiper-slide {
    opacity: 1;
}

.our-partner h2{
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #006CB5;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .our-partner .swiper-slide-active {
        opacity: 1;
    }
    .our-partner .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .our-partner .swiper-slide-next {
        opacity: 1;
        transform: scale(1);
    }
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .our-partner {
        margin-bottom: -54px;
    } 
}

.swiper-button-next {
    right: 0;
    background-color: #006cb5;
    height: 40px;
    width: 40px;
    border-radius: 4px;
}

.swiper-button-prev {
    left: 0;
    background-color: #006cb5;
    height: 40px;
    width: 40px;
    border-radius: 4px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #ffffff;
    font-size: 24px;
}

.gogas-tabs .nav-tabs {
    border-bottom: 0px;
    font-weight: 700;
}

.gogas-tabs .nav-tabs .nav-item.show .nav-link,
.gogas-tabs .nav-tabs .nav-link {
    color: #000000;
    background-color: #e4e4e4;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-right: 2px;
}

.gogas-tabs .nav-tabs .nav-item.show .nav-link,
.gogas-tabs .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #Ed3237;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.footer-info p {
    font-size: 22px;
    /* color: rgba(0, 166, 147, 0.842); */
    color: #00BFFF;
}

.footer-border {
    border-right: 2px solid #00BFFF;
}

.footer-padding {
    padding-left: 20px;
}

.megamenu a {
    color: #5C5858;
    /* border-bottom:2px solid #eee8e8 */
}

ul .active a {
    color: #f5c358 !important;
}


/* ---------- start floating form css ----------*/

.floating-contact-form .contact-icon {
    background: #ed3338;
    color: #fff !important;
    font-weight: bold;
    border-radius:5px;
    
    /* this css for bottom left horizontal button */
    /* position: fixed;
    bottom: 0px;
    left: 0px;
    cursor: pointer;
    padding: 16px;
    text-align: center;  
    margin-bottom: 16px; */

    /* this css for center left vertical button */
    text-align: center; 
    position: fixed;
    left: -70px;
    top: 45%;
    transform: rotate(-90deg);
    cursor: pointer;
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    padding: 7px 20px;
    font-size: 20px;
    z-index: 11;
}

.floating-contact-form .contact-icon i {
    font-size: 12px;
    font-weight: bold;
    color: #003049;
    /* transition: all 300ms ease; */
}

/* .floating-contact-form .contact-icon i:hover {
    transform: scale(1.1);
} */

.floating-contact-form .form-container {
    position: fixed;
    bottom: 60px;
    left: 50px;
    padding: 15px 36px;
    width: 480px;
    font-family: "Roboto", sans-serif;
    /* box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1); */
    border-radius: 24px;
    background-color: #fff;
    transform: translate(-100%, 0);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: all 500ms ease;
    z-index: 99999;
    max-height: 88vh; 
    overflow-y: auto; 
}

.floating-contact-form .form-container.active {
    transform: rotateZ(0deg);
    opacity: 1;
    pointer-events: auto;
}

.floating-contact-form * {
    box-sizing: border-box;
}

.floating-contact-form h3 {
    font-size: 22px;
    color: #003049;
    /* margin-bottom: 44px; */
    position: relative;
}

.floating-contact-form h3::after {
    content: "";
    height: 3px;
    width: 36px;
    background: #ef233c;
    position: absolute;
    left: 0;
    bottom: -4px;
}

.floating-contact-form form input[type="text"],
.floating-contact-form form textarea {
    width: 100%;
    padding: 3px 32px;
    padding-left: 40px;
    font-size: 14px;
    border: 1px solid rgba(0, 47, 73, 0.3);
    border-radius: 8px;
    color: #003049;
    margin-bottom: 0px;
}

.floating-contact-form form input:focus,
.floating-contact-form form textarea:focus {
    outline: none;
}

.floating-contact-form .field-container {
    position: relative;
}

.floating-contact-form .field-container label {
    position: absolute;
    font-size: 14px;
    top: 5px;
    left: 40px;
    color: #003049;
    transition: all 300ms ease;
    pointer-events: none;
}

.floating-contact-form .field-container label.active {
    display: none
}

.floating-contact-form .field-container i {
    position: absolute;
    top: 5px;
    left: 12px;
    color: rgba(0, 55, 85, 0.8);
}

.floating-contact-form form textarea {
    height: 150px;
    resize: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.floating-contact-form form input[type="submit"] {
    border: none;
    background: #003049;
    color: #fff;
    padding: 6px 22px;
    width: 33%;
    border-radius: 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 500ms ease;
}

.floating-contact-form form input[type="submit"]:hover {
    background: #00659b;
}

.floating-contact-form .field-container .select_lable {
    position: absolute;
    font-size: 14px;
    top: -28px;
    left: 0px;
    color: #003049;
    border-left: 8px solid #fff;
    border-right: 8px solid #fff;
    transition: all 300ms ease;
    pointer-events: none;
}

.floating-contact-form .field-container .select_lable_two {
    position: absolute;
    font-size: 14px;
    top: -28px;
    left: 0px;
    color: #003049;
    border-left: 8px solid #fff;
    border-right: 8px solid #fff;
    transition: all 300ms ease;
    pointer-events: none;
}

.floating-contact-form .field-container .form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    /* color: #212529; */
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.floating-contact-form .field-container select:focus {
    outline: none;
}

/* Position the close icon in the top-right corner */
.close-icon {
    cursor: pointer;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px; 
}

.close-icon i {
    font-size: 34px;
    color: #003049;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #blog{
        margin-left: 25px !important;
    }
    
    .blog_page{
        position: absolute;
        left: 35%;
        transform: translateX(-50%);
    }

    .blog_btn{
        top: 85% !important;
        left: 5% !important;
    }

    .blog_body{
        padding-bottom: 50px;
    }

    .top-bar {
        margin-bottom: 20px;
    }
    
    .close-icon i {
        font-size: 30px;
        color: #003049;
    }

    .floating-contact-form .form-container {
        /* width: 90%; */
        /* left: 5%; */
        padding: 10px;
        width: 100%;
        left: 0;
        transform: none;
    }

    .floating-contact-form h3 {
        font-size: 20px;
        /* margin-bottom: 30px; */
    }

    .floating-contact-form form input[type="text"],
    .floating-contact-form form select {
        font-size: 14px;
        padding: 10px;
        margin-bottom: 1px;
    }

    .floating-contact-form .field-container label {
        font-size: 14px;
        left: 10px;
    }

    .floating-contact-form form input[type="submit"] {
        padding: 10px 20px;
    }

    .floating-contact-form .contact-icon i {
        font-size: 12px;
    }

    
    .floating-contact-form .contact-icon {        
        font-size: 19px;
    }

    .floating-contact-form .field-container i {
        display: none; 
    }
}
/* ---------- floating form css  end----------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 1px solid #fff;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #4154f1;
    border-color: #4154f1;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap img {
    transition: 1s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(1, 41, 112, 0.2);
    border-left: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  
  .portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(1, 41, 112, 0.2);
    border-right: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: #012970;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: #4154f1;
    margin: 10px 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #5969f3;
  }
  
  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
  }
  
  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
.portfolio-details .portfolio-description p {
    padding: 0;
}

@media (max-width: 992px) {
    .our-legacy {
        margin-bottom: -60px;
    }
}


#blog{
 margin-left: 40px;
}

.blog-card .card-title {
    font-weight:500;
    line-height:1.2;
    color: #222222;
}

.blog-card .btn-outline-secondary:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}

.blog-card .btn-outline-secondary {
    color: #212529;
    border-color: #212529;
    border: 3px solid #212529;
}

/* .blog-card .btn {
    font-size: 1rem;
    border-radius: 24px;
    font-weight: 600;
} */

.blog-details-card .card-title {
    color: #222222;
}


.blog_page{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.blog_page p{
    text-align: center;
    padding-top: 10px;
}

.blog_btn{
    position: absolute;
    top: 75%;
    left: 35%;
}

.blog_body{
    /* padding-top: 50px; */
}



div#social-links {
    margin: 0 auto;
    
}
div#social-links ul li {
    display: inline-block;
}     

.latest-blog a{
    display: inline-block;
}
         
div#social-links ul li a .fa-whatsapp{
    padding: 5px;
    border: 1px solid #25D366;
    margin: 1px;
    font-size: 16px;
    color: #fff;
    background-color: #25D366;
}

div#social-links ul li a .fa-telegram{
    padding: 5px;
    border: 1px solid #0088cc;
    margin: 1px;
    font-size: 16px;
    color: #fff;
    background-color: #0088cc;
}

div#social-links ul li a .fa-linkedin{
    padding: 5px;
    border: 1px solid #0072b1;
    margin: 1px;
    font-size: 16px;
    color: #fff;
    background-color: #0072b1 ;
}

div#social-links ul li a .fa-facebook-square{
    padding: 5px;
    border: 1px solid #4267B2;
    margin: 1px;
    font-size: 16px;
    color: #fff;
    background-color: #4267B2;
}


.social-media{
    float: right;
    display: none;
}



.share_btn{
    float: right;
}

.share_btn button{
    background-color: #0d6efd;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: #0d6efd;
    border-radius: 5px;
    padding: 2px 5px;
}


.dropup .hide-toggle.dropdown-toggle::after {
    display: none !important;
}


.longtext{
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p img{
    padding:20px;
}

p span a{
    color: #006cb5;
}

.lpg-img{
    background-image: url("../images/287th.jpeg");
    width: 100%;
    display: inline-block; 
    background-size: 100%;
    background-repeat: no-repeat;
    height: 320px;
}

.popup-close{
    float: left;
}

.career-img{
    background-image: url("../images/HIRING.png");
    width: 100%;
    display: inline-block; 
    background-size: 100%;
    background-repeat: no-repeat;
    height: 320px;
}

#gallery img {
	object-fit: cover;
	height: 270px;
	width:350px;
	padding:20px;
}

#testimonial img {
	object-fit: cover;
	height: 270px;
	width:350px;
	padding:20px;
}

#gallery iframe {
	object-fit: cover;
	height: 335px;
	width:350px;
	padding:20px;
}

#gallery video {
	object-fit: cover;
	height: 335px;
	width:350px;
	padding:20px;
}

#esteemed img {
	object-fit: cover;
	height: auto;
	width:100%;
	padding:20px;
}

/* booknow */

.booknow #booknow-banner {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.booknow #booknow-banner .inner {
    padding-top: 36%;
    display: block;
    height: 0;
}


.booknow #booknow-banner {
    background-image: url("../images/booknow2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.youtube-profile{
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    width: 100%;
    border-radius: 10px;
}

.youtube-button .btn{
    border-radius: 19px;
    color: #006CB5;
    border: 1px solid #006CB5; 
    padding: 5px 30px;
    transition: 0.4s;
    margin: 20px 10px 30px 0;
}

.vertical-divider {
    border-left: 1px solid #ced4da;
    height: 100%; 
    padding-left: 50px;
    padding-right: 20px;
}

.youtube-padding{
    padding-left: 50px;
    padding-right: 20px;
}