body{
    margin: 0;
    padding: 0;
    background-color: #fff;font-family: "Poppins", sans-serif;
}




.containerdiv {
  background: 
    linear-gradient(to bottom right,transparent 49.8%,#000 50%) bottom right/50px 50px no-repeat;
  height: 400px;
  position: relative;
  border-radius: 10px;
}

.gradeTriangle {
  bottom: 5px;
  right: 5px;
  position: absolute;
  color: red;
}


.media_contenarsamediv{
 /* background-image: url(../images/img-1.png);
  */background-repeat: no-repeat;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
}

.media_contenarsamediv1{
  background-image: url(../images/img-2.png);
  background-repeat: no-repeat;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
}

.media_contenarsamediv2{
  background-image: url(../images/img-3.png);
  background-repeat: no-repeat;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
}

.media_contenarsamediv3{
  background-image: url(../images/img-4.png);
  background-repeat: no-repeat;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
}

.media_contenarsamediv4{
  background-image: url(../images/img-5.png);
  background-repeat: no-repeat;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
}


.vid-bg{width: 100%; height: 100%; position: absolute;
  background: rgb(228,104,37);
  background: linear-gradient(180deg, rgba(228,104,37,0.5) 0%, rgba(229,112,48,0.5) 0%, rgba(255,255,255,0.5) 0%);


}



  
  /*   Start navigation bar   */
  
  :root {
    --color-white-100: hsl(206, 5%, 100%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 60%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
       0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
       0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
       0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  
  
  
  
  a,
  button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    box-shadow: none;
  }
  
  img
   {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .containerheader {
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem 0 0;
  }
  
  .brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 132px;
    z-index: 500;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: #e46825;
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 8rem;
    margin: 0 auto;
  }
  
  
  
  @media screen and (max-width: 992px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75%;
      height: 100%;
      z-index: 10;
      opacity: 0;
      overflow-y: auto;
      visibility: hidden;
      box-shadow: var(--shadow-medium);
      background-color: var(--color-white-100);
      transition: all 0.5s ease;
      background-color: #e46825;
    }
    .navbar.active {
      left: 0rem;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
    margin-top: 0rem;
  }
  .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: white;
    transition: all 0.3s ease-in-out;
  }
  .menu-link > i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
  }
  .menu-link:hover {
    outline: none;
    color: black;
  }
  @media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
  @media only screen and (max-width: 992px) {
    .menu {
      width: 100%;
      height: auto;
      padding: 1rem 0;
    }
    .menu-item {
      display: block;
      margin: 0 auto;
    }
    .menu-link {
      justify-content: space-between;
      padding: 0.5rem 1.25rem;
    }
  }
  
  .submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 2px solid black;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
  }
  .submenu-item {
    display: block;
    margin-top: 0.75rem;
  }
  .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
        font-size: 14px;color: #000 !important;
  }
  .submenu-link:hover {
    outline: none;
    color: var(--color-pink-500);
  }
  @media only screen and (max-width: 992px) {
    .submenu {
      position: relative;
      top: -0.5rem;
      left: 2.5rem;
      width: 100%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      opacity: 1;
      overflow: hidden;
      visibility: visible;
      transform: translateY(0px);
      box-shadow: none;
      background: transparent;
    }
  }
  
  .burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
  }
  .burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--color-black-500);
  }
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  @media only screen and (max-width: 992px) {
    .burger {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 992px) {
    .overlay.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  
  
  .logonaredcodiv{
    padding: 8px;
    float: left;
    background: #fff;
  }











 


  
  /*   End navigation bar   */
  
  
  
  
  
  /*   Start nav bar for small screens   */
  

  
  /*   End nav bar for small screens   */
  
  /*   Start media query   */
  
 
  
  
  /*   End media query   */




   /*   banner section   */
.management_member_details{margin: 23% auto;}
   .banner{
    width: 100%;
    float: left;
    position: relative;
    /*background:url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
   }


   .banner-about{
    background: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }

   .banner-a{
    background: url(../images/banner-a.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }

   .banner-b{
    background: url(../images/banner-b.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }


   .banner-c{
    background: url(../images/banner-c.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }

   .banner-d{
    background: url(../images/banner-d.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }


   .banner-e{
    background: url(../images/banner-e.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }


   
   .banner-f{
    background: url(../images/banner-f.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }

   .banner-g{
    background: url(../images/banner-g.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
   }






   .banner-about img{
    width: 100%;
   }

   .banner_maindiv{
    width: 30%;
    float: right;
    background: #1e253d91;
    color: #EEE;
    font-family: "Poppins", sans-serif;;
   }

.main-on{
   position: relative;transition: opacity .5s ease;
   z-index: 1;    padding: 3rem 0 0rem 0;    margin: 66% 0 0 0;
   background: white;    display: block;
}

.main-on-inn{
  position: relative;transition: opacity .5s ease;
  z-index: 1;    padding: 3rem 0 0rem 0;    margin: 30% 0 0 0;
  background: white;    display: block;
}



.wrap--reg { 
width: 100%;
margin: 0 auto;
position: relative;}


.main-pages{
display: flex;
flex-wrap: wrap;
justify-content: space-between;}

   .video-cover {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
     
}

.video-cover .slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.video-cover .slides h1 {
  text-align: center;
  background: #fff0;
  position: absolute;
  top: 45%;
  left: auto;
  width: 100%;
  color: #000000;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 80px;
}

   .main_divbottom{
    border-bottom: 3px solid #373e54;
    width: 80%;
    margin: 0 auto;
   }

   .main_divbottomnew{
    width: 80%;
    margin: 0 auto;
   }

   .banner-about h1{
      
       
text-align: center;
background: #fff0;
position: absolute;
top: 25%;
left: auto;
width: 100%;
color: #000000;
text-transform: uppercase;
font-weight: 100;
font-size: 80px;
}
 

    

hr{border: #e46825 1px solid;}
     /*   banner section   */


       /*   introduction section   */

       .introduction{
        width: 100%;
        float: left;
        padding: 8% 0;    background: url(../images/bg.png) fixed no-repeat bottom;
       
       }

       .introduction_contenar{
        width: 80%;
        margin: 0 auto;
       }

       .introduction_contenar_left{
        width: 40%;
        float: left;
       }

       .introduction_contenar_left p{
        line-height: 30px;
        font-family: "Poppins", sans-serif;
        color: #000000;
        font-size: 15px;
       }

       .introduction_contenar_right{
        width: 60%;
        float: right;
       }

       .introduction_contenar_left h1{
        font-size: 70px;
        color: #e46825;
        margin: 0;
        font-family: "Poppins", sans-serif;
       }


       .introduction_contenar_left h2{
        font-family: "Poppins", sans-serif;
        color: #000000;
        margin: 0;
        font-size: 24px;
        background: #e2e2e2;
        padding: 0 10px;
        width: fit-content;
       }

       .btn{
        width: 21%;
        background-color: #e46825;
        color: #EEE;
        border: none;
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        cursor: pointer;
       }

       .btn:hover{background-color: #000;}

       .btn p{
        font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin: 0;
    padding: 6px 0;
       }


       .introduction_contenar_right_video{
        padding: 0 0 0 40px;
       }

       .introduction_contenar_right_video img{width: 100%;}

       .glimpse_contenar_left_twodiv{margin: 0;}

              /*   introduction section   */


                     /*   GLIMPSE section   */

                     .glimpse{
                      width: 100%;
                      float: left;
                      padding: 5% 0;
                      background: url(../images/bg-main.png) no-repeat bottom right;
                      background-size: contain;
                      margin: 2% 0;
                  }
                      


                     .glimpse_contenar{
                      width: 80%;
                      margin: 0 auto;
                     }


                     .glimpse_contenar_left{
                      width: 45%;
                      float: left;
                     }

                     .glimpse_contenar_right{
                      width: 45%;
                      float: right;
                     }


                     .glimpse_contenar_left_twodiv{
                      width: 100%;
                      float: left;
                      margin: 2% 0;
                     }

                     .glimpse_contenar_left_twodivnewone{
                      width: 40%;
                      margin: auto;
                      float: left;
                      background-color: #f3f3f3;
                      border-radius: 20px;
                     }

                     .glimpse_contenar_left_twodivnewone img{margin:30px auto 0;
                      width: fit-content;
                      display: block;}

                     .glimpse_contenar_left_twodivnewone p{
                      padding: 0 0;
                      color: #000;text-transform: capitalize;
                      text-align: center;
                      font-family: "Poppins", sans-serif;font-size: 14px;
                 
                     }

                     .glimpse_contenar_left_twodivnewtwo{
                      width: 40%;
                      margin: auto;
                      float: right;
                      background-color: #f3f3f3;
                      border-radius: 20px;
                      
                     }

                     .glimpse_contenar_left_twodivnewtwo img{margin:30px auto 0;
                      width: fit-content;
                      display: block;}

                     .glimpse_contenar_left_twodivnewtwo p{
                      padding: 0% 0; 
                      text-align: center;
                      font-family: "Poppins", sans-serif;
                      color: #000;text-transform: capitalize;font-size: 14px;
                     }

                     .glimpse_contenar_left_twodivnewthree{
                      width: 40%;
                      margin: auto;
                      background-color: #f3f3f3;
                      border-radius: 20px;
                      margin: 30px 30% 30px;
                      float: left;
                     }


                     .glimpse_contenar_left_twodivnewthree img{margin:30px auto 0;
                      width: fit-content;
                      display: block;}

                     .glimpse_contenar_left_twodivnewthree p{
                      padding: 0% 0; font-size: 14px;
                      text-align: center;text-transform: capitalize;
                      font-family: "Poppins", sans-serif;
                      color: #000;;
                     }




                     .introduction_contenar_left_new{
                      width: 100%;
                      padding: 0 40px;
                     }
              
                     .introduction_contenar_left_new p{
                      line-height: 30px;
                      font-family: "Poppins", sans-serif;
                   text-transform: capitalize;
                      font-size: 15px;
                     }
              

                     .introduction_contenar_left_new h1{
                      font-size: 70px;
                      color: #e46825;
                      margin: 0;
                      font-family: "Poppins", sans-serif;
                     }


                         /*   GLIMPSE section   */


                           /*   management section   */

                           .management_contenar_left_cotenarsamediv img{
                            width: 100%;
                          }


                     .management{
                      width: 100%;
                      float: left;background: url(../images/bg.png) fixed no-repeat bottom;
                      padding: 10% 0 10%;
                     }      


            .management_contenar{
              width: 80%;
              margin: 0 auto;
            }   
            
            
            .management_contenar_left{
              width: 100%;
              float: left;
              background-color: #f6f6f6;
              border-radius: 10px;
           /*   height: 520px; */
            }


            .fullwidth{
              width: 100%;
              float: left;
              background-color: #f6f6f6;
              border-radius: 10px;
            }




            .management_contenar_left_cotenarsamedivfullwidth {
              width: 14%;
              float: left;
              margin: 2% 3%;
              text-align: center;
              font-family: "Poppins", sans-serif;
          }


    


            .management_contenar_left h1{
              text-align: center;
              color: #e46825;
              font-family: "Poppins", sans-serif;
              margin: 5% 0;
              font-size: 20px;
            }

            .management_contenar_right{
              width: 48%;
              float: right;    background: #f6f6f6;
              border-radius: 10px;    height: 520px;
            }

            .management_contenar_right h1{
              text-align: center;
              color: #e46825;
              font-family: "Poppins", sans-serif;
              margin: 5% 0;
              font-size: 20px;
            }

            .management_contenar_left_cotenar{
              width: 100%;
              float: left;
            }

            .management_contenar_left_cotenarsamediv{
              width: 25.3%;
              float: left;
margin:2% 4%;
text-align: center;
font-family: "Poppins", sans-serif;

            }



            .management_contenar_left_cotenarsamediv_new{

              width: 12.6%;
              float: left;
margin:2% 2%;
text-align: center;
font-family: "Poppins", sans-serif;

            }







                                  /*   management section   */


         /*   management section   */
         
         .media{
          width: 100%;
          float: left;
          padding: 5% 0;
          background: #f6f6f6;
          display: block;
  
         }

         .media h1{
text-align: center;width: 100%;
font-size: 80px; margin: 0;
color: #e46825;   float: left; display: block;
font-family: "Poppins", sans-serif;
         }

         .media_contenar{
            width: 100%;
    float: left;
    display: block;
         }

         .media_container{
          width: 80%;
          margin: 0 auto;
         }

         .media_contenarsamediv{
          width: 100%;
          float: left;
          margin: 2%;
          text-align: center;
          border-radius: 10px;
          position: relative;
         }

         .media_contenarsamediv img{
          width: 100%;
          border-radius: 10px;
         }


         .media_contenarsamediv1{
          width: 100%;
          float: left;
          margin: 2%;
          text-align: center;
          border-radius: 10px;
          position: relative;
         }

         .media_contenarsamediv1 img{
          width: 100%;
          border-radius: 10px;
         }


         .media_contenarsamediv2{
          width: 100%;
          float: left;
          margin: 2%;
          text-align: center;
          border-radius: 10px;
          position: relative;
         }

         .media_contenarsamediv2 img{
          width: 100%;
          border-radius: 10px;
         }


         .media_contenarsamediv3{
          width: 100%;
          float: left;
          margin: 2%;
          text-align: center;
          border-radius: 10px;
          position: relative;
         }

         .media_contenarsamediv3 img{
          width: 100%;
          border-radius: 10px;
         }


         .media_contenarsamediv4{
          width: 100%;
          float: left;
          margin: 2%;
          text-align: center;
          border-radius: 10px;
          position: relative;
         }

         .media_contenarsamediv4 img{
          width: 100%;
          border-radius: 10px;
         }


           /*   management section   */


             /*   management section   */


             .gallery{
              width: 100%;
              float: left;
              padding: 8% 0;
              background: url(../images/bg.png) fixed no-repeat bottom;
             }

             .gallery h1{
              text-align: center;
              font-size: 80px;
              color: #e46825;margin: 0;
              font-family:"Poppins", sans-serif; 
                       }

             .gallery_contenar{
              width: 80%;
              margin: 0 auto;
             }

             .gallery_contenar_inner_contenar{
              width: 100%;
              float: left;
             }


             .gallery_contenar_inner_contenarthreediv{
              width: 31%;
              float: left;
              text-align: center;
              margin: 1.16%;
              border-radius: 10px;
             }

             .gallery_contenar_inner_contenarthreediv img{
              width: 100%;
              border-radius: 10px;
             }

             .gallery_contenar_inner_contenar_last_div{
              width: 98%;
              border-radius: 10px;
              margin: 0 auto;
              text-align: center;
             }






             .headeing-text h2 {
              font-weight: 600;
              font-size: 40px;
              line-height: 68px;
              color: #1c1c1c;
              display: block;
              margin: 0;
              text-transform: uppercase;
          }
          .headeing-subheading-text {
              color: #999;
              line-height: 40px;
              text-align: center;
              font-weight: 200;
            font-size:20px;
          
          }

          .client-section{
            width: 100%;
            float: left;
            padding:  8% 0;background: url(../images/bg.png) fixed no-repeat bottom;
          }
         
          .client-section .client-logo .item {
              transition: transform 200ms cubic-bezier(.785, .135, .15, .86), box-shadow 200ms cubic-bezier(.785, .135, .15, .86);
              background-color: #fff;
              margin: 10px;
              padding: 30px;
              border: 1px solid #efeeee;
              background-color:#ddd;
          }
          .client-section .client-logo .item:hover {
              -ms-transform: translateY(-5px);
              transform: translateY(-5px);
          }
          .client-section .client-logo img {
              width: 100px;
              margin: 0 auto;
              opacity: 0.8;
              -webkit-filter: grayscale(100%);
              filter: grayscale(100%);
          }
          .client-section .client-logo img:hover {
              opacity: 1;
              transition: all 0.3s ease-in-out 0s;
              -webkit-filter: grayscale(0);
              filter: grayscale(0);
          }

          .text-center h1{
            text-align: center;
            font-size: 80px;
            color: #e46825;
            font-family: "Poppins", sans-serif; margin: 0;
         
          }

          .glrbtn{
            margin: 2% 40%;
            padding: 10px 0;
          }

.memberbtn{
  margin: 2% 40%;
  padding: 5px 0;
}


/* mobile index */
















          /* about section */


          .abt_us{
            width: 100%;
            float: left;
            padding: 5% 0;
            background: url(../images/bg.png) fixed no-repeat bottom;
          }


          .abt_us_contenar{
            width: 80%;
    margin: 0 10%;
    float: left;
    display: flex;
          }


          .abt_us_left{
            width: 63%;
            float: left;
            color: black;
            padding: 40px 60px;
            background-color: #efefefd4;
          }

          .abt_us_right{
               width: 35%;
    float: right;
    background-color: #efefefd4;
    color: black;
    margin: 0px 4% 0 0%;
    padding: 30px 0;
          }

          .abt_us_right ul{
            padding: 0;
          }

          .abt_us_right ul li{
            list-style: none;  
          }

          .abt_us_right ul li p{
            padding: 5px;
            font-size: 14px;    color: #000;
          }

          .abt_us_right_contenar{
            width: 80%;
            margin: 0 auto;
            font-family: "Poppins", sans-serif;
          }
          
          .abt_us_right ul li a{
            text-decoration: none;
            color: white;
          }




          .management_member{
            width: 100%;
            float: left;
          }

          .management_member_imagediv{
            float: left;
            padding: 15px 15px 0 15px;
            
          }

          .management_member_details p{
            padding: 62px 0;
            line-height: 25px;
            width: 50%;
          }


          .abt_us_left{
            font-family: "Poppins", sans-serif;
          }

          .abt_us_left h1{color: #e46825;
font-size: 20px;
          }

          .abt_us_left h3{
            font-size: 18px;color: #e46825;
                      }



          .abt_us_left p{
            line-height: 25px;
            font-size: 14px;
        }

          .contact_us{
            width: 100%;    background: url(../images/bg.png) fixed no-repeat bottom;
            float: left;
          }

          .contact_us_contenar{
            width: 80%;
            margin: 5% 10%;
            font-family: "Poppins", sans-serif;
            color: white;
            background-color: #efefefd4;
            float: left;
          }

          .contact_us_contenar_first{
            width: 100%;
            float: left;
            margin: 2% 0;
          
          }

          .contact_us_contenar_first_left{
            width: 49%;
            float: left;
            border-right: 5px solid #EEE;
            padding: 0px 0px 0px 15px;
          }

          .contact_us_contenar_first_right{
            width: 49%;
            float: right;
            font-family: "Poppins", sans-serif;
          }

          .div_svg{
            float: left;
            padding: 0 10px 0 0;
          }



          .contact_us_contenar_secand{
            width: 100%;
            float: left;
            margin: 2% 0;
            padding: 0 0 0 2%;
          }

          .contact_us_contenar_secand_all{
            width: 33%;
            float: left;
            padding: 0 35px 0px 35px;
          }


          .forborder{
            border-right: 5px solid #EEE;
          }

          .footer_section h1{
            font-size: 20px;color: #000;
          }


          .contact_us_contenar_three{
            width: 100%;
            float: left;
            margin: 6% 0;
          }

          .contact_us_contenar_three_left{
            width: 30%;
            float: left;
            padding: 0 0px 0px 15px;
          }

          .contact_us_contenar_three_right{
            width: 100%;
           
          }

          .bi-house-door-fill{
            color: #f38120;
          }

          .bi-telephone-fill{
            color: #f38120;
          }

          .bi-envelope-fill{
            color: #f38120;
          }

          .bi-globe{
            color: #f38120;
          }

          

          .contact_us_contenar_three_right_contenar{
            width: 80%;
            margin: 5% 10%;
            background-color: #cbcbcb;
            font-family: "Poppins", sans-serif;
            float: left;
          }

          .contact_us_contenar_three_right_contenar_inner{
            padding: 2% 0;
          }


          .contact_us_contenar_three_right_contenar_inner h1{
            margin: 0 10%;
            color: white;
            padding: 15px 0;
          }


          .contact_us_contenar_three_right_contenar_inner form{
            width: 80%;
margin: 0 auto;
          }

          .contact_us_contenar_three_right_contenar_inner form input{
            width: 98%;
            margin: 10px 0;
            padding: 18px 10px;
            border-radius: 10px;
            border: none;
            outline: none;
          }

          .contact_us_contenar_three_right_contenar_inner button{
            padding: 0px 10px;
            margin: 2% 0;
            border-radius: 10px;
            width: 30%;
            background-color: #f38120;
            border: none;
            outline: none;
          }

          .contact_us_contenar_three_right_contenar_inner button p{
            padding: 3px 0;
            font-size: 16px;
           }


          .mapdiv{
            width: 80%;
            margin: 5% 10%;
            float: left;
          }

          .login{
            width: 100%;
            float: left;
            margin: 5% 0;
          }


          .login_contenar{
            width: 80%;
            margin: 0 auto;
            background-color: #e46825;
          }

          .login_contenar_inner{
            width: 50%;
            margin: 0 auto;
            padding: 10% 0;
            font-family: "Poppins", sans-serif;
          }

          .login_contenar_inner p{
color: #fff;
          }

          .login_contenar_inner h1{
            text-align: center;
            color: white;
            font-size: 20px;
          }

          .login_contenar_inner form{
            width: 100%;
          }

          .login_contenar_inner form input{
            width: 100%;
    padding: 20px 10px;
    border-radius: 5px;
    margin: 2% 0;
    border: none;
    outline: none;
    background-color: #efefef;
          }

          .login_contenar_inner input{
           float: left;
           display: inline;
          }

          .login_contenar_inner_forchebox{
            width: 100%;
            float: left;
            margin: 2% 0;
          }

          .login_contenar_inner_forchebox_left{
            width: 50%;
            float: left;
          }

          .login_contenar_inner_forchebox_left p{
            color: #fff;
            margin: 0;
          }

          .login_contenar_inner_forchebox_right{
            width: 50%;
            float: right;
          }

          .login_contenar_inner_forchebox_right p{
            margin: 0;
            float: right;
            color: #fff;
          }

          .login_contenar_inner button{
            padding: 20px 30px;
            width: 50%;
            margin: 5% 25%;
            background-color: #f38120;
            border: none;
            outline: none;
            border-radius: 5px;
          }

          .login_contenar_inner button p{ font-size: 16px;
            margin: 0;
            color: white;}

         

          .footer_section{
            width: 100%;
            float: left;background-color: #f6f6f6;
            border-top: 1px solid #b5b5b5;
          }

          .footer_section p{text-align: center; font-size: 15px; color: #e46825;
            font-size: 15px;}


            .footer_section-footer{width: 100%; float: left; background: #fff;}
            .footer_section-footer p{text-align: center; font-size: 15px;} 
            .footer_section-footer p a{color: #000;}
            .footer_section-footer p a:hover{color: #e46825;}

          .footer_section_contenar{
            width: 80%;
            margin: 4% 10%;
            float: left;
          }

          .footer_section_contenar_threesection{
            width: 40%;
            float: left;
            color: white;
            font-family: "Poppins", sans-serif;
          }

          .footer_section_contenar_threesection_imagediv{
            width: 30%;
            float: left;
          }

          .footer_section_contenar_threesection_imagediv img{
        
          }
          
          .footer_section_contenar_threesection_contentdiv{
            width: 70%;
            float: right;
          }

          .footer_section_contenar_threesection input{
            width: 90%;
            padding: 10px 10px;
            background-color: #dbdbdb;
            color: #fff;
            border: none;
            outline: none;
          }

          .footer_section_contenar_threesection h1{
            text-align: left;
          }

          .footer_section_contenar_threesection_para{
            text-align: left;
          }

          .footer_section_contenar_threesection p{
          padding: 12px 0;color:#787878;
          text-align: left; font-size: 15px;
        }

         

          .footer_section_contenar_threesection button {
            width: 35%;
            margin: 4% 0%;
            border-radius: 10px;
            padding: 7px 0;
            background-color: #e46825;
            color: white;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .footer_section_contenar_threesection ul{
       padding: 0;
       margin: 5% 15%;
        }

        .footer_section_contenar_threesection ul a{
         text-decoration: none;
         color: white;
         line-height: 30px;
           }


        .footer_section_contenar_threesection ul li{
          text-align: left; color: #787878;font-size: 15px;
          list-style: none;
        }

        .footer_section_contenar_threesection ul li:hover{
          color: #000;
        }


        .footer_section_contenar_threesection:nth-child(1) {
          width: 40% !important;
        }


        .footer_section_contenar_threesection:nth-child(2) {
          width: 20% !important;
        }

        .importent_link{
          margin: 7% 15%;
        }




        .mobilecestion{
          width: 100%;
          float: left;
          display: none;
        }


        .navbarone {
          overflow: hidden;
          background-color: #e46825;
        }
        
        .navbar a { 
          text-align: center;
          text-decoration: none; 
          color:#fff;
        }
        
        .dropdown {
          float: left;
          overflow: hidden;
          font-family:"Poppins", sans-serif;
          width: 100%;
        }
        
        .dropdown .dropbtn {
          width: 100%;
          font-size: 16px;  
          border: none;
          outline: none;
          color: white;
          padding: 14px 16px;
          background-color: inherit;
          font-family: inherit;
          margin: 0;
        }

        .dropdown .dropbtn p{width:87%;
          float: left;
          text-align: left;
          margin: 0;}
        
        .navbarone a:hover, .dropdown:hover .dropbtn {
          background-color: #e46825;
        }
        
        .dropdown-content {
          display: none;
          position: absolute;
          background-color: #e46825;
          min-width: 80%;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 1;
          color: white;
        }
        
        .dropdown-content a {
          float: none;
          color: white;
          padding: 12px 10px;
          text-decoration: none;
          display: block;
          text-align: left;
          font-family:"Poppins", sans-serif;
        }
        
        .dropdown-content a:hover {
          background-color: #000;
        }
        
        .dropdown:hover .dropdown-content {
          display: block;
        }

        .list-item li {
          font-size: 15px;}

        .fa-caret-down:before {
          content: "\f0d7";
          padding: 10px 10px 10px 10px;
      }


      .management_contenar_left_cotenar p{
        color: #000;
        font-family: "Poppins", sans-serif;
      }

      .contact_us_contenar_secand_all p{
        padding: 0px 24px;
        font-size: 14px;width: 100%; color: #000;
      }
      
         .contact_us_contenar_secand_all p a{color: #000;}
         .contact_us_contenar_secand_all p a:hover{color: #000;}

      .contact_us_contenar_secand_all h1{
font-size: 20px; color: #e46825;
margin-top: 0;
      }

      .abt_us_left h6{
        font-size: 14px;color: #e46825;
        
      }
      
      
      .abt_us_left h6 a{color: #e46825;}
      
      .abt_us_left h6 a:hover{color: #e46825;}

      .abt_us_left ul li p{
        padding: 0 0;
      }

      .onlycenter{
        text-align: center;
      }


      .abt_us_right ul li p:hover{
        color: #e46825;
      }


      .container{
        width: 80%;
        margin: 0 auto;
      }



      .bi-facebook{
        color: #0d6efd;
      }

      .bi-instagram{
        color: #fccc63;
      }

      .bi-twitter-x{
        color: #1DA1F2;
      }

      .bi-youtube{
        color: #CD201F;
      }

      .bi-linkedin{
        color: #0A66C2;
      }

      
.abt_us_right_contenar h3{
  font-size: 18px;
}





          @media only screen and (min-width: 0px) and (max-width: 1000px){
            .banner h1 {
              padding: 30% 0;
              text-align: center;
              font-size: 18px;
          }


          
    .banner-about h1 {
      
      text-align: center;
      background: #fff0;
      position: absolute;
      top: 0%;
      left: auto;
      width: 100%;
      color: #000000;
      text-transform: uppercase;
      font-weight: 100;
      font-size: 36px;
    }


    .banner-about {
      
      width: 100%;
      height: 190px;
      position: relative;
      top: 83px;
      left: 0;
      z-index: 0;
      transform: translate3d(0, 0, 0);
      background-size: cover;
    }
    .main-on-inn {
      position: relative;
      transition: opacity .5s ease;
      z-index: 1;
      padding: 0rem 0 0rem 0;
      margin: 80px 0 0 0;
      background: white;
      display: block;
    }

          
          .banner_maindiv {
            width: 100%;
          }
          
          .introduction_contenar_left {
            width: 100%;
          }
          
          .introduction_contenar_left h1 {
            font-size: 18px;
          }
          
          .introduction_contenar_left h2 {
            font-family: "Poppins", sans-serif;
            font-size: 16px;
          }
          
          .btn {
            width: 50%;
            margin: 4% 25%;
          }
          
          
          .introduction_contenar_right {
            width: 100%;
          }
          
          .introduction_contenar_right_video {
            padding: 0px;
          }
          
          
          .glimpse_contenar_left {
            width: 100%;
            margin: 1% 0;
          }
          
          .glimpse_contenar_left_twodivnewone {
            width: 100%;
          }
          
          .glimpse_contenar_left_twodivnewtwo {
            width: 100%;
            margin: 5% 0;
          }
          
          .glimpse_contenar_left_twodivnewthree {
            width: 100%;     margin: 0 0 5%;
          }

          .glimpse_contenar_left_twodiv{margin: 0;}
          
          .glimpse_contenar_right {
            width: 100%;
          }
          
          .introduction_contenar_left_new h1 {
            font-size: 18px;
          }
          
          .management_contenar_left_cotenarsamediv {
            width: 100%;
            float: left;
            margin: 5% 0;
            text-align: center;
          }
          
          .management_contenar_left {
            width: 100%;    height: auto;
          
          }
          
          .management_contenar_right {
            width: 100%;
            margin: 5% 0;    height: auto;
          }
          
          .media h1 {
            font-size: 18px;
          }
          
          .media_contenarsamediv {
            width: 100%;
          }
          
          .gallery h1 {
            font-size: 18px;
          }
          
          .gallery_contenar_inner_contenarthreediv {
            width: 100%;
            padding: 15% 0;
            margin: 1%;
          }
          
          .gallery_contenar_inner_contenar_last_div {
            width: 100%;
            padding: 0% 0 0;
          
          }
          
          .text-center h1 {
            text-align: center;
            font-size: 18px;
            color: #e46825;
          }
          
          .introduction_contenar_left_new {
            width: 100%;
           padding: 0px;
          }
          
          .management_contenar_right h1 {
            font-size: 18px;
          }
          
          .management_contenar_left h1 {
            font-size: 18px;
          }

          .footer_section_contenar_threesection ul li {
            font-size: 14px;
        }

        .footer_section_contenar_threesection h1 {
          font-size: 16px;
      }


      .contact_us_contenar_secand_all p {
       padding: 0px 0px !important;
        font-size: 14px;
        width: 100%;
        color: #000;
    }
          
          
          
          
           /* about section */
          
           .abt_us_left {
            width: 100%;
            float: right;
          }

          .abt_us_left {
            padding: 0 0;
            font-family: "Poppins", sans-serif;
        }

        .abt_us_left p{
          padding: 0px 10px;
          font-size: 14px;
        }

        .abt_us_left h3{
          padding: 0px 10px;
          font-size: 16px;
        }

        .abt_us_right_contenar h3{
          font-size: 16px;
        }

        .abt_us_left h1 {
          padding: 0px 10px;
          font-size: 18px;
      }
          
          .abt_us_right {
            width: 100%;
            margin: 5% 0;
            display: none;
          }

          .forborder {
            border: none;
        }

        .contact_us_contenar_secand_all {
          width: 100%;
          float: left;
          padding: 10px 0px 40px 20px;
      }

      .contact_us_contenar_three_right_contenar {
        width: 90%;
        margin: 0 5%;
    }

    .contact_us_contenar_three_right_contenar_inner form input {
      width: 88%;
      margin: 5px 0;
      padding: 18px 10px;
      border-radius: 10px;
  }

  .mapdiv {
    float: left;
    width: 100%;
    margin: 5% auto;
}

.footer_section_contenar_threesection {
  width: 100%;
}


.footer_section_contenar_threesection_contentdiv {
  width: 100%;
}

.footer_section_contenar_threesection_imagediv {
  width: 100%;
}

.footer_section_contenar_threesection input {

  width: 70%;
  padding: 10px 5px;
}

.footer_section_contenar_threesection button {
  width: 30%;
  padding: 10px 10px;
}


.footer_section_contenar_threesection:nth-child(1) {
  width: 100% !important;
}

.footer_section_contenar_threesection:nth-child(2) {
  width: 100% !important;
}

.importent_link {
 margin: 0% 0%;
}

.footer_section_contenar_threesection ul {
  padding: 0;
   margin: 0% 0%;
}

.footer_section_contenar_threesection p {
   padding: 0px 0; 
  text-align: left;
  font-size: 14px;
}


.mobilecestion{
  width: 100%;
  float: left;
  display: block;
  margin: 10% 0;
}

.mobilecestion_contenar{
  width: 80%;
  margin: 0 auto;
}


.management_member_imagediv{
  float: left;
  padding: 15px 15px 0 15px;
  margin: 0 5%;
}

.management_member_details p{
  padding: 62px 0;
  line-height: 25px;
  text-align: center;
}

.contact_us_contenar_secand_all p {
  padding: 0px 24px;
  font-size: 14px;
}

.contact_us_contenar_secand_all h1{
  font-size: 16px;
  padding: 0 0 0 0px;
}


.contact_us_contenar_three_right_contenar_inner button {
  width: 50%;
}

.contact_us_contenar_three_right_contenar_inner button p {
  padding: 3px 0;
  font-size: 14px;
}



.login_contenar_inner form input {
  width: 90%;
}

.login_contenar_inner {
  width: 90%;
}


.login_contenar_inner_forchebox_right p {
  font-size: 12px;
}

.login_contenar_inner_forchebox_left p {
  font-size: 12px;
}

.login_contenar_inner p {
  color: #9497a3;
  font-size: 12px;
}

.login_contenar_inner button p {
  font-size: 12px;
  margin: 0;
  color: white;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 18px;
}


.logo img {
  height: 60px;
}

nav {
  height: 78px;
  background-color: #373e54;
  border-bottom: 1px solid #555;
  position: fixed;
  width: 100%;
}

.video-cover {
  width: 100%;
  height: auto;    top: 80px;}


  .main-on { 
    padding: 0 0 0rem 0;
    margin: 82% 0 0 0;  
}
.video-cover .slides h1 {
  text-align: center;
  background: #fff0;
  position: absolute;
  top: 20px;
  left: auto;
  width: 100%;
  color: #000000;
  text-transform: uppercase;
  font-weight: 100;
  font-size:42px;
}

.footer_section-footer p { 
  font-size: 13px;
}

.management_contenar_left_cotenarsamedivfullwidth {
  width: 94%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
          
          }



          @media only screen and (min-width:1001px) and (max-width: 1100px){
            .banner h1 {
              padding: 13% 0;
              font-size: 24px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 14px;

        }

        .main_divbottom p{
          font-size: 14px;
        }

        .introduction_contenar_left h2{
          font-size: 16px;
        }

        .introduction_contenar_left h1 {
          font-size: 20px;
      }

      .introduction_contenar_left p{
        font-size: 14px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 14px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 14px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 14px;
}

.btn p{
  font-size: 14px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection ul li{
  font-size: 14px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 16px;
}

.footer_section_contenar_threesection p{
  font-size: 14px;
}

.abt_us_left p{
  font-size: 14px;
}

.abt_us_right ul li p {
  padding: 5px;
  font-size: 14px;
}

.abt_us_left h1 {
  padding: 0px 30px;
  font-size: 20px;
}

.abt_us_left h3 {
  font-size: 18px;
}

.abt_us_right_contenar h3{
  font-size: 18px;
}

.list-item {
  float: right;
  margin-right: 25px;
  margin-top: 50px;
}

.btn {
  width: 27%;
  background-color: #e46825;
  color: #EEE;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.glrbtn {
  margin: 2% 36%;
  padding: 10px 0;
}

.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 10px;
}

.contact_us_contenar_secand_all h1 {
  font-size: 16px;
  margin-top: 0;
}

.contact_us_contenar_secand_all p {
  padding: 0px 20px;
  font-size: 14px;
}


.forptag p {
  padding: 0px 5px;
  font-size: 13px;
}

.abt_us_left h3 {
  font-size: 16px;
}

.abt_us_right_contenar h3{
  font-size: 16px;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 16px;
}


.menu-link {
  font-size: 0.8rem;
}

.management_contenar_left_cotenarsamediv {
  width: 42%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.abt_us_left {
  width: 63%;
  float: left;
  color: black;
  padding: 40px 10px;
  background-color: #efefefd4;
}


.banner-about h1 {
  top: 10%;
}

.homepage{
  width: 12.66%;
}

.video-cover .slides h1 {
  top: 25%;
  font-size: 70px;
}

.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}

          }

         



          @media only screen and (min-width:1101px) and (max-width: 1200px){
            .banner h1 {
            
              font-size: 24px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 14px;

        }

        .main_divbottom p{
          font-size: 14px;
        }

        .introduction_contenar_left h2{
          font-size: 16px;
        }

        .introduction_contenar_left h1 {
          font-size: 20px;
      }

      .introduction_contenar_left p{
        font-size: 14px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 14px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 14px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 14px;
}

.btn p{
  font-size: 14px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection ul li{
  font-size: 14px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 16px;
}

.footer_section_contenar_threesection p{
  font-size: 14px;
}


.list-item {
  float: right;
  margin-right: 25px;
  margin-top: 50px;
}

.btn {
  width: 27%;
  background-color: #e46825;
  color: #EEE;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 12px;
}

.forptag p {
  padding: 0px 5px;
  font-size: 14px;
}

.abt_us_left h3 {
  font-size: 16px;
}

.abt_us_right_contenar h3{
  font-size: 16px;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 16px;
}



.management_contenar_left_cotenarsamediv {
  width: 42%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.abt_us_left {
  width: 63%;
  float: left;
  color: black;
  padding: 40px 10px;
  background-color: #efefefd4;
}

.banner-about h1 {
  top: 12%;
}

.homepage{
  width:12.66%;
}

.video-cover .slides h1 {
  text-align: center;
  background: #fff0;
  position: absolute;
  top: 27%;
  left: auto;
  width: 100%;
  color: #000000;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 80px;
}


.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}

          }


          @media only screen and (min-width:1201px) and (max-width: 1300px){

            .banner h1 {
              padding: 10% 0;
              font-size: 24px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 14px;

        }

        .main_divbottom p{
          font-size: 14px;
        }

        .introduction_contenar_left h2{
          font-size: 16px;
        }

        .introduction_contenar_left h1 {
          font-size: 20px;
      }

      .introduction_contenar_left p{
        font-size: 14px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 14px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 14px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 14px;
}

.btn p{
  font-size: 14px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 16px;
}

.footer_section_contenar_threesection ul li{
  font-size: 14px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection p{
  font-size: 14px;
}

.list-item {
  float: right;
  margin-right: 25px;
  margin-top: 50px;
}


.btn{
  width: 22%;
  background-color: #e46825;
  color: #EEE;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
 }

 .glrbtn {
  margin: 2% 39%;
  padding: 10px 0;
}


.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 14px;
}

.forptag p {
  padding: 0px 5px;
  font-size: 14px;
}

.abt_us_left h3 {
  font-size: 16px;
}

.abt_us_right_contenar h3{
  font-size: 16px;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 16px;
}


.management_contenar_left_cotenarsamediv {
  width: 42%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.abt_us_left {
  width: 63%;
  float: left;
  color: black;
  padding: 40px 10px;
  background-color: #efefefd4;
}

.banner-about h1 {
  top: 13%;
}

.homepage{
  width: 12.66%;
}

.video-cover .slides h1 {
  text-align: center;
  background: #fff0;
  position: absolute;
  top: 30%;
  left: auto;
  width: 100%;
  color: #000000;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 80px;
}

.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}

          }


          @media only screen and (min-width:1301px) and (max-width: 1400px){

            .banner h1 {
              padding: 10% 0;
              font-size: 24px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 14px;

        }

        .main_divbottom p{
          font-size: 14px;
        }

        .introduction_contenar_left h2{
          font-size: 16px;
        }

        .introduction_contenar_left h1 {
          font-size: 20px;
      }

      .introduction_contenar_left p{
        font-size: 14px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 14px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 14px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 14px;
}

.btn p{
  font-size: 14px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection ul li{
  font-size: 14px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 14px;
}

.footer_section_contenar_threesection h1{
  font-size: 16px;
}

.footer_section_contenar_threesection p{
  font-size: 14px;
}

.list-item {
  float: right;
  margin-right: 25px;
  margin-top: 50px;
}

.btn{
  width: 22%;
  background-color: #e46825;
  color: #EEE;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
 }

 .glrbtn {
  margin: 2% 39%;
  padding: 10px 0;
}


.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 14px;
}

.forptag p {
  padding: 0px 5px;
  font-size: 14px;
}

.abt_us_left h3 {
  font-size: 16px;
}

.abt_us_right_contenar h3{
  font-size: 16px;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 16px;
}


.management_contenar_left_cotenarsamediv {
  width: 42%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.homepage{
  width: 12.66%;
}

.abt_us_left {
  width: 63%;
  float: left;
  color: black;
  padding: 40px 10px;
  background-color: #efefefd4;
}

.banner-about h1 {
  top: 15%;
}


.video-cover .slides h1 {
  text-align: center;
  background: #fff0;
  position: absolute;
  top: 33%;
  left: auto;
  width: 100%;
  color: #000000;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 80px;
}


.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}

          }




          @media only screen and (min-width:1401px) and (max-width: 1500px){
            .banner h1 {
               
              font-size: 27px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 15px;

        }

        .main_divbottom p{
          font-size: 15px;
        }

        .introduction_contenar_left h2{
          font-size: 18px;
        }

        .introduction_contenar_left h1 {
          font-size: 24px;
      }

      .introduction_contenar_left p{
        font-size: 14px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 14px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 15px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 15px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 14px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 14px;
}

.btn p{
  font-size: 14px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 15px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection ul li{
  font-size: 15px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 15px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection p{
  font-size: 14px;
}

.list-item {
  float: right;
  margin-right: 25px;
  margin-top: 50px;
}


.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 16px;
}

.forptag p {
  padding: 0px 5px;
  font-size: 14px;
}


.abt_us_left h3{
  font-size: 18px;
}

.login_contenar_inner h1 {
  text-align: center;
  color: white;
  font-size: 18px;
}

.banner-about h1 {
  top: 17%;
}

.management_contenar_left_cotenarsamediv {
  width: 42%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.homepage{
  width: 12.66%;
}

.abt_us_left {
  width: 63%;
  float: left;
  color: black;
  padding: 40px 10px;
  background-color: #efefefd4;
}

.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}


          }



          @media only screen and (min-width:1501px) and (max-width: 1600px){

            .banner h1 {
              padding: 10% 0;
              font-size: 27px;
          }


          .list-item li {
            float: left;
            padding: 10px 10px;
            font-size: 15px;

        }

        .main_divbottom p{
          font-size: 15px;
        }

        .introduction_contenar_left h2{
          font-size: 18px;
        }

        .introduction_contenar_left h1 {
          font-size: 24px;
      }

      .introduction_contenar_left p{
        font-size: 15px;
      }

     .glimpse_contenar_left_twodivnewone p{
      font-size: 15px;
     }

     .glimpse_contenar_left_twodivnewtwo{
      font-size: 15px;
     }

     .glimpse_contenar_left_twodivnewthree{
      font-size: 15px;
     }

     .introduction_contenar_left_new h1 {
      font-size: 24px;
  }

  .introduction_contenar_left_new {
    width: 100%;
    padding: 0px;
}

.introduction_contenar_left_new p{
  font-size: 15px;
}

.management_contenar_left h1{
  font-size: 18px;
}

.management_contenar_right h1{
  font-size: 18px; 
}

.management_contenar_left_cotenarsamediv img{
  width: 100%;
}

.management_contenar_left_cotenarsamediv p{
  font-size: 15px;
}

.btn p{
  font-size: 15px;
}


.media h1 {
  font-size: 24px;
}


.gallery h1 {
  font-size: 24px;
}

.text-center h1 {
  font-size: 24px;
}

.footer_section_contenar_threesection_contentdiv p{
  font-size: 15px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection ul li{
  font-size: 15px;
}

.footer_section_contenar_threesection ul a {
  line-height: 25px;
  font-size: 15px;
}

.footer_section_contenar_threesection h1{
  font-size: 18px;
}

.footer_section_contenar_threesection p{
  font-size: 15px;
}

.contact_us_contenar_secand_all {
  width: 31%;
  float: left;
  padding: 0 5px 0px 18px;
}

.forptag p {
  padding: 0px 5px;
  font-size: 14px;
}


.management_contenar_left_cotenarsamedivfullwidth {
  width: 14%;
}

          }


          @media only screen and (min-width:1601px) and (max-width: 1700px){

            .contact_us_contenar_secand_all {
              width: 31%;
              float: left;
              padding: 0 5px 0px 20px;
            }
          }

          @media only screen and (min-width:1701px) and (max-width: 1800px){

            .contact_us_contenar_secand_all {
              width: 31%;
              float: left;
              padding: 0 5px 0px 20px;
            }
          }



          @media only screen and (min-width: 0px) and (max-width: 1000px){
.brand img {
    height: 60px; }

    .wrapper {
      height: 4.8rem;
  }

  .header {
    height: 76px;
}

.forbtntab_left{
  width: 100% !important;
  float: left;
}


.forbtntab_right{
  width: 100% !important;
  float: left;
}



}


.forbtntab{
  width: 80%;
  margin: 0 auto;
  float: left;
}

.forbtntab_left{
  width: 50%;
  float: left;
}


.forbtntab_right{
  width: 50%;
  float: right;
}

.formbtn{
  width: 80%;

}

.formbtn p{
  padding: 20px 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.nolyforleftyou{
  float: left !important;
}




/* rera project form */

.form-container {
 width: 100%;
  margin: 0px auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  float: left;
}



.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
select,
input[type="date"],
input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  padding: 10px;
  background-color: #e46825;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



.form-container a{
  text-decoration: none;
  color: #000;
}

.form-container h2{
  text-align: center;
  color: #e46825;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}


.form-container p{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.form-container label{
  color: #e46825;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.onlyforformcolor{
  color: #e46825;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}



@media only screen and (max-width: 600px) {
  .form-container {
    width: 100%;
  }

  .form-container h2{
    text-align: center;
    color: #e46825;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }

}
























.media-box .media-cards {
  margin: auto;
  display: grid;
  gap: 20px;
  padding: 5%;
  align-items: stretch; /* Ensures all items stretch to the same height */
  grid-template-columns: repeat(4, 1fr); /* Adjust for 4 columns */
}

.media-cards-box {
  padding: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex; /* Use flexbox for content alignment */
  flex-direction: column;
  height: 100%; /* Allow items to stretch */
}

.media-cards-box img {
  border-radius: 3px;
  width: 100%;
  height: auto; /* Maintain aspect ratio for images */
  object-fit: cover; /* Ensures images cover their container without distortion */
}

.content-media {
  margin-top: auto; /* Push the content to the bottom if there's extra space */
  text-align: center;
}




.section-eleven{
  margin: 2% auto;
}

.tabs-events{
  display: flex;
  justify-content: center;
  gap: 10px;
  /* margin: 2% auto; */
}


.active-btn {
  background-color: red; /* Highlight the active button in red */
  color: white; /* Ensure text is visible */
}




.tabcontent {

  transition: 0.5s ease-in;

/* transition: 3s; */

  opacity: 1;

}



.content-media{

 

  padding: 1rem;

}

.content-media h1{

font-size: 1.5rem;

}

.content-media p{

  font-size: 0.8rem;

}

.item{
  cursor: pointer;
}





.imghover::before {
  content: "+";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #959595c4;
  text-align: center;
  font-size: 4rem;
  padding: 30% 0;
  opacity: 0;
  transition: all 0.6s ease;
  color: #ffffff;
}

.imghover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}



@media only screen and (min-width: 0px) and (max-width: 1000px){
  .media-box .media-cards {
    margin: 5% auto;
    /* max-width: 1500px; */
    display: block;
    gap: 20px;
    align-items: start;
    /* align-items: stretch; */
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(370px, 1fr)); */
}


.media-cards-box {
  /* border: 1px solid red; */
  padding: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .1);
  margin: 2% 0;
}


}

/* media end */




.overlayy {
  position: relative;
  width: 100%;
  display: inline-block;
}

.overlayy {
  position: relative;
  display: inline-block;
}

.overlayy::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 41, 41, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlayy-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 46px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-cards-box:hover .overlayy::after {
  opacity: 1;
}

.media-cards-box:hover .overlayy-content {
  opacity: 1;
}



.abt_us_left_fortc {
  width: 100%;
}


          