:root {
    --body-color1:#0d7170;
    --body-color2:#ffc97c;
    --body-color3:#e2ac52;
    --body-color4:#e7b95e;
  --body-color:#6f6f6f;
   --head-font: "Manrope", sans-serif;
    --head-font1:"Exo", sans-serif;
   --body-font: "Manrope", sans-serif;
   }
 /* current status css */
   .m1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #0d7170, #e7b95e);
            border-radius: 2px;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            background: white;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .overlay {
            transform: translateY(0);
        }
        
        .overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .video-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
            transition: transform 0.3s ease;
        }
        
        .video-item:hover {
            transform: scale(1.02);
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-info {
            padding: 20px;
        }
        
        .video-info h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .video-info p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .play-btn i {
            color: #0d7170;
            font-size: 24px;
            margin-left: 4px;
        }
        
        .play-btn:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .video-container {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
   
  /* current status css */


   .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100px;
    height: 100px;
    animation: animate 1s linear infinite;
 }
  .loader-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #f00;
    box-shadow: 2px 2px 5px 1px #000;
    animation: rotate 1s linear infinite;
 }
  .loader-item_1 {
    top: 0;
    left: 0;
    background: #f79f1f;
 }
  .loader-item_2 {
    top: 0;
    right: 0;
    background: #12cbc4;
 }
  .loader-item_3 {
    bottom: 0;
    left: 0;
    background: #ed4c67;
 }
  .loader-item_4 {
    bottom: 0;
    right: 0;
    background: #a3cb38;
 }

 @keyframes rotate {
  0% {
    transform: rotate(0deg);
 }
  10% {
    transform: rotate(0deg);
 }
  60% {
    transform: rotate(90deg);
 }
  90% {
    transform: rotate(90deg);
 }
  100% {
    transform: rotate(90deg);
 }
}

   
  body{
  font-family: var(--body-font);
 color:var(--body-color);
    text-align: left;
    line-height: 38px;
  font-size: 16px;
  letter-spacing:0px;
  }

  h1, h2, h3, h4, h5 {
    font-family: var(--head-font); }

    a:focus, a:hover, a:active {
        outline: none !important;
        box-shadow: none !important; }

        
.container {
    max-width: 1300px;
    width: 100%; }

    img {
        display: block; }


        #hm{
          -webkit-transition: all 0.4s ease;
                  transition: all 0.4s ease;
          
              }
          
          #hm.sticky {
                position:fixed; top:0; z-index:1998; width:100%; border-bottom: 1px solid rgb(233, 232, 232); 
                background: #fff; 
                animation: drop-in 1s ease 200ms backwards;
              } 
             
              #hm.sticky .top-div1{padding-top: 5px; padding-bottom: 5px;}
              #hm.sticky .logo-div img{width: 12%; padding-top: 5px;}
              #hm.sticky .logo-div:nth-child(1) img{margin-left: auto;}
              #hm.sticky .top-det{display: none !important;}
              #hm.sticky .offcanvas.offcanvas-top{margin-top: 0;}
              #hm.sticky .menu-btn{top: 10px;}

    @keyframes drop-in {
        from {
         opacity: 0;
         transform: translateY(-100px);
        }
        to {
         opacity: 1;
         transform: translate(0px);
        }
       }
