@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

html,
body {
  height: 100%;
  width: 100%;
}
.content-start{
  margin-top: 110px;
}


/* .VIpgJd-ZVi9od-ORHb-OEVmcd{
  display: none !important;
} */

/* ------------------------------------------------------------------------- HEADER PAGE CSS --------------------------------------------------------------------------------*/
.navbar {
  border-bottom: 5px solid #ff4d00 ;
}

.navbar .dropdown-item {
  transition: 0.2s background-color;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #ff4d00 ;
  color: #fff;
}
.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
  outline: none;
}

#logo {
  width: 200px;
  height: 80px;
  margin-left: 264px;
}

.touch-btn {
  text-decoration: none;
  background-color: #ff4d00 ;
  color: #fff;
  transition: 0.5s background-color;
  padding: 6.5px 15px;
  margin-right: 300px;
}

.touch-btn:hover {
  background-color: #ff4d00;
  color: #fff;
}

.nav-link {
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

.nav-link:hover,
.nav-link.active {
  color: #ff4d00 ;
}


/* ------------------------------------------------------------------------- INDEX PAGE CSS -------------------------------------------------------------------------------*/

/* --------------------------------------------------------------------------Header Section -------------------------------------------------------------------------------*/
.hero-section {
  /* height: 89vh; */
  background-size: cover;
  background-position: center;
}


.start-btn {
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #ff4d00 ;
  color: #ff4d00 ;
  padding: 15.5px 31px;
  border-radius: 7px;
  margin: 10px;
  transition: all 0.5s ease;
}

.start-btn:hover,
.start-btn:focus {
  box-shadow: inset 0 0 0 6em #ff4d00 ;
  color: #fff;
}

.portfolio-btn {
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #ff4d00 ;
  color: #ff4d00 ;
  padding: 15.5px 31px;
  border-radius: 7px;
  margin: 10px;
  transition: all 0.5s ease;
}

.portfolio-btn:hover,
.portfolio-btn:focus {
  box-shadow: inset 0 -6em 0 0 #ff4d00 ;
  color: #fff;
}

.content {
  padding-top: 80px;
  /* padding-bottom: 80px; */
}

.content h1 {
  font-weight: bolder;
}


/* ------------------------------------------------------------------------------Services Section -------------------------------------------------------------------------- */
.services {
  /* background-color: #fbfbfb; */
  padding: 50px;
}

.services h2 {
  color: #ff4d00 ;
  font-weight: 700;
  font-size: 60px;
}

.services .service-cards {
  border-bottom: 1px solid #000;
  transition: all 0.5s ease-in-out;
}

.services .service-cards p {
  font-size: large;
}

.services .service-cards h4, img {
  color: #000;
  transition: all 0.5s ease;
}

.services .service-cards:hover,
.services .service-cards:focus {
  border-bottom: 1px solid #ff4d00 ;
  h4 {
    color: #ff4d00 ;
  }
}

.services .service-cards .service-btn {
  text-decoration: none;
  border: 1px solid #ff4d00 ;
  color: #000;
  padding: 10px;
  transition: all 0.5s ease;
}

.services .service-cards .service-btn:hover,
.services .service-cards .service-btn:focus {
  box-shadow: inset 7em 0 0 0 #ff4d00 ;
  color: #fff;
}

.services .explore-btn {
  text-decoration: none;
  border: 1px solid #ff4d00;
  color: #000;
  padding: 15.5px 31px;
  transition: all 0.5s ease;
}

.services .explore-btn:hover,
.services .explore-btn:focus {
  box-shadow: inset 0 0 0 2em #ff4d00;
  color: #fff;
}


/* ------------------------------------------------------------------------------ Counter Section -------------------------------------------------------------------------- */
.counter {
  background-color: #ff4d00;
}

.counter h2 {
  color: #fff;
  font-weight: 700;
  font-size: 90px;
}

.counter h5 {
  color: #fff;
}

.counter p {
  color: #fff;
  word-spacing: 5;
}


/* -------------------------------------------------------------------------- Portfoilio Section --------------------------------------------------------------------------- */
.portfolio-section {
  margin-top: 50px;
}
.portfolio-section h2 {
  font-size: 50px;
}
.portfolio-section h6 {
  color: #ff4d00;
}
.portfolio-section .portfolio-img {
  margin-top: 10px;
  /* height: 350px; */
  /* overflow: hidden; */
  animation: SclAnimation 1s ease;
}

@keyframes SclAnimation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.portfolio-section .portfolio-img .portfolio-box {
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.portfolio-section .portfolio-img .portfolio-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(234, 71, 35, 0.75);
  transition: opacity 0.15s ease-in;
  opacity: 0;
  padding-top: 80px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.portfolio-section .portfolio-img:hover .portfolio-cover {
  opacity: 1;
}

.portfolio-section .portfolio-name {
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 100px;
}
.portfolio-section a{
    text-decoration: none;
    color: #fff;
}

.portfolio-section .items-links {
  color: #ff4d00;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.portfolio-section .item-link {
  padding: 10px 30px;
  border: 1px solid lightgray;
  transition: all 0.8s ease;
  border-radius: 3px;
}
.portfolio-section .item-link:hover,
.portfolio-section .item-link:focus {
  box-shadow: inset 12.2em 0 0 0 #ff4d00;
  color: #fff;
}
.portfolio-section .link-active {
  background-color: #ff4d00;
  color: #fff;
}

/* -------------------------------------------------------------------------- Testimonial Section -------------------------------------------------------------------------- */
.testimonial-section h2 {
  color: #ff4d00;
  font-size: 60px;
  font-weight: 700;
  margin-top: 40px;
}

.testimonial-section h2 {
  color: #ff4d00;
}

.testimonial-section p {
  font-size: 20px;
}
/* ---------------------------------------------------------------------------Team Section --------------------------------------------------------------------------------- */
.team-section {
  background-color: #fbfbfb;
  margin-top: 50px;
}
.team-section h2 {
  color: #ff4d00;
  font-size: 60px;
  font-weight: 700;
}
.intro p {
  margin-bottom: 0;
}

.people {
  padding: 50px 0;
  cursor: pointer;
}
.item {
  margin-bottom: 30px;
  padding: 0%;
}

.item .box {
  text-align: center;
  background-repeat: no-repeat;
  /* background-size: cover;
  background-position: center; */
  height: 500px;
  position: relative;
  overflow: hidden;
}

.item .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 148, 255, 0.75);
  transition: opacity 0.15s ease-in;
  opacity: 0;
  padding-top: 80px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.item:hover .cover {
  opacity: 1;
}

.item .name {
  font-weight: bold;
  margin-bottom: 8px;
}

.item .title {
  text-transform: uppercase;
  font-weight: bold;
  color: #bbd8fb;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
}

.social {
  font-size: 18px;
}

.social a {
  color: inherit;
  margin: 0 10px;
  display: inline-block;
  opacity: 0.7;
  color: #fff !important;
}
.social a:hover {
  opacity: 1;
}


/* --------------------------------------------------------------------------------- CTA SECTION --------------------------------------------------------------------------- */
.cta-index h2{
  font-size: 50px;
  color: #000;
}
.cta-index p{
  font-size: 30px;
  color: #000;
}
.cta-index #cta-index{
  padding: 10px 30px;
  background: #ff4d00;
  text-decoration: none;
  color: #fff;
  border: 1px solid lightgray;
}


