@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
#button {
  display: inline-block;
  background-color: #221E56;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s ,transform .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transform: translateX(50px);
  border: 3px solid #ffffff;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 35px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  transform: translateX(-0px);
  opacity: 1;
  visibility: visible;
}
/* call icon and whatsapp icon*/
.whatsappimgbox{
  width: 12%;
  position: fixed;
  z-index: 99999;
  bottom: 30px;
  left:30px;
  
}
.scale-up-center{
  animation: scale-up-center 1s ease-in-out infinite alternate both;animation: scale-up-center 1s ease-in-out infinite alternate both;
}
@keyframes scale-up-center {
  0% {
    
    transform: scale(0.9);
  }
  100% {
     transform: scale(1);
  }
}
a{
  text-decoration: none;
}
/*Top navbar  */
.navbgcolor-top{
  background-color:#E35E23;
  position: relative;
  z-index: 1;
}
.navbgcolor-top::after{
  content: "";
  position: absolute;
  background-color: #2386d7;
  width: 30%;
  height: 100%;
  top: 0px;
  right: 0px;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 2% 100%);
  z-index: -1;
}
.navbgcolor-top div ul li a {
  color: #ffffff;
  transition: all .5s;
}
.navbgcolor-top div ul li a:hover {
  color: #ffffff;
}
.navbar-toggler i{
  color: #ffffff;
  font-size: 25px;
}
.navbar-toggler{
  border: none !important;
}
.navbar-toggler:focus{
  box-shadow: none !important;
}
/* navbar */
.navbar-main{
  background-color: #ffffff;
  margin: 0px auto;
  position: sticky;
  top: 0px;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.logo-box{
  width: 50%;
}
.box-nav{
  background-color: #3861D3;
  color: #ffffff !important;
  border-radius: 5px;
  margin:10px;
  padding-left:20px ;
  
}
.navbar-nav li a{
  color: #221E56;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
}
.navbar-nav li a:hover{
  color: #221E56;
}
.navbar-toggler{
 border: none;
}
.navbar-toggler:focus{
  box-shadow: none;
  outline: none !important;
}
.navbar-toggler i{
  font-size: 25px;
  color: #8E1331;
}
.AboutMenu{
  position: relative;
}
.submenu{
  position: absolute;
  background-color: #ffffff;
  width: 15rem;
  padding: 10px 0px;
  transform: translateY(-30px);
  transition: all .4s;
  display: none;
}

.AboutMenu:hover .submenu  {
  opacity: 1;
  display: block;
  transform: translateY(0px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 4;
}
.submenu li a ,.submenu li a{
  transition: all 1s;
  padding: 10px 10px;
  display: block;
  transition: all .5s;
}


.submenu li a:hover {
  color: #ffffff;
 background-color: #8E1331;
}
.Enquire-btn{
  background-color: #3861D3;
  padding: 10px 20px;
  color: #ffffff !important;
  font-weight: bold;
  animation: shadow-drop-center 1s  infinite alternate both;
}

.Enquire-btn i{
animation: shake-lr 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite forwards;
}
@keyframes shake-lr {
  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
}

@keyframes shadow-drop-center {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.895);
  }
}
/* new section */
.box-health-department{
  border: 1px solid #626262;
  padding: 20px;
  border-radius: 10px;
  transition: all .5s;
position: relative;
height: 100%;
}
.box-health-department:hover{
  border: 1px solid #f07700;
}
.box-health-department::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f07700;
  z-index: -1;
  top: 0px;
  right: 0px;
  transition: all .5s;
  transform-origin: right;
  overflow: hidden;
  clip-path: circle(20% at 100% 0);
}
.box-health-department:hover::after{
  border: 1px solid #f07700;
  background-color: #f07700;
  transform-origin: right;
  border-radius: 10px;
  clip-path: circle(141% at 100% 0);
}
.icon-box{
  width: 20%;
}
.img-black{
display: block;
}
.box-health-department:hover .img-black{
display: none;
}
.img-white{
  display: none;
}
.box-health-department:hover .img-white{
  display: block;
  }