.menu-btn{right: 10px; top:30px; background: #f4f4e8; padding: 0; border-radius: 0;}
.menu-btn:hover{background: #f4f4e8;}
.offcanvas-title{color:#fff; padding-left: 20px; font-size: 17px;}
  .offcanvas .btn-close{background-color: #eaeaea; color:#818181 !important}
  .offcanvas{background: var(--body-color1); padding: 0; margin: 0; width: 25% !important; }
  .offcanvas .nav-pills{padding: 0; margin: 0; text-transform: uppercase;  }
  .offcanvas .nav-pills .nav-item{width: 100%; padding: 0; margin: 0;}
  .offcanvas .nav-pills .nav-item .nav-link{color: #fff; border-radius: 0; border-bottom: 1px solid var(--body-color4); padding:5px 30px; font-size: 14px;}
  .offcanvas .nav-pills .nav-item:last-child .nav-link{border-bottom: none;}
  .offcanvas .nav-pills .nav-item:hover .nav-link, .offcanvas .nav-pills .nav-item.active .nav-link{background: #eb961d;}


 /* Hide scrollbar for Chrome, Safari and Opera */
 .offcanvas-body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.offcanvas-body  {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 


.offcanvas-body .nav {
    --bs-nav-link-padding-x: 0rem;
    --bs-nav-link-padding-y: 1rem;}
       
       .top-div1{padding-top: 10px; padding-bottom: 13px; border-top: 10px solid var(--body-color4);}
   

       .offcanvas.offcanvas-top{padding: 0;
        margin: 0;
        width: 100% !important;
        height: 100% !important;
        margin-top: 0px;
        }
       .menu-div .navbar, .menu-div1 .navbar {
        padding: 0px;
        margin-left: 0px; }

        .menu-div .navbar-light .navbar-nav .nav-item .nav-link {
          
            padding: 10px 25px;
            line-height: 22px;
            font-size: 16px;
            font-weight: 400;
            position: relative;
            margin-right: 5px;
            text-align: center;
            color: #333333;
            font-weight: 400;
           text-transform: uppercase;
           
            border-radius: 0;
        
      }


      .navbar-expand-md .navbar-nav .dropdown-menu{background: none !important;}

      @media (min-width: 770px)
{
 .dropdown .dropdown-menu {
        transition: all 0.5s;
        overflow: hidden;
        transform-origin: top center;
        transform: scale(1, 0);
        display: block;
      height: 0;
     }
      .dropdown:hover .dropdown-menu {
        transform: scale(1);
        height: inherit;
     }  
     
    }


    .dropdown-item.active, .dropdown-item:active{background-color: #0b0b0c00;}
    .dropdown-item:focus, .dropdown-item:hover{background-color: #0c366000;}
     /* @media (min-width: 770px) {
      .menu-div .navbar  .dropdown-menu, .menu-div1 .navbar  .dropdown-menu{  display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; padding: 0px;  } 
      .menu-div .navbar .dropdown-menu.fade-up, .menu-div1 .navbar .dropdown-menu.fade-up{ top:180%;   transform: scale(0.5, 0.5); background: #13a0e6; }
     .menu-div .navbar .nav-item:hover .d1, .menu-div1 .navbar .nav-item:hover .d1{ transition: .7s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
     .menu-div .navbar  .dropdown-menu:hover .dropdown-submenu .dropdown-menu, .menu-div1 .navbar  .dropdown-menu:hover .dropdown-submenu .dropdown-menu{display: block; opacity: 0;  visibility: hidden; transition:.7s; margin-top:0; padding: 0px;  width: 100%;} 


  .menu-div .navbar  .dropdown-menu .dropdown-submenu:hover .dropdown-menu.fade-up, .menu-div1 .navbar  .dropdown-menu .dropdown-submenu:hover .dropdown-menu.fade-up{ top:0%;    }
  .menu-div .navbar  .dropdown-menu .dropdown-submenu:hover .dropdown-menu,   .menu-div1 .navbar  .dropdown-menu .dropdown-submenu:hover .dropdown-menu{transition: .7s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg);}
  }
    */

/*ktm mega menu*/
    @media all and (min-width: 992px) {
      .dropdown-menu {
        width: 100%;border-radius: 0;
        background: #e7b875;
      }
      .mega-submenu {
        left: 100%;
        top: 0;
        min-width: 25rem;
      }
      .ktm-mega-menu {
        position: static;
      }
      .mega-menu {
        left: 0;
        right: 0;
        width: 100%;
      }
      .dropdown-menu li {
        position: relative;
      }
      .dropdown-menu .submenu {
        display: none;
        left: 100%;
        top: 0;
      }
      .dropdown-menu>li:hover>.submenu,
      .dropdown:hover>.dropdown-menu {
        display: block;
      }
    }
/*ktm mega menu*/


    /* .dropdown-toggle::after {
      display: inline-block;
      margin-left: .255em;
      vertical-align: .255em;
      content: "";
      border-top: none;
      border-right: none;
      border-bottom: 0;
      border-left: none;
    } */

    .megamenu{background: #fff; z-index: 100;}


    /*has mega menu*/

    .navbar .megamenu{ padding: 1rem; }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:auto; width:90% !important; margin-top:2px !important; background: #fff !important; padding: 10px !important; position: fixed !important; margin-left: 5% !important;  }

}	
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar .megamenu{background: #fff !important; padding: 10px !important; }
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}
/*has mega menu*/
      
   /* .dropdown-menu {
    min-width: 250px;
  }
  .dropdown-menu.columns-2 {
    min-width: 500px;
    margin-left: 0;
  }
  .multi-column-dropdown {
    list-style: none;
    margin: 0px;
    padding: 0px;
  }
  .multi-column-dropdown li a {
    display: block;
    clear: both;
   
    white-space: normal;
  }
  .multi-column-dropdown li a:hover {
    text-decoration: none;
    color: #262626;
    background-color: #999;
  }

  @media (max-width: 769px) {
    .dropdown-menu.multi-column {
      min-width: 240px !important;
      overflow-x: hidden;
    }
  } */
     

      .menu-div .navbar-light .navbar-nav .nav-item:hover .nav-link, .menu-div .navbar-light .navbar-nav .nav-item.active .nav-link {
        color: var(--body-color1);
        
       
       
       
        
         }
      
         .menu-div .navbar-light .navbar-nav .nav-item:hover .nav-link.dropdown-toggle, .menu-div .navbar-light .navbar-nav .nav-item.active .nav-link.dropdown-toggle{color: var(--body-color1);} 



         .menu-div .navbar-expand-lg .navbar-nav .dropdown-menu, .menu-div1 .navbar-expand-lg .navbar-nav .dropdown-menu {
            background: none;
            width: 250px;
            padding-top: 0px;
            padding-bottom: 0px; }
          
          .menu-div .dropdown-item, .menu-div1 .dropdown-item {
            color: #000;
            border: 1px solid #ddebe5;
            font-size: 13px;
           
            padding-top: 5px;
            padding-bottom: 5px;
            background: var(--body-color2) !important;
            color: #fff;
            font-weight: 400; }
          
          .menu-div .dropdown-item, .menu-div1 .dropdown-item {
            padding:8px 15px !important; }
          
          .menu-div .dropdown-item:hover, .menu-div .dropdown-item.active, .menu-div1 .dropdown-item:hover, .menu-div1 .dropdown-item.active {
            color: #fff;
            background: var(--body-color1) !important; }

            .menu-div .dropdown:hover .dropdown-menu, .menu-div1 .dropdown:hover .dropdown-menu {
               
                margin-top: -1px; background: none; margin: 0; padding: 0; }
               


                


              
               







                      

                      .menu-div .navbar .nav-item .dropdown-menu {
                        transition: .7s;
                      }

                      
.dropdown-item{padding: 0px 31px;}




/*example*/
      /* .dropend .dropdown-toggle {
        color: salmon;
        margin-left: 1em;
      }
      .dropdown-item:hover {
        background-color: lightsalmon;
        color: #fff;
      }
      .dropdown .dropdown-menu {
        display: none;
      }
      .dropdown:hover > .dropdown-menu,
      .dropstart:hover > .dropdown-menu {
        display: block;
        margin-top: 0.125em;
        margin-left: 0.125em;
      }
      @media screen and (min-width: 769px) {
        .dropstart:hover > .dropdown-menu {
          position: absolute;
          top: 0;
          right: 100%;
        }
        .dropstart .dropdown-toggle {
          margin-right: 0.5em;
        }
      } */
      
/*example*/



/*example*/
.dropstart .dropdown-toggle {
  /* color: salmon;
  margin-left: 1em;  */
} 
/* .dropdown-item:hover {
  background-color: lightsalmon;
  color: #fff;
}
 .dropdown .dropdown-menu {
  
display: block !important;

} 
 .dropdown:hover > .dropdown-menu,
.dropstart:hover > .dropdown-menu {
  display: block !important;
  margin-top: 0.125em;
  margin-left: 0.125em;
  
}  */
@media screen and (min-width: 769px) {
  .dropstart:hover > .dropdown-menu {
    position: absolute;
    top: 0;
   right: 100%;
  }

  .dropstart > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
  }
  .dropstartd .dropdown-toggle {
    margin-right: 0em;
  }
}  




.banner-div1 {
    position: relative;
    z-index: 2;   }
    .banner-div1 .carousel-item{background: #fff; }
    .banner-div1 img {
      width: 60%; position: relative; object-fit: cover; /*opacity: .3;*/ }


      .banner-div1 .carousel-indicators {
        bottom: -50px;
        left: 50%;
       right: auto; margin-left: 0; margin-right: 0; }
      .banner-div1 .carousel-indicators li {
        background: var(--body-color2);
        width: 18px;
        height: 18px;
        border-radius: 0%;
        opacity: 1;
        border: none; margin-left: 5px; }
      .banner-div1 .carousel-indicators .active {
        width: 18px;
        height: 18px;
        background: var(--body-color1);
        border: none }
      .banner-div1 .carousel-control-next, .banner-div1 .carousel-control-prev {
        top: 0%; }
      .banner-div1 .carousel-control-prev {
        background: url(../images/banner-arrow-left.png) no-repeat left center;
        left: 2%;
        opacity: 1; width: 10%;}
      .banner-div1 .carousel-control-next {
        background: url(../images/banner-arrow-right.png) no-repeat right center;
        right: 2%;
        opacity: 1;
        z-index: 100; width: 10%; }
    
        .banner-div1 .carousel-caption{
    left: 10%;
    text-align: center;
    right: auto;
    top:20%;
    bottom: auto;
    transform: translateX(-10%);
 
    width: 40%;
    padding-top: 0;
    
        }
  .banner-sec{column-gap: 20px;}    
.home-div1{padding-left: 50px; padding-right: 50px; }
.home-high{background: #f9f9f2; padding:60px 30px; text-align: center; width: 40%;  }
.home-high h1{margin: 0; font-family: 'Castellar'; color:var(--body-color1); text-transform: uppercase;font-size: 37px;}
.home-high h2{margin: 0; font-size: 24px; margin-top: 5px; color:#1a353a; border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, transparent 0%,transparent 5%,#c1c8c4 5%,#c1c8c4 95%,transparent 95%,transparent 100%);
  border-image-slice: 1; padding-bottom: 15px; margin-bottom: 15px; }
.button-links{column-gap: 20px; }
  .button-link{background: var(--body-color1); padding: 20px 50px; position:relative;}
  .button-link a{text-decoration: none; color:var(--body-color2); position: relative; z-index: 2;}
  .button-link:hover a{color:var(--body-color1)}

  .button-link:before{
    position:absolute;
    content:'';
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:var(--body-color4);
   
  
    transition:all 0.3s ease-out;
    -webkit-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    
    transform:scaleX(0);
    -webkit-transform:scaleX(0);
    -moz-transform:scaleX(0);
  }

  .button-link:hover:before{
    transform:scaleX(1);
    -webkit-transform:scaleX(1);
    -moz-transform:scaleX(1);
  }


.home-div2{padding-top: 100px; padding-bottom: 80px; text-align: center;}

.home-div2 h1{
  margin: 0; 
  color:var(--body-color3); 
  font-size: 22px;  
  margin-top: 10px; 
  font-family: var(--head-font1); 
  margin-bottom: 20px;
}
/* 888 */
.ome-div2 h3{
  text-align: center;
  margin: 0; 
  color:#7d4d0f;
  font-size: 30px;  
  margin-top: 15px; 
  font-family: var(--head-font1); 
  margin-bottom: -10px;
}
.ome-highlights{
  padding-left: 20px;
  text-align: center;
  background-color: #fffaf4;
  margin-top: -25px;
}

.ome-highlights h2 {
  margin: 0;
  background: #ae7b1f;
  padding: 10px;
  color: #fff;
  font-size: 40px;
  text-align: center;
}
.ome-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #d4e7e8;
}
.ome-highlights ul li {
  padding: 5px 15px;
  border-bottom: 1px solid #d4e7e8;
}

/* 888 */


.home-div3{margin-right: 15%; text-align: center;}
.home-div3 img{width: 70%;}
.home-div3 .home-exp{margin-left: 70px; width: 32%;}
.home-div3 h1{margin: 0; color:var(--body-color3); font-size: 33px;  margin-top: 10px; font-family: var(--head-font1); margin-bottom: 20px; text-align: left;}

.read-more{text-transform: uppercase; font-family: "Bitter", serif; font-size: 23px; margin-top: 50px; position: relative; padding: 20px; display: inline-block; transition: all .5s ease;}
.read-more a{text-decoration: none; color:#000; background: #fff; padding: 8px;}

.read-more:hover a{color:var(--body-color1)}


.read-more:after {
  transform:translateX(-5%) translateY(-50%);
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: transparent;
  border:1px solid #000;
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: -1;
  transition: 0.3s ease;
}

.read-more:hover:after {
  width: 100%;
  height: 100%;
  left: 5%;
  border-radius: 0px;
  border-color:var(--body-color1) ;
}


.home-div4{padding-top: 80px; padding-bottom: 0px;}
.home-div4 h1{margin: 0; color:var(--body-color3); font-size: 33px;  margin-top: 10px; font-family: var(--head-font1); margin-bottom: 20px; text-align: left; display: inline-block; border-bottom: 5px solid var(--body-color1); padding-bottom: 15px; padding-right: 15%;}
.home-div4 .button-links{column-gap: 4px;}
.home-div4 .button-link{padding: 0; text-transform: uppercase;}
.home-div4 .button-links .button-link a{background: #c5c5c5; padding: 20px 50px; position: relative; }
.home-div4 .button-links .button-link a{color:#000}
/* .home-div4 .button-links .button-link:hover a, .home-div4 .button-links .button-link a.active{background: var(--body-color1); } */
.home-div4 .button-links .button-link:hover a, .home-div4 .button-links .button-link a.active{color:var(--body-color2)}

.home-div4 .button-links .button-link a span{position: relative; z-index: 2;}


.home-div4 .button-links .button-link a:before{
  position:absolute;
  content:'';
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:var(--body-color1);
 

  transition:all 0.3s ease-out;
  -webkit-transition:all 0.3s ease-out;
  -moz-transition:all 0.3s ease-out;
  
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  -moz-transform:scaleX(0);
}

.home-div4 .button-links .button-link a:hover:before, .home-div4 .button-links .button-link a.active:before{
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
  -moz-transform:scaleX(1);
}





/* .project-carousel {padding-left: 20px; padding-right: 20px;} */
/* .owl-stage-outer {margin: -15px; } */

.project-carousel{margin-top: 40px; }
.home-project1{position: relative;}
.home-project1 img{position: relative; z-index: 1;}
.home-project1 h4{margin: 0; font-size: 20px; position: absolute; z-index:2; color:var(--body-color2); background: rgba(0,0,0,.7); bottom: 20px; padding:10px 20px;}
	.owl-stage {
		display: flex;
    justify-content: center;
 
    
	}
	.owl-item {
		display: flex;
    justify-content: center;
    flex: 1 0 auto;
	}
  .project-carousel .owl-prev {
    background: url('../images/left-arrow.svg') left center no-repeat !important;
    height: 44px;
    position: absolute;
  top: -12%;
  width: 44px;
  z-index: 1000;
 left: 0%;
  cursor: pointer;
  color: transparent;
    /* transform: rotate(-90deg); */
  }
  
  
  .project-carousel .owl-next {
    background: url('../images/left-arrow.svg') right center no-repeat;
    height: 44px;
    position: absolute;
  top: -12%;
  width: 44px;
  z-index: 1000;
left: 2%;
  cursor: pointer;
  color: transparent;
    transform: rotate(180deg);
  }


  .home-div5{padding-top: 60px; padding-bottom: 60px; text-align: center;}
  .home-div5 h1{margin: 0; color:var(--body-color3); font-size: 33px;  margin-top: 10px; font-family: var(--head-font1); margin-bottom: 20px; text-align: left; }
.home-manage1 img{filter: grayscale(100%);
  -webkit-filter: grayscale(100%);  /* For         Webkit browsers */
  filter: gray;  /* For IE 6 - 9 */
  -webkit-transition: all .6s ease;}

  .home-manage1:hover img{
	  opacity: 1;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none;
}
  .home-manage2{-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75); margin-left: 15px; margin-right: 15px; padding: 10px; border-radius: 10px; margin-top: -30px; background: #fff; position: relative; z-index: 2;text-align: center;}

    .home-manage2 h3{margin: 0; font-size: 25px; color:var(--body-color1); text-transform: uppercase; font-weight: 600; }
    .home-manage2 h4{margin: 0; margin-top: 5px; font-size: 20px; color:var(--body-color3); font-weight: 600; }



.home-div6{
  background: linear-gradient(to right,  #f1f1f1 0%,#f1f1f1 60%,#ffffff 60%,#ffffff 100%);  margin-top: 80px; padding-bottom: 80px;
 }

 .home-div6 h1{margin: 0; display: inline-block;  font-family: var(--head-font1); background: var(--body-color1); color:var(--body-color3); padding:90px 30px; font-size: 30px; position: absolute; top: 20%; left: -10%;}

 .home-testi2{position: relative;}
 .home-timg{ margin-top: -50px;  }

 
  .testi-carousel{margin-top: 80px; margin-bottom: 80px; padding-right: 60px;  }
  .home-testi1{margin-left: 10px;  text-align: center;}
  

  .owl-dots {
    text-align: center;
    padding-top: 15px;
  }
  .owl-dots .owl-dot {
    width: 75px;
    height: 5px;
    border-radius: 0;
    display: inline-block;
    background: var(--body-color1);
    margin: 0 3px;
  }
  .owl-dots .owl-dot.active {
    background-color: var(--body-color4);
  }
  .owl-dots .owl-dot:focus {
    outline: none;
  }
  
.complt-div1{background: url(../images/sri-sai-properties-infrastructure-completed-project-banner.jpg); background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; padding-top: 150px; padding-bottom: 150px; position: relative; }

.complt-div1::before{content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;}
  .complt-div1 h1{margin: 0; font-size: 50px; color:#fff; margin-left: 30px; position: relative; z-index: 2; text-transform: uppercase; font-weight: 900;}



.contct-div1{background: url(../images/sri-sai-properties-infrastructure-contact-banner.jpg); background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; padding-top: 150px; padding-bottom: 150px; position: relative; }
.contct-div1::before{content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;}
  .contct-div1 h1{margin: 0; font-size: 50px; color:#fff; margin-left: 30px; position: relative; z-index: 2; text-transform: uppercase; font-weight: 900;}


.ong-div1{background: url(../images/sri-sai-properties-infrastructure-ongoing-banner.jpg); background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; padding-top: 150px; padding-bottom: 150px; position: relative; }
.ong-div1::before{content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;}
.ong-div1 h1{margin: 0; font-size: 50px; color:#fff; margin-left: 30px; position: relative; z-index: 2; text-transform: uppercase; font-weight: 900;}

.mp{
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px #ababab;
    -moz-box-shadow: 0px 0px 5px 0px rgba(209, 209, 209, 1);
    padding: 20px;
    border-radius: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}


.about-div1{background: url(../images/sri-sai-properties-infrastructure-about-us-banner.jpg); background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; padding-top: 150px; padding-bottom: 150px; position: relative; }
.about-div1::before{content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;}
  .about-div1 h1{margin: 0; font-size: 50px; color:#fff; margin-left: 30px; position: relative; z-index: 2; text-transform: uppercase; font-weight: 900;}

  .breadcrumbs{margin: 0; padding: 0; position: relative; z-index: 2; position: absolute; bottom: 0; right: 0; background: #000; padding: 0 20px; text-align: center; justify-content: center; }
  .breadcrumbs li{padding: 10px; padding-right: 30px; margin-right: 30px; display: inline-block; color:#fff; background: url(../images/footer-arrow.svg) no-repeat top 30px right;}
  .breadcrumbs li:last-child{background: none; padding-right: 0;}
  .breadcrumbs li a{text-decoration: none; color:var(--body-color1); font-weight: 600;}

  .about-div2{padding-top: 60px; padding-bottom: 50px;}
  .about-div2 h5{margin: 0; font-size: 15px; color:var(--body-color3); text-transform: uppercase; font-weight: 600; letter-spacing: 2px;}
  .about-div2 h1{margin: 0; font-size: 40px; color:#000; text-transform: uppercase; font-weight: 900; letter-spacing: 2px; margin-top: 10px; margin-bottom: 20px;}
.about-div2 h3{margin: 0; font-size: 20px; background: var(--body-color1); color:#fff; padding: 15px; margin-bottom: 20px; font-weight: 400; align-items: center;}
.about-div2 h3 span{font-weight: 900; font-size: 28px;}

.about-div2 h4{margin: 0; font-size: 18px; color:var(--body-color3); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; margin-top: -10px; margin-bottom: 20px;}

.about-div2 h6{margin: 0; font-size: 20px; color:var(--body-color3); text-transform: uppercase; margin-bottom: 10px; font-weight: 900; letter-spacing: 2px;}
.about-div2 h6 span{color:#000}
.price-det{margin-bottom: 20px;}

  .about-us1{margin-bottom: 60px;}

.about-div3{background: #f1f1f1; padding-top: 100px; padding-bottom: 100px; color:#000}





.about-img3 img{margin-bottom: 20px;}

.about-project1{padding-bottom: 60px;}

.about-project2{padding-bottom: 80px;}
.about-project2 h1{margin: 0; text-align: center; font-size: 40px; color:var(--body-color1); font-weight: 900; margin-bottom: 20px;}

.about-mangmnt h1{text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #0d7170;padding-bottom: 30px;}
.about-mangmnt{padding-bottom: 140px;}
.abt-mang img{display: block;margin-left: auto;margin-right: auto;}
.mng-det{-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 5px 0px rgb(229 208 167);
    padding: 10px;text-align: center;}
.mng-det h3{font-size: 26px;
    font-weight: 600;
    color: #0d7170;}
.mng-det h4{font-size: 20px;
    font-weight: 600;
    color: #a97819;}




.row.equal-cols {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
  display: block;
}

.row.equal-cols > [class*='col-'] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row.equal-cols > [class*='col-'] > * {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; 
}


 .footer-div { background: #0d7170;  color:#4dbcbb;   letter-spacing: 0; font-size: 15px;  z-index: 2; line-height: 30px; font-weight: 600;  } 

.footer-div h5{margin: 0; font-size: 18px; font-weight: 600; color: #a6c1c0; border-bottom: 2px solid #128e8d; padding-left: 20px; padding-bottom: 10px; margin-bottom: 15px;}


.foot-ab{margin-top: 20px; }

.foot1, .foot2, .foot3, .foot4{position: relative;}
.foot2, .foot3, .foot4{padding-top: 60px; padding-bottom: 30px;}

.foot1{background: #fff; margin-top: -40px;}
.foot-logo{padding: 40px;}

.foot-social {
  display: flex;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.foot-social img{background: transparent; border: 1px solid #4a9594;}
.foot-social img:hover{background: var(--body-color1);}
.foot3 h6{margin-left: 30px; margin-top: 10px; font-size: 14px;}
.foot3 .foot-social{margin-bottom: 30px;}






.f-link {
  list-style: none;
  margin-left: 0px;
  padding: 0px;
  text-align: left; }
  .f-link li {
    display: block; padding-right: 0px; }
    .f-link li a {
      display: block;
      padding: 3px 20px 3px 20px;
      font-size: 14px;
      line-height: 25px;
     font-weight: 600;
     border-left: 2px solid #4dbcbb;
     margin-bottom: 10px;
      line-height: 15px;
      text-decoration: none;
      /* background: url(../images/footer-arrow.svg) no-repeat center left ; */
      color: #4dbcbb;
      margin-left: 0px;
      transition: All .5s ease;
      -webkit-transition: All .5s ease;
      -moz-transition: All .5s ease;
      -o-transition: All .5s ease;
      position: relative;
       }

       
      .f-link li a:hover {
        color: #fff;
        background-position: center left 5px;}

        

        .f-link li a::before{
          content: "";
          width: 100%;
          height: 2px;
          position: absolute;
          left: 0;
          bottom: 0;
          background: #fff;
          transition: 0.5s transform ease;
          transform: scale3d(0,1,1);
          transform-origin: 0 50%;
          transform-origin: 50% 50%;
          background: #fff;
        }
        .f-link li a:hover::before{
          transform: scale3d(1,1,1);
        }
        .foot-add{margin-left: 20px; }
        .foot-det{margin-left: 20px; margin-bottom: 20px;}
.foot-det a{text-decoration: none; color:#4dbcbb}
.foot-cont{margin-top: 20px; border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, #4dbcbb 0%,#4dbcbb 10%,transparent 10%,transparent 100%);
  border-image-slice: 1;}





.icon-effect {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.icon-effect > li {
  display: inline;
  margin-right: 20px;
  padding: 0;
}
.icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 17px;
  color: #f1f1f1;
  line-height: 38px;
  text-align: center;
  background-color: #1b2026;
  border: 1px solid #fff;
}
.icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  box-sizing: content-box;
}
.icon-effect .icon {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.icon-effect .icon:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  /* box-shadow: 0 0 0 4px #f1f1f1; */
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -ms-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  opacity: 0;
  
}
.icon-effect-1a .icon:hover {
  background-color: var(--body-color1);
  color: #fff;
  border: 1px solid transparent;
}
.icon-effect-1a .icon:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}


/*table*/
.on-table  {
    width: 100%;
    border-collapse: collapse;margin-top: 25px;

}

.on-table1  {
    width: 100%;
    border-collapse: collapse;margin-top: 25px;

}

.mob-on-table{display:none;}

.on-table tr:nth-of-type(2n+1) {
    background: #0d717017;
}

.on-table1 tr:nth-of-type(2n+1) {
    background: #0d717017;
}
td, th {
    padding: 5px 20px;
    border: 1px solid #ccc;
    /*width: 37%;*/
    font-size: 16px;text-align: center;
}
th {
    background: #0d7170;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}    
.bnk{background: #fff;border:none;}

        
.about-project2 img{display: block;
    margin-left: auto;
    margin-right: auto}        

.about-project3{padding-bottom: 80px;}
.about-project3 h1 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    color: var(--body-color1);
    font-weight: 900;
    margin-bottom: 20px;
}
.places{position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    z-index: 1;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);}
.places img{display: block;
    margin-left: auto;
    margin-right: auto;}
.places h3{text-align: center;
    padding-top: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #cd8f14;}
.places h4{text-align: center;
    font-size: 18px;
    color: #000;}

.project-location{padding-bottom: 140px;padding-top: 30px; background: linear-gradient(to bottom, #fffbf4 0%, #fffbf4 100%, #ffffff 100%, #ffffff 100%);}
.project-location h1 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    color: var(--body-color1);
    font-weight: 900;
    margin-bottom: 20px;
}

.highlights{
    padding-left: 20px;}

.highlights h2 {
    margin: 0;
    background: #ae7b1f;
    padding: 10px;
    color: #fff;
    font-size: 24px;
}
.highlights ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #d4e7e8;
}
.highlights ul li {
    padding: 5px 15px;
    border-bottom: 1px solid #d4e7e8;
}
/*Completed*/

.completed-div1{padding-top: 60px;padding-bottom: 60px;}
.completed-div1 h2 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    color: var(--body-color1);
    font-weight: 900;
    margin-bottom: 20px;
}

.gallery-div1{
    position: relative;
    margin-top: 10px;
    padding-bottom: 25px;}

.gallery-div1 .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.gallery-div1 .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.gallery-div1 .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}
.gallery-div1 .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abt-image-im1 .crd-image{
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;

}
.abt-image-im1 .crd-image img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media only screen and (max-width: 600px) {
  .gallery-div1 {
    .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
  }
}
.fancybox-caption__body{display: none;}
.completed-div1 h3{font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #9b6805;}



/*Contact*/
.contact-div1{padding-top: 60px;padding-bottom: 100px;}
.cont1{text-align: center;}
.cont1 h5 {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    color: #d19137;
    background: rgb(121 190 161 / 35%);
    border-radius: 30px;
    display: inline-block;
    padding: 10px 17px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.cont1 h1 {
    margin: 0;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.7;
    color: #0d7170;
    margin-top: 20px;
    margin-bottom: 10px;text-align: center;
}
.cont-div1 {
    border-radius: 25px 0 25px 0;
    height: 270px;
    font-size: 14px;
    line-height: 29px;
    padding: 20px;
    margin-top: 25px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(186, 186, 186, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(186, 186, 186, 1);
    box-shadow: 0px 0px 5px 0px rgba(186, 186, 186, 1);
}

.cont-div1 i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    min-width: 85px;
    width: 85px;
    height: 85px;
    background-color: var(--body-color2);
    -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, .05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, .05);
    border-radius: 50%;
    color: var(--body-color1);
    position: relative;
    top: -4px;
    font-size: 26px;
}

.cont-div1 h4 {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    color: #c78a10;
    font-weight: 600;
    margin-bottom: 20px;
}
.cont-div1 p{font-size: 16px;    text-align: center;}
.cont-div1 a{text-decoration: none;color: #6f6f6f;}
.contact-div3{padding-top: 80px;}
.c-form{padding: 25px;
    background-color: #fff;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);}
label{text-align: left!important;}
.c-form h2{text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #bb861c;}
.form2 .form-control {
    width: 100%;
    padding: 7px 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #ebebeb;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form2 .btn1 {
    color: #fff;
    margin-top: 15px;
    border-radius: 5px !important;
    background: var(--body-color1);
    box-shadow: none !important;
    border: none !important;
    padding: 5px 20px;
    margin-left: auto;
    margin-right: auto;
    transition: all .5s ease;
}

.form2 .btn1:hover {
    background: var(--body-color2); color: #000;
}

.c-map{border: 1px dotted #b96411;
    padding: 5px;}

.ft-mb{padding-left: 40px;}






.copy-div {
 
  font-size: 14px; 

 
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  color: #0d7170;
 background: #095756;
  transition: all .5s ease; }
  .copy-div a {
    text-decoration: none;
    color: #4dbcbb; }
  .copy-div a:hover {
    color: var(--body-color2); }
  .copy-div .power-div {
    text-align: right; }
    .copy-div .power-div .power {
      position: relative;
      z-index: 3; }
      .copy-div .d-flex{column-gap: 50px;}

      .copy-div1{ padding-top:15px;
        padding-bottom: 15px;}


.call-div{display: none;
  bottom: 0px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  bottom: 0;
  background: #ebb13d;
  text-align: center;
  padding: 10px;
  color: #000000;
  font-weight: 600;}
  .call-div a {
    color: #000000; } 
    .bottom-link {
      z-index: 2001;
      bottom: 10px;
      right: 20px;
    }


/* new correction */
.about-project4{
  margin-bottom: 50px;
  border-top: solid 1px  #d7d7d7;
}

.about-project4 h1{
  margin: 0;
  margin-bottom: 0px;
  display: inline-block;
  font-size: 40px;
  color: var(--body-color1);
  font-weight: 900;
  margin-bottom: 20px;
  background: url(../images/lin1.jpg) no-repeat left center, url(../images/lin1.jpg) no-repeat right center;
  padding-left: 80px;
  padding-right: 80px;
  margin-top: 50px;
 
}
.abt-content{
text-align: center;
}
.crd-image img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.crd-image{
  margin-bottom: 60px;
 

}




    @media (max-width:1337px) {
      .button-link{padding: 20px 40px;}
      .home-div3 .home-exp {
        margin-left: 20px;}
      
    }

    @media(max-width:1301px)
    {
      .dropdown-menu {
       width: 100%;
        border-radius: 0;
        background: #e7b875;
      }

     
    }
    @media(max-width:1281px)
    {
      .home-high{width: 45%;}
      .home-div3 {
        margin-right: 5%;}
      .home-div3 .home-exp{width: 35%;}
      .button-link{padding: 20px;}
      .home-div3 .home-exp {
        width: 40%;
      }
      
      
    }
  

    @media(max-width:1024px)
    {
      .home-high {
        width: 50%;
        padding: 20px;
      }
      .home-high h2{font-size: 20px;}
      .project-carousel .owl-prev, .project-carousel .owl-next{top:-16%}
      .home-div2{padding-bottom: 30px;}
      .home-div4 {
        padding-top: 40px;
        padding-bottom: 40px;
      }
      .home-div5 {
        padding-top: 10px;}
        .foot1{width: 28%;}
        .foot-logo {
          padding: 10px;
        }
        
       /* .logo-div img{width: 50%;}*/
         .cont-div1 p {
    font-size: 14px;}
.cont-div1 {padding: 10px;}
.places h3 {font-size: 19px;}




    }

    @media(max-width:981px)
    {

      .home-div6 h1{padding: 20px;}
   

.offcanvas{width: 30% !important;}
      
        
 

    


    }
@media(max-width:801px)
{
  .home-high h1{font-size: 35px;}
  .home-high {
    width: 70%;}
    .home-high h2 {
      font-size: 18px;
    }
    .button-link {
      padding: 10px;
    }
    .home-div3 .home-exp {
      width: 80%;
    }
    .home-div3 h1{font-size: 30px; margin-top: 20px;}
    .read-more{margin-top: 0;}
    .project-carousel .owl-next{left: 3%;}
}


    @media(max-width:769px){

      .home-high h2 {
        font-size: 17px;
      }
      .home-high1 p{font-size: 13px;}
      .home-div1{padding: 0;}
      .home-div6 {
        background: linear-gradient(to bottom, #f1f1f1 0%,#f1f1f1 60%,#ffffff 60%,#ffffff 100%); padding-bottom: 0;}
      .home-testi2{text-align: center;}
        
  
      
      .banner-div1 .carousel-control-prev{background-image: url(../images/banner-arrow-left1.png); width: 4%;}
  .banner-div1 .carousel-control-next{background-image: url(../images/banner-arrow-right1.png); width: 8%;}

  .home-div6 h1{position: relative; left: 0;}
  
  #hm.sticky .logo-div{margin-bottom: 0;}
  /*#hm.sticky .logo-div img {
    width: 50%; }*/
    
    .foot1{width: 100%; margin-bottom: 30px;}
    .foot2, .foot3, .foot4 {
      padding-top:0px;
      padding-bottom: 0px;
    }
    .footer-div h5{padding-left: 0;}
    .foot-cont{border: none;}

    .copy-div{margin-bottom: 57px; text-align: center;}
.call-div {
  display: block !important;
   }
   
   .footer-sec {
    margin-top: 0%;
    background: none;
  }
  .footer-logo{background: #fff; padding-top: 10px; padding-bottom: 10px;}
  .footer-logo img{margin-left: auto; margin-right: auto; top: 0;}
  .footer-logo.d-flex{column-gap: 0;}

.footer-div{background: #0d7170;}
.footer-div1{padding-top: 60px;}
  .footer-div h5{writing-mode: initial; -webkit-transform: rotate(0deg); left: 0; top: 0; position: relative;}
  /* .footer-div1{padding-top: 200px;} */
  

  .f-link{text-align: center;}
  .f-link li{display: inline-block;}

.foot-logo img{margin-left: auto; margin-right: auto;}
.footer-div{text-align: center;}
.foot-add, .foot-det, .foot-social{margin-left: 0; line-height: 25px;}

.in-about1{text-align: center; padding-bottom: 0;}
.in-about1 h4{margin-top: 20px;}
.in-about1 h1{font-size: 27px;}
.in-about2{padding-top: 0; text-align: center;}
.in-about3{margin-top: 20px; text-align: center;}
.in-vis{padding-left: 40px;}
.vis-img{left: 0; margin-right: 0;}
.in-space{padding-bottom: 0; border-bottom: 1px solid #ccc;}
.ct-div1 img{width: 100%;}
.contact-div1 h1, .contact-div2 h1{font-size: 35px;}
.in-head h1{font-size: 35px;}
.in-head{padding-top: 20px; padding-bottom: 20px;}
ul.breadcrumbs{margin-top: 0;}
.testi-carousel {
  margin-top: 40px; margin-bottom: 40px; padding-right: 0;}
.about-div2{text-align: center;}
.about-div2 img{display: block;margin-left: auto;margin-right: auto;}
.offcanvas .nav-pills .nav-item .nav-link {padding: 5px 15px;}
.places h3 {font-size: 25px;}
.highlights{padding-left: 0px;}
.completed-div1 p{text-align: justify;}
.cont-div1 p {font-size: 15px;}
.cont-div1{height: auto;}
.mob-on-table{display:block; width: 100%;
    border-collapse: collapse;margin-top: 25px;}
		.on-table{display:none;}



} 



@media(max-width:577px)
{
 
  .offcanvas {
    width: 60% !important;
  }
  .menu-btn{top: 0px;}
  .offcanvas .btn-close{margin-right: 20px;}
  .copy-div{font-size: 13px; line-height: 20px;}
  #hm.sticky .logo-div img {
    width: 30%;
  }


  .banner-div1 img {
    width: 100%;}
    .home-high{width: 100%;}
    /* .banner-div1 .carousel-control-next, .banner-div1 .carousel-control-prev {
      top: -60%;
    } */
  .banner-div1 .carousel-control-prev{background-image: url(../images/banner-arrow-left1.png); width: 8%;}
  .banner-div1 .carousel-control-next{background-image: url(../images/banner-arrow-right1.png); width: 8%;}
  .home-div3{margin-right: 0; margin-left: 10px; margin-right: 10px;}
  .home-div3 h1{text-align: center; margin-bottom: 10px;}
  .home-div3 img {
    width: 100%;
  }
  .home-div3 .home-exp {
    width: 100%; margin-left: 0;
    
  }
  .home-div4{text-align: center;}
  .home-div4 .button-links{margin-bottom: 20px;}
  .project-carousel .owl-prev, .project-carousel .owl-next {
    top: -12%;
  }
  .project-carousel .owl-next {
    left: 7%;
  }
  .home-div5 h1{text-align: center;}
  .home-manage1{margin-bottom: 30px;}
  .home-manage1 img{margin-left: auto; margin-right: auto;}
  .home-manage2{margin-left: 30px; margin-right: 30px;}
  .home-div6{margin-top: 0;}

}


@media(max-width: 424px)
{
  .about-div2 h1 {font-size: 27px;}
  .about-us1 {margin-bottom: 25px;}
  .breadcrumbs li{padding-right: 10px;margin-right: 5px;}
  .about-project2 h1 {font-size: 30px;}
	th{font-size: 17px;}
  .about-project3 h1 {font-size: 30px;}
  .completed-div1 h2 {font-size: 34px;}
td{font-size: 13px;line-height: 27px;}
.about-div1 h1 {font-size: 40px;}
.home-div4 .button-links .button-link a {padding: 14px 43px;}



.abt-content h1{
  font-size: 30px;
}
.crd-image{

}

.rm{
  margin-top:-30px;
}
.rm1{
  margin-top:-60px;
  margin-bottom: 18px;
}


}

@media(max-width: 360px)
{
  th, td {font-size: 11px;}
}