@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@400;700&display=swap');   
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
body {
      padding: 0;
      margin: 0;
      font-family: 'Roboto', sans-serif;
    }
    img{
      max-width: 100%
    }
    * {
      box-sizing: border-box
    }
    .gap-30 {
      height: 30px;
    }
/*----menu ---*/
.menubar li.nav-item.active .nav-link {
  color: #14b500 !important;
}
.menubar .navbar-nav .nav-item{
  position: relative;
}
.menubar li.nav-item.active:before {
  content: '';
  height: 2px;
  position: absolute;
  width: calc(100% - 20px);
  background: #14b500;
  bottom: 0;
  left: 10px;
}
.navbar-dark .navbar-toggler-icon {
  background-image: url(../images/download.svg);
}
.header_logo img {
  max-width: 120px;
}
.navbar-dark .navbar-brand {
  display: flex;
  align-items: center;
}
.logo_content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  margin: 0;
}
.logo_content h1 span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin: 0;
  display: block;
  font-weight: 400;
}
.logo_content p {
  font-size: 12px;
  margin: 0;
}
.bg-dark {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.darkHeader {
  background-color: #000 !important;
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 8px 20px;
  font-size: 17px;
}

.btn.btn-success.customer-login {
  background: #006bb5;
  border-color: #006bb5;
  transition: .5s;
  border-radius: 0px;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}
/* button.btn.btn-success.customer-login:hover {
  background: yellow;
} */
/*---- slider ------*/
.slider-container {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	height: 100vh;
}

.slider-container h1 {
  font-family: 'Poppins', sans-serif;
	color: #fff;
	font-size: 50px;
	letter-spacing: 5px;
	position: relative;
	z-index: 9;
	text-align: center;
  text-shadow: 1px 2px 3px #666;
  max-width: 750px;
}

.slider-container::after {
	/* background: url(../images/banner.jpg); */
	content: '';
	position: absolute;
	opacity: 0.3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.slider-container .slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	transform: scale(1.15);
	transition: opacity .6s ease;
}

.slider-container .slide.active {
	animation: grow 4s linear forwards;
	opacity: 1;
}


@keyframes grow {
	0%, 20% {
		transform: scale(1);
	}
	
	75%, 100% {
		transform: scale(1.15);
	}
}

.controls-container {
	position: absolute;
	top: 50%;
	right: 10px;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
	z-index: 2;
}
.slick-next:before, .slick-prev:before {
  color: #f8a008
}
.slick-slide img {
    display: block;
    object-fit: cover;
    padding: 0 10px;
}
.slick_image_container {
  position: relative;
  padding-bottom: 90%;
}
.slick_image_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: top center;*/
}
.single_slide_image {
  position: relative;
}
img.slick_leaf_image {
  width: 68px;
  height: 50px;
  left: 45%;
  top: 88px;
}
.about_header h1 {
  font-size: 36px;
  text-align: center;
  color: #f8a008;
}
.about {
  padding: 45px 0;
  position: relative;
  /* background-image: url(../images/about_bg_1.png); */
  background-repeat: no-repeat;
  background-position: center center;
  background: #000;
}

.about_header p {
  max-width: 950px;
  margin: auto;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
.slider_content h2 {
  font-size: 20px;
  text-align: center;
  margin: 0;
  padding: 15px 0;
  color: #f8a008;
}
.slider_content p {
  padding: 0 15px;
  color: #fff;
  text-align: center;
}

  /*------ footer------- */
  
/*----- copyright -------*/
.copyright{
  background-color: #0e0e0e;
  padding-top: 25px;
}
.bottom_menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.bottom_menu ul li{
  position: relative;
}
.bottom_menu ul li:after {
content: '';
position: absolute;
width: 1px;
height: 100%;
background-color: #fff;
}
.bottom_menu ul li:last-child:after {
  width: 0px;
}
.bottom_menu ul li a{
  padding: 0px 10px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}
.copyright_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  padding: 22px 0;
}
.copyright_container p {
  color: #a6cae8;
  margin: 0;
}