.box-health-department:hover .text-heading a ,.box-health-department:hover .textpara ,.box-health-department:hover{
  color: #ffffff;
}
.text-heading a{
font-size: inherit;
color: #1b1b1b;
transition: all .5s;
font-family: "Lora", serif;
font-weight: bold;
}

.textpara{
  transition: all .5s;
  text-align: justify;
}
/* about section */
.images1-box{
  padding: 0px 30px 30px 0px;
  width: 100%;
  height: 100%;
  
  }
  .images1-box img{
     object-fit: cover;
  }
  .images2-box{
    position: absolute;
    width: 50%;
    right: 0px;
    bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .heading-All{
    font-family: "Lora", serif;
    font-weight: bold;
  }
  .bg-line-img{
    background-image: url(../images/diagonal-lines-2.png);
    padding: 20px;
  } 
  .line{
    width: 20%;
    height: 4px;
    background-color: #F07700;
    position: relative;
  }
  .line::after{
    content: "";
    position: absolute;
    left: 40%;
    top: -2px;
    background-color: #243559;
    width: 20%;
    height: 8px;
  }
  .slider-btn {
    background-color: #F07700;
    color: #ffffff;
    padding: 13px 18px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s;
    display: flex;
    align-items: center;
    text-align: center;
 }

 .slider-btn i{
   width: 0%;
   overflow: hidden;
   transition: all .5s;
padding-left:5px ;
 
 }
 .slider-btn:hover i{
  
   width: 18%;
 }

 .slider-btn:hover {
   color: #ffffff;
 }
 .bg-color-white{
  background-color: #ffffff;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.bg-color-yellow{
  background-color: #F07700;
  padding: 10px;
  margin: 5px;
  width: 50%;
}
.list-box li{
  font-size: 20px;
  font-weight: 600;
  line-height: 2.2rem;
}
.list-box li i{
  font-size: 20px;
  color: #677C77;
  padding-right: 5px;
}
/* contact form */
.contact-bg{
  background: linear-gradient(180deg,#3861d3 0%, rgba(240, 119, 0, 1) 37%);
}
.icon-contact-box{
  width: 20%;
}
/* contact page */
.contact-box{
  border-bottom: 1px solid #000000;
  
}
.contact-box div i{
  background-color: #1b45b9;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  color: #ffffff;
}
.heding-address{
  font-weight: bold;
}
/* banner section */
.bg-bannerimg{
  background-image: url(../images/contect-banner.png);
 height: 42vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-bannerimg1{
  background-image: url(../images/about-banner.png);
}
.bg-bannerimg2{
  background-image: url(../images/gallery-banner.png);
}
.bg-bannerimg3{
  background-image: url(../images/Exterior-Interior-banner.png);
}
.bg-bannerimg4{
  background-image: url(../images/Residential-banner.png);
}
.bg-bannerimg5{
  background-image: url(../images/Commercial-banner.png);
}
.bg-bannerimg6{
  background-image: url(../images/Drywall-Repair-banner.png);
}
.bg-bannerimg7{
  background-image: url(../images/PAY-ONLINE-banner.png);
}
.benner-main-box{
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beener-heding{
  font-weight: bold;
}
.breadcrumb li{
  font-weight: bold;
}
.breadcrumb li a{
   color: #0A2244;
   font-weight: bold;
}
/* contact page End */
/* appointment section*/
.form-box{
  background-color: #2e386f9e;
  padding: 30px 20px;
}

.input-box{
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
}
.input-box:focus{
  outline: 2px solid #2E386F;
}
.book-btn{
  border: none;
  background-color: #3861d3;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  font-weight: bold;
  transition: all .5s;
}
.book-btn:hover{
  background-color: #1b45b9;
}

.select-box{
  appearance: none;
  background-image: url("../images/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 1.2rem top 50%;
  background-size: 0.65rem auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-box::placeholder{
  color: #000000;
}
.Appointment-text-box{
  background-color: #2e386f9e;
  padding: 21px 10px;
}
.contact-box{
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.contact-box div h5{
  color: #fff;
  font-weight: bold;
}
.contact-box div a{
   color: #ffffff;
}
/* modal box */
  .modal-contact-page{
  top: 20%;
}
.modal-box-continere{
  text-align: center;
}
.namste-gif{
  width: 20%;
  margin: 0px auto;
}

/* footer section */
.footerbgcolor{
  background-color: #1d2d88;
}
.socilIcon{
  display: flex;
  column-gap: 15px;
  padding-bottom: 30px;
}
.logo-box-footer{
  width: 80%;
}
.icon1{
   border: 1px solid #ffffff;
   border-radius: 50%;
   color: #ffffff;
   padding: 10px 15px; 
   transition: all .5s;
}
.icon2{
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  padding: 10px 12px; 
  transition: all .5s;
}
.icon1:hover ,.icon2:hover{
  color: #ffffff;
  background-color: #2a7e4a;
}
li{
  list-style: none;
}
.socilIcon li a i{
  font-size: 20px;
}

.footerHeading{
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}
.textpara3{
  font-size: 17px;
  color: #ffffff;
  transition: all .5s
}
.textpara3:hover{
  color: #E35E23;
}
.footerlink li a {
     color: #ffffff;
     line-height: 2rem;
}
.copyline{
  color: #ffffff;
  text-align: center;
  padding: 20px 0px;
}
.copyline a{
  color: #E35E23;
}
/* services section */
.bgservices{
  background-color: #eaeaea;
}
.line1{
  width: 10%;
  height: 4px;
  background-color: #F07700;
  position: relative;
  margin: 0px auto;
}
.line1::after{
  content: "";
  position: absolute;
  left: 40%;
  top: -2px;
  background-color: #243559;
  width: 20%;
  height: 8px;
}
.services-main-box{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      height: 60%;
}
.servies-img-box{
  overflow: hidden;
  height: 30vh;
}
.servies-img-box img{
  transition: all 1.5s;
  object-fit: cover;
}
.services-main-box:hover .servies-img-box img{
  transform: scale(1.2) rotate(-5deg);
}
.text-box-services{
  padding: 20px;
  background-color: #ffffff;
  position: relative;
  height: 100%;
}
.text-box-services::after{
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1.5%;
  height: 100%;
  background-color: #F07700;
  transition: all .8s;
}
.services-main-box:hover .text-box-services::after{
  width: 100%;
}
.text-heading1 a{
   font-size: inherit;
   font-family: "Lora", serif;
   transition: all .5s;
   color: #1b1b1b;
   font-weight: bold;
}
.textpara1{
  font-size: 15px;
  transition: all .5s;
}
.services-main-box:hover .text-heading1 a ,.services-main-box:hover .textpara1 ,.services-main-box:hover .text-link-read a{
  color: #ffffff;
}
.text-box{
  position: relative;
  z-index: 1;
}
.text-link-read a{
  color: #F07700;
  font-weight: bold;
  font-size: 17px;
 padding-right: 10px;
 transition: all .5s;
}
.text-link-read{
  position: relative;
}
.services-main-box:hover .text-link-read::after{
  background-color: #ffffff;
}
.text-link-read::after{
  content: "";
  position: absolute;
  width: 49%;
  height: 1.5px;
  top: 50%;
  background-color: #797979;
  transition: all .5s;
}
/* how its work section */
.bg-image-how{
  background-image: url(../images/process_bg_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
 .main-box-work{
  text-align: center;
 }
.number-style{
  color: #ffffff;
  font-weight: bold;
  background-color: #E35E23;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-headinghow{
  font-weight: bold;
}
.image-box{
  width: 40%;
  margin: 0px auto;
  position: relative;
  padding-bottom:20px ;
  
}
.image-box img{
  transition: all .5s;
}
.image-box::after{
  content: "";
  position: absolute;
  left: 0px ;
  width: 100%;
  height: 100%;
  background: linear-gradient(179deg,rgba(42, 123, 155, 0) 0%, rgba(63, 128, 154, 0) 50%, #e35d23 100%);
}
.main-box-work:hover .image-box img{
 transform: rotateY(180deg);
}
/* testimonial section */

.googlelogo{
  width: 40%;
}
.staricon{
  display: flex;
  column-gap: 5px;
  justify-content: center;
}
.staricon1{
  display: flex;
  column-gap: 5px;
  
}
.stariconbox{
  width: 20px;
}
.client{
  margin: 10px;
}
.mainsliderbgcolor{
  background-color: #ffffff;
  width: 100%;
  min-height: 34vh;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.silderimages{
  width: 20%;
}
.datetext{
  color: #7c7c7c;
  font-size: 14px;
  font-weight: 400;
}
.googleGlogo{
  width: 10%;
  
}
.textbox{
  width: 100%;
  height: 15vh;
  overflow: auto;
}
.textbox p{
  color: #3d3d3d;
  font-weight: 400;
}
.owl-nav button.owl-next,
 .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  border-radius: 0 !important;
  opacity: 0;
  transition: all .5s;
  
}
.owl-nav button.owl-next{
  transform: translateX(10px);
}
 .owl-nav button.owl-prev{
  transform: translateX(-10px);
 }
.owl-carousel:hover .owl-nav button.owl-next,
.owl-carousel:hover .owl-nav button.owl-prev {
  transform: translateX(0px);
  opacity: 1;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 35%;
}
 .owl-theme .owl-nav [class*=owl-]{
  background-color: #E35E23 !important;
  color: #ffffff !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #99627A50;
  color: #99627A;
}
/* footer section */
.BG-color-red{
  background-color: #E35E23;
  
}
.bg-color-white{
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.top-footer-text a{
    color: #000000;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.top-footer-icon{
  position: absolute;
  right: 5%;
  bottom: 5%;

}
.top-footer-icon i{
  color: #c2c2c2;
  font-size: 70px;
  transition: all .5s;
}
.bg-color-white:hover .top-footer-icon i{
     transform: scale(1.2) rotate(10deg);
}
/* about us page */
.top-heading{
  text-transform: uppercase;
  color: #E35E23;
  font-weight: bold;
}
/* vision mission */
.bg-color-product{
  background-color: #b4f0ff5e;
}
.Memberships-list{
  padding-left: 20px;
 }
.Memberships-list li{
list-style:  disc;
  color: #0a46b5;
  padding-bottom: 20px;
 
}

.Memberships-list li p{
  color: #2b2b2b;
  font-weight: 600;
  margin: 0;
}
/* gallery page */
.image-box1 img{
 object-fit: cover;
}
/* pay online */
.pay-list li{
   line-height: 2rem;
}
.WhatsApp-btn{
  padding: 10px 20px;
  background-color: #2a7e4a;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
}
.WhatsApp-btn:hover{
  color: #eaeaea;
}
@media (min-width:768px){
  .whatsappimgbox{
    width: 6%;
  }
  .logo-box{
    width: 10%;
  }
  .renk-img{
    width: 70%;
  
  }
  .googlelogo{
    width: 20%;
  }

.images-box-courses{
  width: 60%;
 }
 .challange-img-box{
  width: 80%;
  margin: 0px auto;
}
.icon-contact-box{
  width: 30%;
}
 .bg-line-img{
    padding: 40px;
  } 
}
@media (min-width:992px){
  .whatsappimgbox{
    width: 3%;
  }
  .logo-box{
    width: 10%;
  }
  .banner-text-wrapper{
    min-height: 100vh;
    padding-left: 20rem;
    align-items: start;
 }
 .heading-banner{
  font-size: 64px;
}
  .googlelogo{
    width: 10%;
  }
.counter-box span {
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
}
.icon-contact-box{
  width: 40%;
}
  .box-nav{
  background-color: #3861D3;
  color: #ffffff !important;
  border-radius: 5px;
   font-size: 15px !important;
  padding-left:10px ;
}

}
@media (min-width:1440px){
  .box-nav{
   font-size: 16px !important;
}

}