/* -------------------------------------------------------------------------------- FOOTER PAGE CSS ------------------------------------------------------------------------ */
/* .footer {
  background-color: #fbfbfb;
  border-top: 5px solid #ff4d00;
}

.footer h1 {
  color: #000;
  font-size: 50px;
}

.footer p {
  color: #000;
  font-size: 20px;
}
.footer a {
  text-decoration: none;
  color: #000;
}
.footer h2 {
  color: #000;
}
.footer img {
  width: 200px;
  height: 80px;
} */

/* .footer-services{
  text-align: left;
  padding-left: 150px;
} */


/* -------------------------------------------------------------------------- FOOTER 2 CSS --------------------------------------------------------------------------------- */
.footer-2 {
  background-color: #ff4d00;
  /* border-top: 5px solid #ea4723; */
}

.footer-2 h1 {
  color: #fff;
  font-size: 50px;
}

.footer-2 p {
  color: #fff;
  font-size: 20px;
}
.footer-2 a {
  text-decoration: none;
  color: #fff;
}
.footer-2 a:hover {
  text-decoration: none;
  color: #fff;
}
.footer-2 h2 {
  color: #fff;
}
.footer-2 img {
  width: 200px;
  height: 65px;
  margin-left: -5px;
}

.footer2-services{
  text-align: left;
  padding-left: 50px;
}
.footer-2 .social{
  margin-left: -13px;
  font-size: 18px;
}
.footer-2 .line{
  width: 2px;
}


