/* @import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;400;500;600;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,600&family=Livvic:wght@300;400;500;600;700;900&display=swap');

body{
    font-family: 'Livvic', sans-serif;
}

body.show{
    overflow: hidden;
}

.secHeading{
    text-align: center;
    margin-bottom: 50px;
}

.secHeading span{
    color: #0071dc;
    font-size: 25px;
}

.secHeading h2{
    font-size: 40px;
    font-weight: 700;
    color: #252525;
}

.theme-dark .secHeading h2{
    color: #fff;
}

.myBtn{
    position: relative;
    background-color: #070b3b;
    border: none;
    color: #fff;
    padding: 15px 50px;
    margin-top: 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.myBtn:before{
    content: "";
    position: absolute;
    top: 0px;
    left: -125%;
    width: 120%;
    height: 102%;
    background: #0071dc;
    opacity: 0;
    transform: skewX(30deg);
    transition: all 0.5s;
    z-index: -1;
}

.myBtn:hover:before{
    left: -17px;
    opacity: 1;
}

.topBarWrap{
    background-color: #070b3b;
    padding: 10px 0;
}

.theme-dark .topBarWrap{
    background-color: #1d1d1d;
}

.topBarInner{
    display: flex;
    justify-content: space-between;
}

.topBarInner span{
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.topBarInner span img{
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 15px;
}

.topBarInner span a{
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.3s;
}

.topBarInner span a:hover{
    color: #0071dc;
}

.socialLinks{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.socialLinks a{
    display: block;
}

.socialLinks img{
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

#top_btn{
    position: fixed;
    bottom: 200px;
    right: 30px;
    background: #0071dc;
    border: none;
    padding: 12px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99;
}

.sticky #top_btn{
    opacity: 1;
    bottom: 30px;
}

#top_btn img{
    filter: brightness(0) invert(1);
    display: block;
    transform: rotate(-90deg);
    width: 20px;
    height: 20px;
}

.topBarWrap .rightBox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topBarWrap .rightBox h2{
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
}

.navWrapper{
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 99;
}

.sticky .navWrapper{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    animation: fadeUp 0.3s 1 linear;
}

.theme-dark .sticky .navWrapper{
    box-shadow: 0 0 15px rgba(0,0,0,.5);
}

.theme-dark .navWrapper{
    background-color: #252525;
}

.navBtnsWrap{
    display: flex;
    gap: 10px;
}

.navBtnsWrap a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0071dc;
    width: 55px;
    height: 38px;
    text-decoration: none;
    border-radius: 5px;
}

.navBtnsWrap a img{
    width: 20px;
    height: 20px;
}

.navbar{
    position: static;
}

.navbar-toggler{
    background-color: #0071dc;
    border: none;
    box-shadow: none !important;
    padding: 0;
    width: 55px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggler img{
    width: 25px;
    height: 20px;
}

@keyframes fadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
}

.navbar-brand img{
    width: 250px;
    height: 59px;
}

.navbar-brand .logoDark{
    display: block;
}

.navbar-brand .logoLight{
    display: none;
}

.theme-dark .navbar-brand .logoDark{
    display: none;
}

.theme-dark .navbar-brand .logoLight{
    display: block;
}

.nav-item{
    padding: 0 1rem;
}

.nav-link{
    position: relative;
    color: #252525;
    font-weight: 500;
    padding: 0 !important;
    transition: all 0.3s;
}

.theme-dark .nav-link{
    color: #fff;
}

.nav-link:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0071dc;
    opacity: 0;
    transition: all 0.7s;
}

.nav-link:hover,
.nav-link.active{
    color: #0071dc !important;
}

.nav-link:hover:before,
.nav-link.active:before{
    width: 100%;
    opacity: 1;
}

.heroSectionWrap{
    position: relative;
    overflow-x: clip;
    /* background: #f8f8f8 url(../contents/images/banner-shape-2.png) center center/cover no-repeat; */
    padding: 30px 0 100px;
    margin-top: 71px;
    background-color: #f8f8f8;
    z-index: 1;
}

