@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://site-assets.fontawesome.com/releases/v6.1.1/css/all.css");


body{
    font-family: "Poppins", sans-serif;
}

:root{
    --pri-c:#ef6d30;
    --pri-hover:#e1662ce8;
    --sec-c:#ffecc9 ;
    --pri-gra:linear-gradient(260deg, rgb(244, 137, 87) 0%, rgba(239,109,48,1)40%);
}


.navbar{
    background-color: var(--pri-c);
}

.nav-link{
    color:white;
    font-size: 15px;
    font-weight: 600;
}
.nav-item{
    padding: 0 7px;
}

.nav-link:hover{
    color:rgb(241, 240, 240);
}
.nav-link:active{
    color:rgb(241, 240, 240);
}
.nav-link:focus{
    color:rgb(241, 240, 240);
}
.navbar-nav .dropdown-menu{
    background-color: var(--pri-hover);
    border-color: transparent;
    border-top: 3px solid var(--sec-c);
}

.nav-item:hover .dropdown-menu{
    display: block;
}

.navbar-toggler:focus{
    box-shadow: none;
    transition: 0.3s;
  }
  .navbar-toggler:focus .navbar-toggler-icon{
  color:white;
  transition: 0.3s;
  }
  
  .dropdown-menu .nav-link{
    padding: 8px 14px;
    text-transform: uppercase;
  }
  .dropdown-menu .nav-link:hover{
    background-color:var(--pri-c);
}
.border-l-top {
    border-top: 2px solid #ffffff69 ;
    margin-top: 8px;
}

/* hamburger-menu */

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#ffffff;
  stroke-width:5.5;
  stroke-linecap:round;
}


.ham7 .top {
    stroke-dasharray: 40 82;
  }
  .ham7 .middle {
    stroke-dasharray: 40 111;
  }
  .ham7 .bottom {
    stroke-dasharray: 40 161;
  }
  .ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
  }
  .ham7.active .middle {
    stroke-dashoffset: 23px;
  }
  .ham7.active .bottom {
    stroke-dashoffset: -83px;
  }


  /* slider */

  
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container .left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
  z-index: 11;
    opacity: 0.8;
}

.slider-container .left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.slider-container .left-slide h1 {
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: -30px;
}
.slider-container .right-slide {
  height: 100% !important;
  position: absolute !important;
  left: 0% !important;
  width: 100% !important;
  transition: transform 0.5s ease-in-out;
}

.slider-container .right-slide > div {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  height: 100%;
  width: 100%;
}

.slider-container button {
  border: none;
  background-color: #fff;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  width: 40px !important;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container .action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-radius: 4px 0 0 4px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-radius: 0 4px 4px 0;
}

.slider-container .down-button:hover,
.slider-container .up-button:hover {
  background-color: #f0f0f0;
}


/* swiper */

.swiper img{
  width:100%;
}

.swiper-button-next,.swiper-button-prev{
  color: black !important;
  background-color: #cdcccc9e;
  /* border-radius: 50%; */
  padding: 8px 22px !important;
}
.swiper-button-next:after{

  content: " " !important;
}
.swiper-button-prev:after{
  content: " " !important;
}

  .swiper-button-next{
    /* background-image: url(./down-arrow\ \(1\).png); */
    background-size:100%;
    width:40px !important;
    height:40px !important;
    bottom:3%;
    right: 3%;
    border:2px solid white !important;
    /* border-radius:50%; */
  }
  .swiper-button-prev{
    /* background-image: url(./down-arrow\ \(1\).png); */
    transform: rotate(180deg);
    background-size:100%;
    width:40px !important;
    height:40px !important;
    bottom:3%;
    right:10% !important;
    border:2px solid white !important;
    /* border-radius:50%; */
  }


  section{
    padding:4.5rem 0;
  }

  h1{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4em;
  }

  p{
    text-align: justify;
    padding-bottom: 1em;
  }

  /* first-section */

  .first-section{
    background:var(--pri-c);
    padding-bottom:0;
  }

  .facility-box{
    background-color: var(--pri-hover);
    padding: 9px;
    text-align: center;
    border: 2px solid white;
    border-radius:6px;
  }
  .first-section .col-4:hover .facility-box{
    transform: translateY(-5px);
  }
  .facility-box h6{
    color: white;
    font-size: 53px;
  }
  .facility-box h5{
    color: white;
    font-size: 18px;
    margin-top: 5mm;
    letter-spacing: -0.7px;
  }
   .first-section a{
    text-decoration: none;
    background: var(--pri-hover);
    padding: 6px 7px;
    color: white;
    border-top: 2px solid white;
  }

   .first-section a:hover{
    color: var(--pri-c);
    background-color:white;
    transition: 0.3s;
  }



  .waves {
    position:relative;
    width: 100%;
    height: 100px;
    /* margin-top: -47px;  */
    max-height:150px;
  }
  
  .content {
    position:relative;
    /* height:20vh; */
    text-align:center;
    background-color: white;
  }
  
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      /* height:30vh; */
    }
    h1 {
      font-size:24px;
    }
  }



    

  /* second-section */

  