/* .latest-blog{
  background-color: #fbfbfb;
} */

/* ----------------------------------------------------------------- SERVICES PAGES CSS -------------------------------------------------------------------------------------*/
.brandIdentity-header{
  height: 20vh;
  background-image: linear-gradient(#f8dccc, #fff);
}
.brandIdentity-header a{
  text-decoration: none;
  color: #000;
}

.brandIdentity-top p{
  font-size: 18px;
  color: #656565;
}

.brandIdentity-tags .btn{
  padding: 10px 20px;
  border: 1px solid lightgray;
  width: 100%;
  font-size: 20px;
  transition: all 0.5s ease;
  color: #000;
}

.brandIdentity-tags .btn:hover,
.brandIdentity-tags .btn:focus{
  box-shadow: inset 31em 0 0 0 #ff4d00;
  color: #fff;

  img{
    filter: brightness(0) invert(1);
  }

}

.brandIdentity-tags .big-btn:hover,
.brandIdentity-tags .big-btn:focus{
  box-shadow: inset 42.5em 0 0 0 #ff4d00;
  color: #fff;

  img{
    filter: brightness(0) invert(1);
  }

}

.brandIdentity-tags .card{
  border: none;
  color: #656565;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-services p{
  font-size: large;
}


.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper .static-txt{
  color: #000;
  font-size: 60px;
  font-weight: 700;
  margin-left: 30px;
}
.wrapper .dynamic-txts{
  /* margin-left: 15px; */
  height: 90px;
  line-height: 90px;
  overflow: hidden;
}
.dynamic-txts li{
  list-style: none;
  color: #ff4d00;
  font-size: 60px;
  font-weight: 700;
  position: relative;
  top: 0;
  animation: slide 12s steps(4) infinite;
}
.dynamic-txts ol, ul{
  padding-left: 14%;
}
@keyframes slide {
  100%{
    top: -360px;
  }
}
.dynamic-txts li span{
  position: relative;
  margin: 5px 0;
  line-height: 90px;
}
.dynamic-txts li span::after{
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-left: 2px solid #ff4d00;
  animation: typing 3s steps(10) infinite;
}
@keyframes typing {
  40%, 60%{
    left: calc(100% + 30px);
  }
  100%{
    left: 0;
  }
}

.service-form{
  /* border: 1px solid; */
  border-radius: 20px;
  box-shadow: 0px 0px 10px 10px #e9e8e8;
}
.service-form label{
  font-size: 18px;
  color: #ff4d00;
}

.service-form input{
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #ff4d00;
}

.service-form textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid #ff4d00;
}
.service-form button{
  background-color: #ff4d00;
  padding: 10px 30px;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.faq-questions{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faq-questions a{
  border: 1px solid #ff4d00;
  width: 80%;
  padding: 10px;
  text-decoration: none;
}
.faq-questions a:hover{
  border: 1px solid #ff4d00;
}
.faq-questions .card{
  margin: 0% !important;
  width: 80%;
}

/* ----------------------------------------------------------------------- ABOUT US PAGE ----------------------------------------------------------------------------------*/
.about-content h1{
  font-size: 40px;
  color: #ff4d00;
}

.about-content P{
  font-size: 18px;
}

.about-content #about-learn{
  text-decoration: none;
  padding: 10px 30px;
  border: 1px solid lightgray;
  color: #ff4d00;
  font-size: 18px;
  transition: all 0.5s ease;
}

.about-content #about-learn:hover,
.about-content #about-learn:focus {
  box-shadow: inset 9em 0 0 0 #ff4d00;
  color: #fff;
}

.about-mv{
  background-color: #fbfbfb;
}

.about-mv .mission{
  border: 1px solid lightgray;
  border-radius: 20px;
  /* background-color: rgb(247, 245, 245); */
  background-color: #ff4d00;
  color: #fff;
}