.theme-dark .heroSectionWrap{
    background-color: #1d1d1d;
}

.heroSectionWrap:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../contents/images/banner-shape-2.png) center center/cover no-repeat;
    z-index: -1;
}

.theme-dark .heroSectionWrap:before{
    opacity: 0.05;
}

.heroSectionWrap .bannerImg{
    background: url(../contents/images/banner.png) center center/640px no-repeat;
    height: 600px;
    transform: rotate(-15deg);
}

.bannerImgBack{
    background: url(../contents/images/banneShape-2.png) center center/610px no-repeat;
    height: 600px;
    transform: rotate(15deg);
}

/* .heroSectionWrap .bannerImg:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../contents/images/banneShape-2.png) center center/contain no-repeat;
    z-index: -1;
} */

.heroSectionWrap h1{
    font-size: 60px;
    color: #252525;
    font-weight: 600;
    max-width: 680px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
}

.heroSectionWrap p{
    font-size: 17px;
    font-weight: 500;
    color: #252525;
}

.theme-dark .heroSectionWrap h1,
.theme-dark .heroSectionWrap p{
    color: #fff;
}

.homePageAboutWrap{
    padding: 80px 0;
}

.theme-dark .homePageAboutWrap{
    background-color: #252525;
}

.homePageAboutWrap .secHeading{
    text-align: left;
    margin-bottom: 30px;
}

.homePageAboutWrap p{
    font-size: 15px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 30px;
}

.theme-dark .homePageAboutWrap p{
    color: #fff;
}

.homePageAboutWrap ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.homePageAboutWrap ul li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.homePageAboutWrap ul li img{
    display: block;
    width: 20px;
    height: 20px;
    box-shadow: 4px 4px 15px #0072dc45;
    border-radius: 50%;
    margin-right: 15px;
}

