* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-family: "Montserrat", sans-serif; */
    /* overflow: hidden; */
  }
   
  /* --- Customize ScrollBars --- */
  .footer .center .linkedin-content::-webkit-scrollbar {
    width: 11px;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-track {
    background: #fff;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-thumb {
    background: #676767;
    border-radius: 7px;
  }
  
  /* Header Styles Starts Here */
  header {
    background-color: #ec9122;
    padding: 5px 0;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .header a {
    text-decoration: none;
    color: #fff;
  }
  .header .icons i {
    margin-right: 7px;
    transition: all 0.3s ease;
  }
  .header .icons i:hover {
    scale: 1.2;
    color: #5f86c3;
  }
  .header .email i {
    margin-right: 1px;
  }

  @media screen and (max-width: 576px) {
    .header .icons i{
        margin-right: 3.5px;
    }
    .header a{
        font-size: 0.7rem;
    }
    .header .phone span{
        font-size: 0.7rem;
    }
    .header i{
        font-size: 0.8rem;
    }
	header{
        padding: 1px 0 3px 0;
    }  
}
  /* Header Styles Ends Here */
  
   /* Nav Styles Starts Here */
   nav {
    padding: 0 !important;
    background-color: #fff !important;
    font-family: "Montserrat", sans-serif !important;
  }
  nav .nav-link {
    font-weight: 500;
  }
  nav .nav-link.active {
    color: #eb9833 !important;
  }
  nav .dropdown-menu {
    background-color: #eb9833 !important;
  }
  nav .dropdown-item {
    color: #fff !important;
    font-weight: 400;
    transition: all 0.2s ease;
  }
  nav .dropdown-item:hover,
  nav .dropdown-item:focus {
    background-color: #eb9833 !important;
    color: #ececec !important;
  }

  @media screen and (max-width: 576px) {
    nav .nav-link {
        font-size: 0.8rem !important;
      }
      nav .dropdown-item {
        font-size: 0.8rem !important;
      }
	  nav .navbar-brand img {
        height: 70px;
      }
  }

  /* .dropdown-toggle::after {
    display: none;
  } */

  /* Nav Styles Ends Here */


  /* Top Image Section Starts Here */
  /* .top-image{
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .top-image img{
    width: 100%;
  }
  .top-image h1{
    position: absolute;
    top: 25%;
    left: -1rem;
    font-size: 3.5rem;
    color: #fff;
    background-color: #ec9122;
    padding: 4px 3rem 10px 8rem;
    border-radius: 5px;
  } */

  /* Top Image Section Ends Here */



/* Top Image Styles Starts Here */
.top-image{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.top-image img{
    width: 100%;
}
.top-image h2{
   font-size: 4rem;
   background-color: #ea9936e3;
   color: #fff;
   width: max-content;
   padding: 5px 60px 15px 60px;
   border-top-left-radius: 40px;
   border-top-right-radius: 40px;
   position: absolute;
   bottom: -9px;
   left: 35%;
   font-weight: 500;
   /* font-family: "Montserrat", sans-serif; */
}

@media screen and (max-width: 576px) {
  .top-image h2{
    width: 70%;
    text-align: center;
    font-size: 2rem;
    padding: 5px 30px 10px 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    bottom: -9px;
    left: 15%;
 }
}

/* Top Imag Styles Ends Here */



/* Map Section Styles Starts Here */
.map{
    background-color: #fff;
    padding: 3rem 0;
}
.map-container{
    background-color: #ec9122;
    border-radius: 20px;
    margin-top: 2rem;
    overflow: hidden;
}
.map-container .map-box{
    display: flex;
    justify-content: space-around;
    padding: 3rem 0 1rem 0;
    overflow: hidden;
}
.map-container .map-box .location-box{
    width: 480px;
    height: 300px;
    /* background-color: rgb(204, 199, 199); */
    border-radius: 20px;
    border: 7px solid #fff;
    box-shadow: 0px 12px 15px -15px #111;
    overflow: hidden;
}
.map-container .map-box h2{
   font-size: 1.8rem;
   text-align: center;
   margin-top: 1.5rem;
   color: #fff;
   font-family: "Montserrat", sans-serif;
}
.map-container .map-box p{
   font-size: 1rem;
   text-align: center;
   margin-top: 0.7rem;
   color: #fff;
   font-weight: 500;
   font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 576px) {
  .map{
    padding: 1rem 0.5rem;
}
.map-container .map-box{
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem 0 0.5rem 0;
}
.map-container .map-box .location-box{
  width: 100%;
  height: 250px;
  border: 4px solid #fff;
}
.map-container .map-box h2{
  font-size: 1.3rem;
  margin-top: 1.3rem;
}
.map-container .map-box p{
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
#map-box-2,
#map-box-4{
  margin-top: 2rem;
}
}
/* Map Section Styles Ends Here */


/* General Enquiry Styles Starts Here */
.general-enquiry{
    background-color: #fff;
    padding: 1rem 0 4rem 0;
}
.general-enquiry .enquiry-form{
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
}
.general-enquiry .enquiry-form h2{
   font-size: 2.5rem;
   font-weight: 400;
}
.general-enquiry .enquiry-form .line{
   width: 300px;
   height: 3px;
   background-color: #ec9122;
   margin-top: 5px;
}
.general-enquiry .enquiry-form form{
   display: flex;
   flex-direction: column;
   align-items: center;
}
.general-enquiry .enquiry-form form input{
   width: 35vw;
   height: 45px;
   border-radius: 10px;
   border: none;
   outline: none;
   background-color: #eaeaea;
   margin-top: 1.5rem;
   padding: 10px 20px;
}
.general-enquiry .enquiry-form form #msg{
   height: 120px;
}
.general-enquiry .enquiry-form form input:focus{
   border: 2px solid #ec9122;
   outline: none;
}
.general-enquiry .enquiry-form form button{
    background-color: #ec9122;
    color: #fff;
    width: max-content;
    border: none;
    outline: none;
    padding: 0.2rem 1.2rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
}
.general-enquiry .enquiry-form form button:hover{
    background-color: #c97002;
}

@media screen and (max-width: 576px) {
  .general-enquiry{
    padding: 2rem 0 2rem 0;
}
.general-enquiry .enquiry-form h2{
  font-size: 1.6rem;
}
.general-enquiry .enquiry-form .line{
  width: 220px;
  margin-top: 3px;
}
.general-enquiry .enquiry-form form{
  margin-top: 1rem;
}
.general-enquiry .enquiry-form form input{
  width: 92vw;
  height: 45px;
  border-radius: 7px;
  margin-top: 1.2rem;
  padding: 7px 20px 10px 15px;
}
}
/* General Enquiry Styles Ends Here */


   /* Footer Styles Starts Here */
   footer{
    background-color: #ec9122;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
  }
  .footer{
    display: flex;
    justify-content: space-between;
  }
  .footer .left{
    width: 29%;
    color: #fff;
  }
  .footer .left img{
    background-color: #fff;
    padding: 0.5rem 0.8rem;
    margin-top: 1rem;
  }
  .footer .left a{
    color: #fff;
  }
  .footer .left .foot-icons{
    margin-top: 2rem;
  }
  .footer .left .foot-icons i{
    margin-right: 0.7rem;
    font-size: 1.3rem;
    transition: all 0.2s ease;
  }
  .footer .left .foot-icons i:hover{
    scale: 1.1;
    color: #5f86c3;
  }
  
  .footer .center{
    width: 30%;
  }
  .footer .center h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer .center img{
    width: 100%;
    /* position: relative; */
  }
  .footer .center button{
    position: absolute;
    left: 75%;
    top: 46%;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #616161;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
  }
  .footer .center button:hover{
    background-color: #ededede4;
  }
  .footer .center .linkedin-content{
   height: 150px;
   overflow-y: scroll;
   padding: 10px;
   background-color: #d2d0d0;
  }
  
  .footer .end{
   width: 22%;
   color: #fff;
   display: flex;
   flex-direction: column;
  }
  .footer .end h3{
   font-size: 1.1rem;
  }
  .footer .end p{
   font-size: 0.8rem;
  }
  .footer .end div{
   margin-bottom: 1rem;
  }
  /* .footer .end img{
   width: 30px;
   margin-left: 90%;
   margin-top: 1.3rem;
   cursor: pointer;
   transition: all 0.3s ease;
  } */
  /* .footer .end img:hover{
   scale: 1.1;
  } */
  .footer-line .line{
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    margin-top: 1rem;
  }
  .copyright{
   display: flex;
   justify-content: space-between;
   color: #fff;
   margin-top: 7px;
   font-size: 0.9rem;
  }

  #back-to-top{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 1.2rem;
    right: 1.4rem;
    box-shadow: rgba(0, 0, 0, 0.308) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.3s ease;
  }
  #back-to-top:hover{
      scale: 1.1;
  }

   /* Footer Media Queries */
   @media screen and (max-width: 1400px) {
    .footer .center button{
        top: 42%;
      }
  }

  @media screen and (max-width: 576px) {
    footer{
        margin-top: 3rem;
    }
    .footer{
        flex-direction: column;
      }
      .footer .left{
        width: 100%;
      }
      .footer .left img{
        margin-top: 0.5rem;
        width: 25%;
      }
      .footer .left .foot-icons{
        margin-top: 1rem;
      }
      .footer .center{
        width: 100%;
        margin-top: 2rem;
      }
      .footer .end{
        width: 100%;
        margin-top: 2rem;
      }
      .copyright{
        font-size: 0.7rem;
       }
       #back-to-top{
        width: 20px;
        height: 20px;
        bottom: 1rem;
        right: 1rem;
      }
  }

  /* Footer Styles Ends Here */
