@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
:root{
    --blue: #276a97;
    --blue2: #092c43;
    --yellow: #ffa600;
    --green: #408732;
    --bg: #eee;
    --bg2:#eff8ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Space Grotesk", sans-serif; */
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    font-family: "TikTok Sans", sans-serif;
    scroll-behavior: smooth;
}
/*** Back To Top Button Start ***/

#top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--blue2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer !important;
  transition: .4s;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0,0,0,.6);
}

#top.show {
  opacity: 1;
  visibility: visible;
}

#top::after {
  content: "\f062";
  font-family: FontAwesome;
  font-size: 1.5em;
  color: #fff;
  position: absolute;
}
  #top:hover {
    cursor: pointer;
    background-color: var(--blue);
  }
  #top:active {
    background-color: var(--blue);
  }

.progress-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  transform: rotate(-90deg); /* progress starts from top */
}
#top:hover .progress-ring__circle{
    stroke: var(--blue2);
  }
.progress-ring__circle {
  stroke: var(--blue);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s;
}

/*** Back To Top Button End ***/

#header{
    backdrop-filter: blur(8px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1.5s ease forwards;
}
#header.fixed ul li a{
    color: #3a3a3a;
}
#header.fixed ul li a:hover{
    color: var(--black);
}
#header.fixed .submenu-toggle i{
    color: #3a3a3a;
}
#header.fixed ul li a:hover i{
    color: var(--black);
}
#header.fixed #navMenu li:hover .submenu-toggle i{
    transform: rotate(180deg);
    color: #3a3a3a;
}

#topbar{
    background-color: var(--blue);

}
#topbar .t-left span{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    transition: .3s ease-in-out;
}
#topbar .t-left i{
    color: var(--white);
}
#topbar ul{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}
#topbar ul li{
    list-style: none;
}
#topbar ul li a{
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    color: #6e7673;
    transition: .4s ease-in-out;
}
#topbar ul li a:hover{
    color: var(--yellow);
}
#topbar .t-left a:hover span{
    text-decoration: underline;
}

#banner{
    position: relative;
}
#banner:before {
    width: 100%;
    height: 62%;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: linear-gradient(rgba(62, 62, 53, 0) 0%, rgb(0 0 0) 100%);
    z-index: 1;
}
#banner img{
    height: 860px;
    object-fit: cover;
}
#banner .ban-text{
    position: absolute;
    left: 300px;
    bottom: 100px;
    z-index: 2;
    color: var(--white);
}
#banner .ban-text p{
    font-size: 30px;
    font-weight: 500;
    text-shadow: 2px 2px 10px #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
#banner .ban-text h1{
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}
a.para-link {
    display: inline-block;
    background: #ffffff;
    color: #00599c;
    font-weight: 600;
    text-transform: capitalize;
    padding: 16px 30px;
    text-decoration: none !important;
    border-radius: 8px;
}
#para{
    padding: 150px 0;
    background-image: url(./img/pr-bg2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
#para:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#para .para-text{
    position: relative;
    z-index: 2;
}
#para h2{
    font-size: 33px;
    color: #fff;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 55px;
    text-shadow: 2px 2px 15px #000000;
    letter-spacing: 0.5px;
}

#why{
    position: relative;
    z-index: 2;
    margin-top: -100px;
}
#why .why-wrap{
    background-color: var(--white);
    border-right: 1px solid #DEDEDE;
    padding: 30px 40px;
    text-align: center;
}
#why .why-wrap p{
    margin-bottom: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
}
#why .why-wrap h3{
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}
#why .why-wrap:last-of-type{
    border-right: none;
}
#why .why-wrapper{
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.3);
}
#why .why-icon img{
    filter: brightness(0) saturate(100%) invert(46%) sepia(8%) saturate(3992%) hue-rotate(162deg) brightness(88%) contrast(83%);
}


/********* About Section Start *********/

#about h3{
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: var(--blue);
}
#about p{
    font-size: 15px;
    line-height: 1.7;
    color: #6e6e6e;
}
.small-head{
    position: relative;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    margin-left: 20px;
}
.small-head:after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: -20px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: var(--blue);
}
#about .abtn a{
    color: #5f5f5f;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#about .abtn a:hover{
    color: var(--blue);
}
#about .abtn a i{
    font-size: 24px;
    color: var(--red);
    transition: .4s ease-in-out;
}
#about .a-wrap{
    border: 3px solid var(--blue);
    background-color: var(--white);
}
#about .a-wrap .a-icon i{
    margin-top: -100px;
    font-size: 50px;
    padding: 25px;
    background-color: var(--white);
}
#about .a-wrap .a-icon{
    margin-top: -70px;

}
#about .a-wrap h4{
    font-weight: 700;
    font-size: 20px;
    color: var(--blue);
}
#about .a-wrap p{
    font-size: 15px;
}
#about img{
    border-radius: 0 50px 50px 0;
    border-right: 15px solid var(--blue);
    border-bottom: 15px solid var(--blue);
}
/********* About Section End *********/