/*/ start count stats /*/

section#counter-stats {
	display: flex;
	justify-content: center;
  padding: 120px 0;
}
.parallax-window {
  position: relative;
}
.parallax-overlay {
  position: absolute;
  background-color: rgba(33,51,82,0.8);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.stats h5 {
  color: #c79d52;
  font-weight: 700;
}
.counting {
  color: #fff;
}
.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.stats .fa {
  color: #fff;
  font-size: 42px;
}

/*/ end count stats /*/
/*------ company section ------*/
.company_section {
  background-color: #ccc;
  padding: 75px 0;
}
.company-cell {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 15px;
}
.company_content h2, .company_content p {
  margin: 0;
  color: #fff;
}
.company_content_logo img {
  max-width: 100px;
  margin: 0 auto;
  display: block;
}
.company_content {
  margin-bottom: 25px;
}
.bg-grey{
  background-color: #000 !important;
}
.bg-blue {
  background-color: #010241;
}
.bg-skyb {
  background: url(../images/fancy.jpg);
  padding: 80px 60px 80px 60px;
}
.company_content_logo {
  padding: 25px;
}
.testimonial-slider h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}
.testimonial-slider .carousel-caption p {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}
.testimonial-image img {
  height: 460px;
  width: 100%;
  object-fit: cover;
}
.company_content h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.company_content p {
  padding: 30px;
  text-align: center;

}
.sub_title h1 {
  font-size: 65px;
  max-width: 320px;
  font-family: 'Old Standard TT', serif;
  font-weight: 700;
}
.booking_btn a {
  padding: 12px 18px;
  background: #006cb5;
  color: #fff;
}
.booking_btn a:hover {
  text-decoration: none;
}
.sub_title p {
  font-family: 'Poppins', sans-serif;
}
/*------ profile ------*/
.company_profile {
  padding: 75px 0;
}
.profile_heading h1 {
  text-align: center;
  margin: 0px;
}
p.profile_content {
  line-height: 32px;
  font-size: 16px;
  padding: 20px;
}
.bg-skyblue {
  background-color: #006bb5;
}
.bg-yellow {
  background-color: #d6901e !important;
}
.construction_container {
  /* padding: 20px; */
  box-shadow: 2px 0px 17px 5px rgba(145,168,238,0.75);
-webkit-box-shadow: 2px 0px 17px 5px rgba(145,168,238,0.75);
-moz-box-shadow: 2px 0px 17px 5px rgba(145,168,238,0.75);
}
.construction_container h1 {
  font-size: 28px;
}
/*----- others projects ------*/
.rk-tabs {
  padding: 45px 0;
}
.rk-tabs h1 {
  font-size: 36px;
  text-align: center;
  color: #000;
}
.rk-tabs .nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #006bb5;
  border-color: #dee2e6 #dee2e6 #fff;
  border-radius: 0;
}
.rk-tabs .nav-tabs .nav-link {
  color: #000 !important;
}
.rk-tabs .rk-tabs-content .container {
  padding: 0;
}
.others_project {
  padding: 75px 0;
}
.project_single-cell img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.projects_cell {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-gap: 15px;
}
.project_single-cell {
  position: relative;
  padding-bottom: 65%;
  overflow: hidden;
}
.content-overlay {
  background: rgba(0, 108, 181, 0.8);
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  display: grid;
    place-items: center;
}
.content-overlay img {
  width: 150px;
  height: auto;
}
.project_single-cell:hover .content-overlay {
  bottom: 0;
}
/*----- management ----*/
.profile_heading h1 {
  margin: 0;
}
.management h1 {
  text-align: center;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}