.homePageAboutWrap ul li{
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.theme-dark .homePageAboutWrap ul li{
    color: #fff;
}

.aboutRight{
    position: relative;
}

.aboutImgWrap{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.aboutImgs{
    border-radius: 10px;
}

.aboutImg1{
    background: url(../contents/images/aboutImg-2.jpg) center center/cover no-repeat;
    height: 550px;
    width: 45%;
}

.aboutImg2{
    background: url(../contents/images/aboutImg-1.jpg) center center/cover no-repeat;
    height: 450px;
    width: 30%;
}

.aboutRight .boxes{
    position: absolute;
    left: 0;
    bottom: 80px;
    display: flex;
    gap: 20px;
    align-items: center;
    width: 295px;
    background: #fff;
    box-shadow: 6px 6px 50px 5px rgba(0,0,0,.12);
    padding: 12px;
    border-radius: 8px;
}

.aboutRight .boxes:last-child{
    left: 60px;
    bottom: -30px;
}

.theme-dark .aboutRight .boxes{
    background-color: #1d1d1d;
}

.aboutRight .boxes .icon{
    background: #0071dc;
    padding: 14px;
    border-radius: 10px;
}

.aboutRight .boxes .txt span{
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    display: block;
}

.theme-dark .aboutRight .boxes .txt span{
    color: #fff;
}

.servicesWrap{
    background: #0071dc05;
    padding: 80px 0;
}

.theme-dark .servicesWrap{
    background-color: #1d1d1d;
}

.servicesWrap .boxesWrap{
    position: relative;
    z-index: 1;
}

.servicesWrap .boxesWrap:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 150px;
    border-radius: 10px;
    background: #0072dc26;
    z-index: -1;
}

.servicesWrap .boxes{
    position: relative;
    box-shadow: 0 0 36px rgba(0,0,0,.08);
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    width: 85%;
    margin: 0 auto 50px;
    overflow: hidden;
    z-index: 1;
}

.theme-dark .servicesWrap .boxes{
    background-color: #252525;
}

.servicesWrap .boxes:after{
    content: "";
    position: absolute;
    bottom: -52px;
    right: -40px;
    width: 150px;
    height: 150px;
    box-shadow: 0 0 0 15px rgba(0 0 0 / 5%);
    border-radius: 50%;
    background-color: #0072dc4a;
    background-position: 36px 32px;
    background-size: 45px;
    background-repeat: no-repeat;
    transition: all 0.4s;
    z-index: -1;
}

.servicesWrap .boxes.box1:after{
    background-image: url(../contents/images/business-energy-colored.png);
}
.servicesWrap .boxes.box2:after{
    background-image: url(../contents/images/business-gas-colored.png);
}
.servicesWrap .boxes.box3:after{
    background-image: url(../contents/images/water-drop-colored.png);
}
.servicesWrap .boxes.box4:after{
    background-image: url(../contents/images/waste-colored.png);
}
.servicesWrap .boxes.box5:after{
    background-image: url(../contents/images/credit-card-colored.png);
}
.servicesWrap .boxes.box6:after{
    background-image: url(../contents/images/telephone-colored.png);
}
.servicesWrap .boxes.box7:after{
    background-image: url(../contents/images/solar-panels-colored.png);
}

.servicesWrap .boxes.box1:hover:after{
    background-image: url(../contents/images/business-energy-white.png);
}
.servicesWrap .boxes.box2:hover:after{
    background-image: url(../contents/images/business-gas-white.png);
}
.servicesWrap .boxes.box3:hover:after{
    background-image: url(../contents/images/water-drop-white.png);
}
.servicesWrap .boxes.box4:hover:after{
    background-image: url(../contents/images/waste-white.png);
}
.servicesWrap .boxes.box5:hover:after{
    background-image: url(../contents/images/credit-card-white.png);
}
.servicesWrap .boxes.box6:hover:after{
    background-image: url(../contents/images/telephone-white.png);
}
.servicesWrap .boxes.box7:hover:after{
    background-image: url(../contents/images/solar-panels-white.png);
}

.servicesWrap .boxes h2{
    color: #252525;
    font-weight: 600;
    font-size: 24px;
}

.servicesWrap .boxes p{
    color: #252525;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.theme-dark .servicesWrap .boxes h2,
.theme-dark .servicesWrap .boxes p{
    color: #fff;
}

.servicesWrap .boxes a{
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    width: fit-content;
}

.servicesWrap .boxes .icon{
    box-shadow: 4px 4px 20px rgba(0,0,0,.1);
    padding: 12px;
    border-radius: 50%;
}

.servicesWrap .boxes .icon img{
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(0.5);
    display: block;
    transition: all 0.4s;
}

.servicesWrap .boxes .txt span{
    color: #5b5b5b;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.4s;
}

.theme-dark .servicesWrap .boxes .txt span{
    color: #fff;
}

.servicesWrap .boxes:hover:after{
    background-color: #0071dc;
}

.servicesWrap .boxes:hover .icon img{
    filter: brightness(1) invert(0);
}

.servicesWrap .boxes:hover .txt span{
    color: #0071dc;
}

.servicesWrap .serviceBtn{
    display: block;
    margin: 0 auto;
}

.testimonialsWrap{
    padding: 80px 0;
}

.theme-dark .testimonialsWrap{
    background-color: #252525;
}

.testimonialsWrap .testimImg{
    background: url(../contents/images/testim_img.jpg) center center/cover no-repeat;
    height: 100%;
    width: 90%;
    border-radius: 10px;
}

.testimonialsWrap .secHeading{
    text-align: left;
    margin-bottom: 0;
}

.testimonialsWrap .quotesImg{
    overflow: hidden;
}

.testimonialsWrap .quotesImg img{
    width: 100px;
    margin-left: -20px;
}

.testimonialsWrap p{
    font-size: 18px;
    color: #000;
    font-style: italic;
    margin-bottom: 30px;
}

.theme-dark .testimonialsWrap p{
    color: #fff;
}

.testimonialsWrap .aboutCustomer{
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonialsWrap .aboutCustomer h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.theme-dark .testimonialsWrap .aboutCustomer h2{
    color: #fff;
}

.testimonialsWrap .aboutCustomer span{
    color: #0071dc;
    font-weight: 500;
}

.testimonialsWrap .customerImg img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonialsWrap .carousel-indicators{
    justify-content: flex-end;
    margin: 0;
}

.testimonialsWrap .carousel-indicators [data-bs-target]{
    height: 4px;
    background-color: #0071dc;
}

.whyChooseWrap{
    padding: 0 0 80px;
}

.theme-dark .whyChooseWrap{
    padding: 80px 0;
    background: #1d1d1d;
}

.theme-dark .accordion-button{
    background: #252525;
    box-shadow: 0 0 39px rgba(0 0 0 / 35%) !important;
}

.theme-dark .accordion-item{
    border: none;
}

.theme-dark .accordion-body{
    background: #252525;
    color: #fff;
    border-top: 1px solid #fff;
}

.theme-dark .accordion-button:not(.collapsed){
    background-color: #252525;
}

/* .accordion{
    max-width: 800px;
    margin: 0 auto;
} */

.accordion-item{
    margin: 8px 0px;
}

.accordion-item:last-child{
    margin-bottom: 0;
}

.accordion-button{
    background: #070b3b;
    color: #fff;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:after{
    background-image: url(./images/down-arrow-white.png);
}

.accordion-button:not(.collapsed)::after{
    background-image: url(./images/down-arrow-colored.png);
}

.accordion-button:not(.collapsed){
    background-color: #070b3b;
    color: #fff;
}

.innerBannerWrap{
    margin-top: 86px;
    background: linear-gradient(45deg, rgba(0 0 0 / 100%),rgba(0 0 0 / 50%)), url(./images/business_energy_bg.jpg) center -176px/cover no-repeat;
    padding: 100px 0;
}

.innerBannerWrap.waterService{
    background: linear-gradient(45deg, rgba(0 0 0 / 100%),rgba(0 0 0 / 50%)), url(./images/water_bg.jpg) center -176px/cover no-repeat;
}

.innerBannerWrap.businessGas{
    background: linear-gradient(45deg, rgba(0 0 0 / 100%),rgba(0 0 0 / 50%)), url(./images/business_gas_bg.jpg) center -176px/cover no-repeat;
}

.innerBannerWrap h1{
    color: #fff;
    font-weight: 600;
}

.innerBannerWrap ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.innerBannerWrap ul li{
    color: #0071dc;
    font-weight: 500;
    font-size: 18px;
}

.innerBannerWrap ul li:nth-child(2){
    width: 8px;
    height: 2px;
    background-color: #fff;
}

.innerBannerWrap ul li a{
    color: #fff;
    text-decoration: none;
}

.innerContent{
    padding: 80px 0;
}

.theme-dark .innerContent{
    background-color: #1d1d1d;
}

.innerContentFisrtImg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    height: 450px;
    margin-bottom: 30px;
}

.innerContentFisrtImg.businessEnergy{
    background-image: url(./images/business_energy_bg.jpg);
}

.innerContentFisrtImg.waterService{
    background-image: url(./images/water_bg.jpg);
}

.innerContentFisrtImg.businessGas{
    background-image: url(./images/business_gas_bg.jpg);
}

.innerContent h2{
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #252525;
}

.innerContent p{
    font-size: 15px;
    color: #444;
}

.innerContentSecondImgWrap{
    display: flex;
    gap: 30px;
}

.innerContentSecondImgWrap .contentImgs{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    height: 300px;
    margin-bottom: 30px;
}

.innerContentSecondImgWrap .contentImgs.businessEnergy1{
    background-image: url(./images/gallery_images/gallery_img_11.jpg);
    width: 100%;
}

.innerContentSecondImgWrap .contentImgs.businessEnergy2{
    background-image: url(./images/gallery_images/gallery_img_12.jpg);
    width: 100%;
}

.innerContentSecondImgWrap .contentImgs.waterService1{
    background-image: url(./images/gallery_images/gallery_img_10.jpg);
    width: 100%;
}

.innerContentSecondImgWrap .contentImgs.waterService2{
    background-image: url(./images/gallery_images/gallery_img_15.jpg);
    width: 100%;
}

.innerContentSecondImgWrap .contentImgs.businessGas1{
    background-image: url(./images/gallery_images/gallery_img_4.jpg);
    width: 100%;
}

.innerContentSecondImgWrap .contentImgs.businessGas2{
    background-image: url(./images/gallery_images/gallery_img_7.jpg);
    width: 100%;
}

.innerContent .rightCol h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.innerContent .rightCol ul{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 50px;
}

.innerContent .rightCol ul li a{
    display: inline-block;
    color: #444;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    background: url(./images/bullet-point.png) left center/18px no-repeat;
    padding-left: 30px;
}

.theme-dark .innerContent .rightCol ul li a,
.theme-dark .innerContent h2,
.theme-dark .innerContent p{
    color: #fff;
}

.contentGalleryImgs{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.contentGalleryImgs .cusCol{
    padding: 0 5px;
    width: 33.33333333%;
    margin-bottom: 10px;
}

.contentGalleryImgs .cusCol.cusWidth{
    width: 66.66666667%;
}

.contentGalleryImgs .galleryImgs{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 110px;
    border-radius: 15px;
}

.contentGalleryImgs .galleryImgs.galleryImg1{
    background-image: url(./images/gallery_images/gallery_img.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg2{
    background-image: url(./images/gallery_images/gallery_img_1.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg3{
    background-image: url(./images/gallery_images/gallery_img_3.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg4{
    background-image: url(./images/gallery_images/gallery_img_4.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg5{
    background-image: url(./images/gallery_images/gallery_img_5.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg6{
    background-image: url(./images/gallery_images/gallery_img_6.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg7{
    background-image: url(./images/gallery_images/gallery_img_7.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg8{
    background-image: url(./images/gallery_images/gallery_img_8.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg9{
    background-image: url(./images/gallery_images/gallery_img_9.jpg);
}

.contentGalleryImgs .galleryImgs.galleryImg10{
    background-image: url(./images/gallery_images/gallery_img_10.jpg);
}

.footerWrap{
    position: relative;
    padding: 80px 0;
    background: #070b3b;
    z-index: 1;
}

.theme-dark .footerWrap{
    background-color: #252525;
}

.footerWrap:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./images/banner-shape-2.png) center center/cover no-repeat;
    opacity: 0.03;
    z-index: -1;
}

.theme-dark .footerWrap:before{
    content: none;
}

.footerWrap h2{
    font-size: 25px;
    font-weight: 600;
    color: #0071dc;
}

.footerWrap h2 span{
    color: #fff;
}

.footerWrap p{
    color: rgba(255 255 255 / 80%);
    margin-bottom: 0;
}

.footerWrap ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footerWrap ul li a{
    background: url(images/chevron.png) center left/15px no-repeat;
    padding-left: 18px;
    color: rgba(255 255 255 / 80%);
    text-decoration: none;
    transition: all 0.3s;
}

.footerWrap ul li a:hover{
    color: #0071dc;
    padding-left: 30px;
}

.footerLogo {
    text-align: center;
}

.footerLogo h2{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.footerLogo h2 span{
    color: #0071dc;
}

.copyrightWrap{
    background-color: #0071dc;
    padding: 10px 0;
}

.theme-dark .copyrightWrap{
    background-color: #1d1d1d;
}

.copyrightWrap p{
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

.copyrightWrap ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: end;
}

.copyrightWrap ul li a{
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.3s;
}

.copyrightWrap ul li:first-child a{
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(255 255 255 / 50%);
}

.copyrightWrap ul li a:hover{
    color: #070b3b;
}

.theme-dark .copyrightWrap ul li a:hover{
    color: #0071dc;
}


@media screen and (min-width: 992px){
    .navBtnsWrap{
        display: none;
    }
    .logo-and-closeBtn{
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .navbar-collapse{
        position: absolute;
        top: 0;
        left: -310px;
        height: 100vh !important;
        width: 260px;
        display: block !important;
        background: #070b3b;
        transition: all 0.5s;
    }
    .navbar-collapse.open{
        left: 0;
    }
    .logo-and-closeBtn{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
    }
    .logo-and-closeBtn a{
        text-decoration: none;
        display: block;
    }
    .logo-and-closeBtn a img{
        width: 185px;
        height: 45px;
    }
    .logo-and-closeBtn button{
        border: none;
        background: #070b3b;
        border-radius: 50%;
        padding: 0;
        width: 45px;
        height: 45px;
        margin-right: -31px;
    }
    .logo-and-closeBtn button img{
        width: 18px;
        height: 18px;
    }
    .navbar-nav{
        margin-top: 20px;
    }
    .nav-item {
        padding: 10px 1rem;
    }
    .nav-link{
        display: inline-block;
        color: #fff;
    }
    .aboutRight{
        margin-bottom: 30px;
    }
    .homePageAboutWrap .row{
        flex-direction: column-reverse;
    }
    .aboutRight .boxes:last-child{
        display: none;
    }
    .testimonialsWrap .testimImg{
        height: 300px;
        margin-bottom: 30px;
    }
    .footerWrap h2{
        margin-top: 15px;
    }
}

@media screen and (max-width: 786px) {
    .topBarWrap .rightBox{
        display: none;
    }
    .bannerImgBack{
        display: none;
    }
    .heroSectionWrap{
        padding: 50px 0;
    }
    .aboutImg1{
        height: 390px;
    }
    .aboutImg2{
        height: 320px;
    }
    .aboutRight .boxes .icon{
        padding: 8px;
    }
    .aboutRight .boxes .txt span{
        font-size: 15px;
    }
    .innerBannerWrap{
        background-position: center center !important;
    }
}

@media screen and (max-width: 576px) {
    .topBarWrap{
        display: none;
    }
    .navWrapper{
        top: 0;
    }
    .navbar-brand img{
        width: 150px;
        height: 36px;
    }
    .heroSectionWrap{
        background: #070b3b;
        margin-top: 62px;
    }
    .heroSectionWrap:before{
        opacity: 0.05;
    }
    .heroSectionWrap h1{
        font-size: 35px;
        color: #fff;
    }
    .heroSectionWrap p{
        font-size: 15px;
        color: #fff;
    }
    .secHeading span{
        font-size: 18px;
    }
    .secHeading h2{
        font-size: 26px;
    }
    .aboutImg1{
        width: 100%;
        height: 300px;
    }
    .aboutImg2,
    .aboutRight .boxes{
        display: none;
    }
    .testimonialsWrap .aboutCustomer img{
        width: 50px;
        height: 50px;
    }
    .testimonialsWrap .aboutCustomer h2{
        font-size: 15px;
        margin-bottom: -5px;
    }
    .testimonialsWrap .aboutCustomer span{
        font-size: 12px;
    }
    .testimonialsWrap .testimImg{
        width: 100%;
    }
    .innerContentSecondImgWrap{
        display: none;
    }
}

@media screen and (max-width: 350px) {
    .servicesWrap .boxes{
        padding: 15px;
    }
    .servicesWrap .boxes:hover .txt span{
        color: #fff;
    }
}