/********* Products Section Start *********/

.products{
    margin-top: 20px;
}

h5.pr-title {
    font-weight: 600;
}

p.pr-para3 {
    font-weight: 700;
    font-size: 30px;
    color: #00599c;
    margin-bottom: 35px;
}

a.pr-link {
    display: inline-block;
    background: #00599c;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    padding: 16px 35px;
    text-decoration: none !important;
    border-radius: 8px;
    margin-top: 18px;
}

a.pr-link i{
    font-size: 14px;
    margin-left: 10px;
}

a.pr-link:hover{
    text-decoration: none;
     color: #ffffff;
}

.products .container-fluid {
    padding: 0 15px 0 230px !important;
    overflow-x: hidden;
}

.pr-box {
    min-height: 300px;
    margin: 20px;
    height: 100%;
    background: #ebeced;
    /* background: linear-gradient(0deg, #02002400 0%, #E6E7E8 100%); */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

h5.pr-head {
    padding: 21px 21px 25px 21px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.pr-img {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px !important;
    overflow: hidden;
}

.pr-img img {
    height: 100%;
}

p.pr-para2 {
    margin-bottom: 0;
    font-size: 16px;
    padding: 21px;
}

.products .container-fluid .owl-carousel .owl-item img {
    display: block;
    width: 55%;
    margin: 0 auto;
}

.pr-wid{
    width: 50% !important;
}

.pr-top {
    margin-top: 19px !important;
}

.pro-bg {
    background: url(./img/pr-bg2.png) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 325px;
    margin-top: -252px;
}
.pr-rt{
    text-align: right;
}

.products .container-fluid .owl-stage-outer { margin: -15px; padding: 15px; }

.products .container-fluid .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  width: 100%;
  display: flex !important;
  justify-content: center;
}

.slick-dots li button:before {
  font-size: 0; /* hide default icon */
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #bbb;
}

.slick-dots li.slick-active button {
  background: var(--blue); /* active dot color */
}

/********* Products Section End *********/

/********* whyus Section Start *********/

#whyus{
    background-color: var(--blue2);
    position: relative;
    overflow: hidden;
}
#whyus .why-bg{
    width: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
#whyus .why-text{
    position: relative;
    z-index: 3;
}
#whyus .why-bg img{
    width: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: brightness(0) saturate(100%) invert(31%) sepia(79%) saturate(451%) hue-rotate(160deg) brightness(102%) contrast(90%);
}
#whyus .head{
    color: var(--white);
}
#whyus .sub-head{
    color: var(--white);
}
#whyus .small-head{
    color: var(--white);
}
#whyus .whyus-icon-wrap{
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: flex;
    background-color: transparent;
    border: 2px solid var(--white);
}
#whyus .whyus-icon-wrap i{
    color: var(--white);
    font-size: 35px;
}
#whyus .whyus-text h4{
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
#whyus .whyus-text p{
    font-size: 14.5px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}
#whyus .whyus-wrap{
    padding: 30px;
}



/********* whyus Section End *********/

/********* Industry Section Start *********/

#industry .indu-wrap{
    margin: 15px 0;
    overflow: hidden;
    height: 300px;
    border: 1px solid #d2d2d2;
    position: relative;
}
#industry .indu-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}
#industry .indu-text{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue);
    width: 100%;
    text-align: center;
    z-index: 2;
    transition: .4s ease-in-out;
}

#industry .indu-text h3{
    padding: 10px;
    font-weight: 600;
    color: var(--white);
    font-size: 21px;
    letter-spacing: 0.1px;
    margin-bottom: 0;
    text-transform: uppercase;
}
#industry .indu-wrap:hover img{
    transform: scale(1.1);
}
#industry .indu-wrap:hover .indu-text{
    background-color: var(--black);
}

/********* Industry Section End *********/

/********* CSR Section Start *********/

a.su-link2 {
    display: inline-block;
    text-decoration: none !important;
}


.su-flex {
    display: flex;
}

.su-img {
    width: 50%;
}