.about-mv .vision{
  border: 1px solid lightgray;
  border-radius: 20px;
  /* background-color: rgb(247, 245, 245); */
  background-color: #ff4d00;
  color: #fff;
}

.about-greysell h2{
  font-size: 45px;
  color: #ff4d00;
}

.about-greysell p{
  font-size: 18px;
}

.cta-about h2{
  font-size: 50px;
  color: #000;
}

.cta-about p{
  font-size: 30px;
  color: #000;
}

.cta-about #cta-about{
  padding: 10px 30px;
  background: #ff4d00;
  text-decoration: none;
  color: #fff;
  border: 1px solid lightgray;
}


/* ---------------------------------------------------------------------------- CONTACT US PAGE ----------------------------------------------------------------------------*/
.tel{
  border: 2px solid #de5f00;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.5s ease;
  margin-right: 20px;
}
.tel a{
  text-decoration: none;
  color: #000;
}

.tel:hover, 
.tel:focus{
  box-shadow: inset 18em 0 0 0 #ff4d00;

  img{
    filter: brightness(0) invert(1);
  }
  a{
    color: #fff;
  }

}

.tel img{
  margin-top: 27px;
}

.mail{
  border: 2px solid #ff4d00;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.5s ease;
  margin-right: 20px;
}

.mail a{
  text-decoration: none;
  color: #000;
}

.mail:hover, 
.mail:focus{
  box-shadow: inset 18em 0 0 0 #ff4d00;

  img{
    filter: brightness(0) invert(1);
  }
  a{
    color: #fff;
  }

}

.mail img{
  margin-top: 27px;
}

.address{
  border: 2px solid #ff4d00;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.5s ease;
  text-decoration: none;
  margin-right: 20px;
}

.address:hover, 
.address:focus{
  box-shadow: inset 18em 0 0 0 #ff4d00;
  color: #fff;

  img{
    filter: brightness(0) invert(1);
  }

}



.timing{
  border: 2px solid #ff4d00;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.5s ease;
  text-decoration: none;
}

.timing:hover, 
.timing:focus{
  box-shadow: inset 18em 0 0 0 #ff4d00;
  color: #fff;
  img{
    filter: brightness(0) invert(1);
  }

}

/* .timing img{
  margin-top: 20px;
} */

.social a{
  text-decoration: none;
  transition: all 0.5s ease;
  color: #000;
}
.social a:hover,
.social a:focus{
  transform: scale(1.2);
}


/* -------------------------------------------------------------------------- BLOGS PAGE ----------------------------------------------------------------------------------- */

.category ol{
  list-style-type: none;
  padding-left: 0% !important;
}

.category ol li{
  list-style-type: none;
  padding: 10px 10px;
  background-color: #f8f8f8;
  border: 1px solid lightgrey;
  margin-bottom: 5px;
  transition: all 0.5s ease;
}
.category ol li:hover,
.category ol li:focus {
  box-shadow: inset 33em 0 0 0 #ff4d00;
  color: #fff;
}


.category a{
  text-decoration: none;
  color: #000;
}
.newsletter .newsletter-background{
  background-image: url('../images/newsletter-1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; 
  height: 13vh;
  /* opacity: 0.2; */
}

/* .card-title{
  color: #ff4d00;
} */
.cards-wrapper {
  display: flex;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%;
}
.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  border-radius: 0;
}
.carousel-inner {
  padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .card img {
    height: 11em;
  }
}

/*--------------------------------------------------------------------------------- LOCATION PAGES -------------------------------------------------------------------------*/
.location-services{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #ff4d00;
  margin-top: 20px;
  margin-right: 26px;
  width: 23% !important;
  padding: 30px 30px;
  transition: all 0.5s ease;
}

.location-services .location-read{
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #ff4d00;
  color: #ff4d00;
}

.location-services:hover, 
.location-services:focus{
  box-shadow: inset 0 -16.5em 0 0 #ff4d00;

  img{
    filter: brightness(0) invert(1);
  }
  a{
    color: #fff;
  }
  h6{
    color: #fff;
  }
  .location-read{
    border: 1px solid #fff;
    color: #fff;
  }

}
.portfolio-col{
  transition: all 0.8s ease;
  margin-top: 35px;
}
.portfolio-col:hover{
  transform: scale(1.05);
}