/*---------------------------------------
   gallery section              
-----------------------------------------*/
.second-section {
  position: relative;
  background: url(../images/Home/gallery-bg.jpg) no-repeat top;
  background-size: cover;
  padding:  0;
  border-bottom: 17px solid var(--sec-c);
}
.second-section .galleryImg img {
  height: 189px;
  object-fit: cover;
}


.portfolio-overley {
  z-index: 1000;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.second-section .col-sm-6{
  padding: 0;
}

.galleryImg img {
  width: 100%;
}

.second-section .galleryImg:hover .portfolio-overley,
.galley_inner .galleryImg:hover .portfolio-overley {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.second-section .content,
.galley_inner .content {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.second-section .content .image-link,
.galley_inner .content .image-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #ffffff;
  /* line-height: 50px; */
  /* background: #85d7b4; */
  text-decoration: none;
  display: block;
  font-size: 18px;
  z-index: 1;
  text-align: center;
  margin-top: -38px;
}
.gallery_box {
  display: table;
  height: 100%;
}

.gallery_left {
  display: table-cell;
  vertical-align: middle;
}

.galleryImg {
  /* margin: 15px 0; */
  position: relative;
}

.second-section .col-lg-4:nth-child(2) .galleryImg+.galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-4:nth-child(4) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-4:nth-child(5) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-4:nth-child(6) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-3:nth-child(5) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-3:nth-child(6) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-3:nth-child(7) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-3:nth-child(8) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-6:nth-child(3) .galleryImg {
  margin-top: 30px;
}

.gallery_style1 .col-lg-6:nth-child(4) .galleryImg {
  margin-top: 30px;
}

.serImg {
  margin-bottom: 30px;
}

.galley_inner .row>div {
  margin: 15px 0;
}

.galley_inner {
  text-align: center;
}




/* third-section */

.third-section{
  background-color:white !important;
  border-bottom: 17px solid var(--sec-c);
}

.third-section img{
  height: 326px;
  width: 100%;
  object-fit: contain;
}

.third-section p{
  text-align: center;
}

.third-section h4{
  text-transform: capitalize;
  border-bottom: 2px solid var(--pri-c);
  margin-bottom: 9mm;
  margin-top: 4mm;
}

.mySwiper1 p{
  padding:0;
  font-size:20px;
  font-weight: 300;
  text-align: unset;
}

.third-section h6{
  line-height: 24px;
  margin-bottom: 12mm;
}

.third-section a{
text-decoration: none;
background-color: var(--pri-c);
color:white;
padding:8px 12px;
border-radius: 5px;
}

.third-section .swiper-pagination{
  bottom:-40px !important;
}

.third-section .swiper-pagination-bullet-active{
  background: grey;
}

.third-section .swiper{
  overflow: unset;
}



/* fourth-section */

.fourth-section{
  padding: 6rem 0;
}





/*---------------------------------------------------- */
/*service area*/
/*----------------------------------------------------*/
.nio-eig-service {
  padding: 60px 0px;
}
.nio-eig-service .nio-eig-section-title {
  margin: 0 auto;
  max-width: 680px;
  text-align:justify;
}

.nio-eig-service-tab-btn {
  padding: 35px 35px 20px;
  box-shadow: 0px 0px 24px 0px rgb(0 27 54 / 13%);
}
.nio-eig-service-tab-btn .nav-tabs .nav-item.show .nav-link,
.nio-eig-service-tab-btn .nav-tabs .nav-link.active,
.nio-eig-service-tab-btn .nav-tabs .nav-link,
.nio-eig-service-tab-btn .nav-tabs {
  padding: 0;
  border: none;
}
.nio-eig-service-tab-btn .nav-tabs .nav-item {
  padding:0;
  margin-bottom: inherit;
}
.nio-eig-service-tab-btn .nav {
  display: inherit;
}
.nio-eig-service-tab-btn .nav-tabs .nav-link,
.nio-eig-service-tab-btn .nav-tabs .nav-link.active {
  color: #191728;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins";
  padding: 20px 0px 20px 30px;
}
.nio-eig-service-tab-btn .nav-tabs .nav-link:before {
  left: 0;
  bottom: 0;
  top: 5px;
  width: 3px;
  content: "";
  height: 0px;
  position: absolute;
  background-color: var(--pri-c);
  transition: 0.4s all ease-in-out;
}
.nio-eig-service-tab-btn .nav-tabs {
  position: relative;
}
.nio-eig-service-tab-btn .nav-tabs:before {
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: #f8f8f8;
}
.nio-eig-service-tab-btn .nav-tabs .nav-link.active {
  color: var(--pri-c);
}
.nio-eig-service-tab-btn .nav-tabs .nav-link.active:before {
  height: 50px;
}

.nio-eig-service-tab-img-text {
  padding: 40px;
  background-color:#e5e4e473;
  transform: translateX(40px);
  transition: 0.5s all ease-in-out;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-img {
  margin-right: 40px;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text {
  padding-top: 20px;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-icon {
  margin-bottom: 5px;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-icon svg {
  height: 60px;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text {
  max-width: 430px;
  display: inline-block;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text h3 {
  color: #191728;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.308;
  padding-bottom: 18px;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text p {
  padding-bottom: 0;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text a {
  color: #fff;
  height: 45px;
  width: 130px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  line-height: 45px;
  text-align: center;
  border-radius: 8px;
  font-family: "Poppins";
  display: inline-block;
  background: var(--pri-c) ;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text a:hover {
  background-size:200%;
}
.nio-eig-service-tab-img-text .nio-eig-service-tab-text .nio-eig-service-text a:hover span {
  animation: toLeftFromRight 0.3s forwards;
}

.nio-eig-service-tab-content .active.show .nio-eig-service-tab-img-text {
  transform: translateX(0);
}



/* fifth-section */

.fifth-section{
  background: var(--pri-gra);
}

.fifth-section p{
  color:white;
}






/* footer */

.footer{
  background-image: url(./image/home.jpg);
  background-size: cover;
  position:relative;
}
.footer-overlay{
  background-color: #ffffffdb;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.footer .container{
  position:relative;
  z-index:3;
}
.footer h6{
  margin-bottom: 5mm;
}



.page-banner img{
  height:250px;
  object-fit: cover;
  width:100%
}

.page-banner span{
  text-decoration: underline;
    color: black;
    font-size: 27px;
    text-transform: uppercase;
}

.page-banner svg{
  fill:var(--pri-c);
}

.page-banner h2{
  position: absolute;
  font-weight: bold;
  top: 50%;
  left: 29%;
  transform: translate(-50%, -50%);
  color: #5e5e5e;
  text-transform: uppercase;
}

.sub-page{
  margin:0;
  padding:4rem 0;
}














/* small ----------------------------------------------------------------------- -------------------------------------------------------------------------*/

@media screen and (max-width: 680px) {
  .page-banner h2{
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #5e5e5e;
  }
  
    .slider-container {
        height:332px
    }
    .slider-container .left-slide{
        opacity: 0;
    }

    .slider-container .action-buttons button {
        position: absolute;
        left: 86%;
        top: 80%;
        z-index: 100;
    }
    .swiper-button-next, .swiper-button-prev{
      display:none;
    }
    section{
      padding:1.5rem 0;
    }
    .fourth-section{
      padding: 2rem 0;
    }
    h1{
      font-weight: 600;
    font-size: 28px;
    line-height: unset;
    }
    .facility-box h6{
      font-size: 38px;
    }
}



/* large --------------------------------------------------------------------- ---------------------------------------------------------------------------*/

@media screen and (min-width: 991px) {

.navbar-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.navbar-nav .dropdown-menu{
    background-color: var(--pri-c);
    border-color: transparent;
    border-top: 5px solid var(--sec-c);
    border-radius: 0;
    width: 198px;
    box-shadow:0px 1px 0px #d9d9d93b;
    padding:unset;
}
.dropdown-menu .nav-link:hover{
    background-color:var(--pri-hover);
}
.border-l-top {
    border-top: unset !important;
    margin-top:unset;
}
.nonsticky{
    opacity: 0 !important;
    visibility: hidden !important;
}
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
    z-index:11111;
    border-bottom: 2px solid #ffffff57;
}

.slider-container .left-slide h1 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -30px;
}

.slider-container .right-slide {
    height: 100% !important;
    position: absolute !important;
    left: 35% !important;
    width: 65% !important;
    transition: transform 0.5s ease-in-out;
  }

  }