.su-txt {
    width: 50%;
    background: #00599c;
    padding: 25px 45px;
}

h5.su-cap {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 36px;
}

a.su-link {
    color: #fff;
    display: inline-block;
    margin-top: 4px;
    border-bottom: 1px solid #fff;
    font-weight: 500;
    text-decoration: none;
}

a.su-link:hover{
    
    color: #fff;
}

.su-btn2 {
    width: 30px;
    /* background: #fff; */
    height: 30px;
    border: 2px solid #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    margin-left: 12px;
}

a.su-link2 {
    display: inline-block;
   
}

.su-btn {
    display: flex;
    margin-top: 145px;
}

.su-color {
    background-color: #202e38 !important;
}

.su-1 {
    background: #202e38;
    padding: 66px 50px;
}

h5.su-head {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
}

h5.su-head2 {
    font-size: 28px;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 27px;
    line-height: 44px;
    /* padding-right: 89px; */
}

.su-btn.su-top {
    margin-top: -7px !important;
}

.su-top2 {
    line-height: 25px !important;
}

.su-2 {
    
    margin-top: 42px;
}

.su-img2 {
    background: url(./img/su-1.png) no-repeat;
    /* min-height: 296px; */
    background-size: cover;
    height: 277px;
}

.su-img3{
    background: url(./img/su-2.png) no-repeat;
    height: 277px;
    background-size: cover;
}

h5.su-title a {
    color: #fff;
    font-weight: 600;
    color: 30px;
    font-size: 25px;
    padding: 40px;
    display: inline-block;
    line-height: 34px;
    text-shadow: 2px 2px 4px #000000;
    text-decoration: none;
}

.su-full {
    margin-top: 25px;
}
.su-5 {
    margin-top: 25px;
}
.sustain-bg {
    background: url(./img/su-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 580px;
    margin-top: 60px;
}

h5.su-header {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    padding-right: 277px;
    line-height: 52px;
    margin-left: 319px;
}

.sustain {
    margin-top: -158px;
}

.su-1{
    position: relative;
}

.su-1::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -55px;
    width: 0;
    height: 0;
    /* border-bottom: 180px solid #074982; */
    border-bottom: 156px solid #293945;
    border-left: 55px solid transparent;
    z-index: 15;
}

.s-video {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 57px;
    margin-top: 4px;
}

.s-video i{
    color: #fff;
}
.su-img img{
    width: 100%;
    height: 277px;
}

h5.sust-head {
    color: #fff;
    font-weight: 400;
    line-height: 29px;
    margin-top: 4px;
    margin-left: 24px;
    border-left: 1px solid #bebebe;
    padding-left: 20px;
}

.s-flex {
    display: flex;
    margin-left: 24%;
    margin-top: 18px;
    position: relative;
}

.s-flex::before {
    content: "";
    width: 380px;
    height: 3px;
    background-color: #ffffff;
    bottom: -20px;
    left: 0;
    position: absolute;
}

.su-txt3 {
    /* margin-top: 30px; */
    padding-top: 50px;
}

.su-height {
    margin-top: 122px !important;
}

/********* CSR Section End *********/

/********* Clients Section Start *********/

#clients{
    border-top: 2px solid var(--blue);
}
#clients .cl-img{
    padding: 10px;
    width: 100%;
}
#clients .cl-img img{
    width: 100%;
    height: 100%;
}

/********* Clients Section End *********/


/********* Contact Section Start *********/


/********* Contact Section End *********/

/********* Footer Section Start *********/

#footer{
    position: relative;
    z-index: 1;
    /* background-color: var(--primary); */
    background-image: url(./img/footer.webp);
    /* background-color: var(--blue2); */
    background-size: cover;
    background-position: center;
}
/* #footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
} */
#footer p{
    opacity: 0.7;
    color: var(--white);
    font-size: 15px;
}
#footer h4{
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
}
#footer .men  a{
    color: var(--white);
    opacity: 0.8;
    font-weight: 400;
    font-size: 16px;
    padding: 0;

    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
    flex-direction: column;
    text-align: left;
    align-items: start;
    gap: 5px;
}
#footer .men a:hover{
    opacity: 1;
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 7px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 20px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    justify-content: end;
    display: flex;
}
#footer .contacts i{
    margin-right: 15px;
    opacity: 0.7;
    color: var(--white);
    font-size: 20px;
}
#footer .contacts li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}
#footer .f-about{
    font-size: 15px;
    opacity: 0.7;
}
#footer h5{
    opacity: 0.7;
}

/********* Footer Section End *********/