.management h2 span {
  color: #14b500;
}
.management h2 {
  color: #fff;
}
.management-image img {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 100%;
  object-fit: cover;
  border: 16px solid #c6e5e9;
  padding: 4px;
}
.management-image img:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  background-color: red;
}
/* .management-image:before {
  position: absolute;
  content: '';
  background-color: #c6e5e9;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
}
.management-image:after {
  position: absolute;
  content: '';
  background-color: #c6e5e9;
  right: -14px;
  top: 46%;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  z-index: -1;
} */
.management p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #f9f9f9;
}
.management-image {
  position: relative;
  /* background: #c1d6da;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  padding: 14px;
  position: relative;
  display: block; */
}
.management-speech {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.management h2 {
  margin-bottom: 10px;
}
.management {
  padding: 45px 0;
  background-color: #000;
}
.mission {
  padding: 45px 0;
}
.vision {
  padding-bottom: 45px;
}
.mission h3, .vision h3 {
  margin-bottom: 20px;
}
.mission h3 span, .vision h3 span {
  color: #14b500;
}
.mission ul, .vision ul {
  padding-left: 15px;
}
.mission ul li, .vision ul li {
  position: relative;
  line-height: 1.8;
} 
.mission ul li:before, .vision ul li:before {
  content: '';
  background: #14b500;
  width: 6px;
  height: 6px;
  left: -15px;
  top: 11px;
  position: absolute;
}
/*---- why choose ----*/
.choose-rk {
  background-color: #000;
  padding: 45px 0;
}
.choose-rk h1 {
  text-align: center;
  color: #fff;
}
.choose-rk h2 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.choose-rk p {
  font-size: 16px;
  color: #f9f9f9;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
  margin: 0;
}
.choose-icon {
  background: #fff;
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  width: 100px;
  height: 100px;
  padding: 12px;
  border-radius: 100%;
}
.contact {
  background: #006cb5;
  padding: 75px 0
  }
  .contact-cell {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 30px;
  }
  .contact_single_cell h1 {
    color: #fff;
    max-width: 356px;
}
.contact_single_cell p {
    color: #fff;
    margin: 0px;
    line-height: 2.0;
    font-size: 18px;
}
.single-cell-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.social-icon {
  padding: 0;
}
.social-icon li a {
  font-size: 18px;
  background: #fcf;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  margin: auto;
  text-align: center;
}
.icon_container {
    display: flex;
    align-items: center;
}
.icon_area .fas {
    color: #fff;
    font-size: 28px;
    margin-right: 15px;
}
.icon_area_content p {
    font-size: 20px;
}
.contact_single_cell h1 {
  font-size: 48px;
}
.form-area {
  position: relative;
  padding: 25px 25px 25px 155px;
  background-color: #fff;
  background-image: url(../images/contact_sideimage.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 155px 100%;
}
.icon_area_content.time p:last-child {
font-size: 20px;
font-weight: 300;
}
.form-area .form-control {
  border-radius: 0;
  background: #f7f7f7;
}
.form_btn {
  background-color: #006cb5;
  border-color: #006cb5;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0px;
    display: block;
    width: 100%;
    padding: 12px 25px;
    text-transform: uppercase;
}
.customer_note{

background-color: #ececec;
padding: 25px 0;
}
.customer_single_cell {
    position: relative;
    background: #fff;
    border-radius: 30px;
    margin-left: 70px;
}
.customer_single_cell_image img {
    width: 130px;
    height: 130px;
    border: 6px solid #fff;
    object-fit: cover;
    border-radius: 50%;
}
.customer_single_cell p {
    padding: 40px 10px 10px 60px;
    margin: 0px;
}
p.author_name {
    padding-top: 0;
    padding-bottom: 45px;
}
.customer_single_cell_image {
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translate(-50%, -50%);
}
.customer_note_header h1 {
  font-size: 30px;
  color: #312c7f;
  text-align: center
}
.customer_note_header h1 span {
  color: #00aeef;
}
.customer_note_header p {
  font-size: 24px;
  text-align: center;
  margin: 0px;
}


/*-----float buttons------*/
.social-left-panel {
  position: fixed;
  top: 145px;
  width:50px;
  margin-top:38px;
  z-index: 9;
  }
  .social-left-panel ul {
  padding: 0px;
  -webkit-transform: translate(-270px, 0);
  -moz-transform: translate(-270px, 0);
  -ms-transform: translate(-270px, 0);
  -o-transform: translate(-270px, 0);
  transform: translate(-270px, 0);
  }
  .social-left-panel ul li {
  display: block;
  margin: 5px;
  background-color: #1d4e89;
  width: 460px;
  text-align: right;
  margin-left: -134px;
  padding: 10px;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  font-family: 'Roboto', sans-serif;
  font-size:12px;
  
  }
  /* .social-left-panel ul li:first-child:hover {
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background-color:#073f55;
  } */
  .social-left-panel ul li:first-child:hover {
  margin-left: 55px;
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background-color:#1d4e89;
  }
  /* .social-left-panel ul li:nth-child(3):hover {
  margin-left: 43px;
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background-color:#073f55;
  } */
  .social-left-panel ul li:nth-child(2):hover {
  margin-left: 35px;
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background-color:#1d4e89;
  }
  .social-left-panel ul li:last-child:hover {
  margin-left: 80px;
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background-color:#1d4e89;
  }
  .social-left-panel ul li:nth-child(2):hover i {
    color: #fff;
    background-color: #ffffff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
  }
   .social-left-panel ul li:nth-child(3):hover i {
    color: #fff;
    background-color: #ffffff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
  }
   .social-left-panel ul li:nth-child(4):hover i {
    color: #fff;
    background-color: #ffffff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
  }
  .social-left-panel ul li:last-child:hover i {
    color: #fff;
    background-color: #ffffff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
  }
  .social-left-panel ul li a {
      color: #fff;
      font-size: 16px;
  }
  .social-left-panel ul li:hover a {
  color:#ffffff;
  font-size: 16px;
  
  }
  .social-left-panel ul li:first-child:hover i {
  color: #fff;
  background-color: #fff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  }
  .social-left-panel ul li i {
  margin-left: 3px;
  color: #000;
  background-color: #403c90;
  padding: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align:center;
  background: #ffffff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  }

   .fa-whatsapp:before {
   color: #25D366
       }
    .fa-facebook-f:before {
      color: #403c90
    }
   .social-left-panel .fa-envelope:before {
       color: #cb3530;
   }
/*---- we say -----*/
.we_say {
  padding: 75px 0;
  background-color: #000;
}
.we_say_logo {
  text-align: center;
}
.we_say_logo img {
  max-width: 150px;
}
.we_say h1 {
  text-align: center;
  color: #f8a008;
}
.we_say_cell{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 15px;
}
.we_say_image{
  position: relative;
  padding-bottom: 100%;
}
.we_say_image .say_own_image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.we_say_img_content {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  left: 0;
  width: 100%;
  padding: 15px 5px;
}
.we_say_img_content h2 {
  font-size: 25px;
  margin: 0;
  text-align: center;
}
.we_say_img_content p {
  text-align: center;
  margin: 0;
  font-weight: 700;
  color: #006bb5;
}
.services h1{
  text-align: center;
}
/*----- faq ------*/
.faq {
  padding: 75px 0;
}
.faq_content {
  text-align: center;
}
div[data-toggle="collapse"]{
  border-bottom:1px solid #BBDEFB;
  width:100%;
  cursor:pointer;
  padding:1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pd-2{
  padding:2%;
}
.pd-r-2{
  padding-right:2%;
}
.pd-l-2{
  padding-left:2%;
}
.pd-t-2{
  padding-top:2%;
}
.pd-b-2{
  padding-bottom:2%;
}
body{
  font-family: 'PT Sans', sans-serif;
}
h1,h2,h3,h4,h5,.lead,div[data-toggle="collapse"]{
  font-family: 'Oswald', sans-serif;
}
ul li{
  list-style:none;
}
/* .collapse{
   background:#F5F5F5;
} */

/*----media -----*/

#demo {
  height:100%;
  position:relative;
  overflow:hidden;
}


.green{
  background-color:#6fb936;
}
        .thumb{
            margin-bottom: 30px;
        }
        
        .page-top{
            margin-top:85px;
        }

   
img.zoom {
    width: 100%;
    height: 200px;
    border-radius:5px;
    object-fit:cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}
        
 
.transition {
    -webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
    .modal-header {
   
     border-bottom: none;
}
    .modal-title {
        color:#000;
    }
    .modal-footer{
      display:none;  
    }

/*----- Contact -----*/
.contact_banner {
  position: relative;
  padding-bottom: 40%;
}
.contact_banner .contact_banner_image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.contact_content h1 {
  font-size: 42px;
}
.contact_content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 99;
}
.address_cell {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 25px;
}
.address_cell p {
  margin-bottom: 6px !important;
}
.address_cell h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
}
.contact_address {
  padding: 45px 0;
}
.address_single_cell {
  text-align: center;
}
.address_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #006bb5;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: block;
  margin: 0 auto 20px;
}
.address_single_cel p {
  margin: 0px;
}
/*----swiper slider */
.swiper {
  padding: 0 50px;
  }
  /* .swiper-wrapper {
      overflow: hidden;
  } */
  
/*---- login page -----*/
.customer_login {
  background-image: url(../images/banner3.jpg);
  background-position:center;
  background-size:cover;
  min-height: 100vh;
}
.form-login {
  background-color: rgba(0,0,0,0.85);
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
  border-color:#d2d2d2;
  border-width: 5px;
  color:white;
  box-shadow:0 1px 0 #cfcfcf;
}
.customer_login .form-control{
  background:transparent!important;
  color:white!important;
  font-size: 18px!important;
}
.customer_login h1{
  color:white!important;
}
.customer_login h4 { 
border:0 solid #fff; 
border-bottom-width:1px;
padding-bottom:10px;
text-align: center;
}

.customer_login .form-control {
  border-radius: 10px;
}
.customer_login .login_area {
  padding: 180px 0;
}

.wrapper a.btn.btn-success.customer-login {
  background: #006bb5;
  border-color: #006bb5;
  transition: .5s;
  border-radius: 0px;
  min-width: 120px;
}
.login_logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.error{
 color:red;
}
.testimonial-slider h3 {
color: #000;
}
.testimonial .carousel-caption {
  position: relative;
  left: 0;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	/* Compensate for excess margin on outer gallery flex items */
	margin: -1rem -1rem;
}

.gallery-item {
	/* Minimum width of 24rem and grow to fit available space */
	flex: 1 0 24rem;
	/* Margin value should be half of grid-gap value as margins on flex items don't collapse */
	margin: 1rem;
	box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease-out;
  min-height: 320px;
  max-height: 320px;
}

.gallery-image:hover {
	transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/
.media {
  padding: 45px 0;
}
.media .heading {
  text-align: center;
}
@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}

@media screen and (max-width: 767px) {
  .company_profile, .faq, .contact {
    padding: 45px 0;
  }
  .slider-container {
    height: 60vh !important;
  }
  section#counter-stats {
    padding: 45px 0;
  }
  .integrity-content {
    margin-bottom: 16px;
  }
  .bg-skyb {
    padding: 30px;
  }
  .header_logo img {
    max-width: 80px;
  }
  .logo_content h1{
    font-size: 25px;
  }
  .logo_content h1 span {
    font-size: 12px;
    max-width: 100px;
}
  .copyright_container{
    justify-content: center;
  }
  .projects_cell, .contact-cell {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
  .first {
      order: 1;
  }
  .second {
      order: 2;
  }
  .third {
      order: 4;
  }
  .fourth {
      order: 3;
  }
  .company_content img {
    width: 100%;
  }
}
@media screen and (max-width: 480px){
 
  .slider-container h1 {
    font-size: 28px;
  }
  .slider-container h1 {
    max-width: 260px;
  }
  .form-area {
    background-image: none;
    padding: 25px;
  }
 
}







.card1 {
  display: block;
  position: relative;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;

  

  
}
.card1:hover:before {
  transform: scale(21);
}
.card1:hover .address_icon {
  background-color: #fff;
  color: #006bb5;
}
.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #006bb5;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}