/********* Inner-banner Section Start *********/

#inner-page-banner{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
}
#inner-page-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#inner-page-banner .in-ban-text{
    position: absolute;
    top: 50%;
    left: 250px;
    color: var(--white);
    z-index: 2;
}
#inner-page-banner .in-ban-text h1{
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 1px;
}
#inner-page-banner .in-ban-text a{
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: .4s ease-in-out;
}
#inner-page-banner .in-ban-text a:hover{
    color: var(--blue);
}
#inner-page-banner .bread{
    display: flex;
    align-items: center;
    gap: 10px;
}
#inner-page-banner .in-ban-text span{
    color: #c3c3c3;
    font-size: 17px;
    font-weight: 400;
}

/********* Inner-banner Section End *********/


/********* Inner-Overview Section Start *********/

#in-over h2{
    font-size: 23px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.4;
}
#in-over p{
    font-size: 17px;
    font-weight: 400;
    color: #393939;
    margin-bottom: 20px;
    line-height: 1.45;
}
#in-over p span{
    font-weight: 600;
    color: var(--black);
}
#in-over img{
    border-radius: 25px;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.3);
}

/********* Inner-Overview Section End *********/

/********* Inner-Overview Section End *********/

#mis-vis h2{
    font-size: 32px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}
#mis-vis p{
    font-size: 20px;
    color: #373737;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}
#mis-vis img{
    border-radius: 25px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}


/********* Inner-Overview Section End *********/

/********* Inner-Certificate Section Start *********/

#in-cert h2{
    font-size: 32px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 15px;
}
#in-cert p{
    font-size: 20px;
    color: #373737;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}
#in-cert p span{
    font-weight: 700;
}
#in-cert .cert-wrap{
    padding: 20px;
    background-color: var(--white);
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    border-radius: 10px;
}
#in-cert .cert-wrap h5{
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
}
#in-cert .cert-wrap i{
    font-size: 28px;
    color: var(--blue);
}
#in-cert .cert-wrap h5 span{
    font-weight: 700;
}
#in-cert .sector-wrap{
    padding: 20px 15px;
    margin: 15px 0;
    background-color: var(--white);
    border: 2px solid var(--blue);
    border-radius: 10px;
}
#in-cert .sector-wrap h5{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17.5px;
    text-transform: capitalize;
}
#in-cert .sector-wrap img{
    height: 65px;
    margin-bottom: 20px;
}
#in-cert .commit h4{
    font-size: 27px;
    font-weight: 6vs00;
    color: var(--blue);
    color: var(--blue);
}
#in-cert .commit-wrap h5{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}
#in-cert .commit-wrap ul li{
    list-style: none;
    font-size: 20px;
    margin: 7px 0;
}
#in-cert .commit-wrap ul li i{
    color: var(--blue);
    margin-right: 5px;
}
#in-cert .met-wrap{
    padding: 20px;
    background-color: var(--white);
    border: 2px solid var(--blue);
    border-radius: 20px;
    margin: 15px 0;
}
#in-cert .met-wrap h5{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}
#in-cert .met-wrap p{
    color: #585858;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
}

/********* Inner-Certificate Section End *********/


/********* Inner Facilities Page Start *********/

#inner-face .fac-menu{
    position: sticky;
    top: 110px;
}
#inner-face .fac-menu ul li{
    list-style: none;
    margin-bottom: 10px;
}
#inner-face .fac-menu ul li a{
    padding: 12px 15px;
    background-color: var(--bg);
    display: block;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 17px;
    transition: .4s ease-in-out;
}
#inner-face .fac-menu ul li a.active{
    background-color: var(--blue);
    color: var(--white);
}
#inner-face .fac-menu ul li a:hover{
    background-color: var(--blue2);
    color: var(--white);
}
#inner-face .fac-det .fac-text p{
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 30px;
}
#inner-face .fac-det .fac-text p:last-of-type{
    margin-bottom: 0;
}

#inner-face .fac-det .fac-img{
    border: 1px solid var(--blue);
    border-radius: 15px;
    overflow: hidden;
}
#inner-face .fac-det ul{
    margin-bottom: 30px;
    padding-left: 0;
}
#inner-face .fac-det span{
    font-size: 19px;
    display: block;
    color: var(--blue);
}
#inner-face .fac-det li{
    list-style: none;
    font-size: 19px;
    margin: 5px 0;
}
#inner-face .fac-det li i{
    color: var(--blue);
}
#inner-face .fac-det ol{
    margin-top: 5px;
}

/********* Inner Facilities Page End *********/