*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #FF6700; 
}

section#about_us
{
  scroll-margin-top: 140px; 
}

section#service
{
  scroll-margin-top: 100px; 
}

section#footer
{
  scroll-margin-top: 60px; 
}


/*----- pre loader ------*/
.preeloader
{
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  background-color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preeloader img 
{
  width: 120px;
}
.line_gif 
{
  margin-top: 15px;
  width: 180px !important;
}
/*----- /preeloader ------*/

/*---- nav bar ----*/
.nav_bar_main
{
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  z-index: 99;
  width: 100%; 
}
.logo
{
  width: 100px;
}
.nav-item
{
  margin: 0px 15px;
}
.nav-link
{
  font-size: 16px;
  font-weight: 500;
  color: black !important;
  text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover 
{
  color: #FF6700 !important;
}
.call_btn
{
  background-color: #FF6700;
  color: white !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  border-radius: 5px;
  display: inline-block;
}
.call_btn:hover 
{
  color: white !important;
}
.call_btn i 
{
  margin-right: 5px;
}
.call_btn span
{
  display:none;
}

.navbar-toggler
{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 32px;
}
.navbar-toggler i
{
  color: black !important;
}
/*---- /nav bar ----*/

/*---- hero ----*/
.hero
{
  min-height: 100vh;
  width: 100%;
}
.hero_item img 
{
  height: 100vh !important;
  width: 100%;
  object-fit: cover;
  filter: contrast(110%);
}
.hero .owl-carousel .owl-dots
{
  display: none;
}
.hero .owl-carousel .owl-prev 
{
  position: absolute;
  top: 50%;
  left: 2%;
  background-color: #FF6700 !important;
  width: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s;
}
.hero .owl-carousel .owl-next 
{
  position: absolute;
  top: 50%;
  right: 2%;
  background-color: #FF6700 !important;
  width: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s;
}
.hero .owl-carousel .owl-prev span,.hero .owl-carousel .owl-next span 
{
  font-size: 70px;
  font-weight: 100;
  color: white;
}

.owl-theme .owl-nav [class*='owl-prev']:hover,.owl-theme .owl-nav [class*='owl-next']:hover {
  background: #065535 !important;
  color: #FFF;
  text-decoration: none;
  transition: all linear 0.3s;
}
/*---- /hero ----*/

/*---- promo----*/
.promo
{
  padding: 60px 0px 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.promo_item
{
  margin: 12px 0;
  width: 25%;
  height: 250px;
  position: relative;
}
.promo_item img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.promo_overlay
{
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  top: 0px;
  left: 0px;
  position: absolute;
  border-radius: 10px;
}
.promo_item h1{
  font-size: 35px;
  font-weight: 900;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}

.promo_info
{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #FF6700;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  color: white;
  opacity: 0;
  transition: all linear 0.3s;
}
.promo_info h4 
{
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.promo_info p 
{
  font-size: 17px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0px;
}

.promo_item:hover .promo_info
{
   opacity: 1;
   transition: all linear 0.3s;
}
/*---- /promo----*/

/*---- about us ----*/
.about_us
{
  padding: 60px 0;
}
.about_us_left img 
{
  width: 100%;
  border-radius: 10px;
}
.about_us_right 
{
  margin: 10px 0;
}
.about_us_right h1 
{
  font-size: 80px;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #FF6700;
}
.about_us_right h4 
{
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.about_us_right p 
{
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  line-height: 30px;
}
/*---- /about us ----*/

/*---- service ----*/
.service
{
  padding: 40px 0;
}
.service h1 
{
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #FF6700;
  position: relative;
}
.service_inner
{
  margin-top: 30px;
}
.service_inner .row .col-sm-6
{
  margin: 20px 0;
} 
.service_item
{
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  height: 100%;
}
.service_img
{
  overflow: hidden;
} 
.service_img img
{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 0.3s linear;
  cursor: pointer;
}
.service_img img:hover 
{
  transition: all 0.3s linear;
  transform: scale(1.1);
}
.service_info
{
  padding: 15px;
}
.service_info h2 
{
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #065535;
}
.service_info p 
{
  font-size: 16px;
  font-weight: 400;
  margin: 0px;
  line-height: 26px;
}

/*---- /service ----*/

/*---- footer ----*/
.footer
{
  background: linear-gradient(to left bottom, #065535af,#065535);
  padding: 80px 0px 50px 0px;
}
.footer_logo
{
    width: 140px;
}
.footer_info p 
{
  margin-top: 10px;
  font-size: 17px;
  color: white;
}
.phone_div 
{
  margin-top: 15px;
}
.phone_div h2 
{
  font-size: 26px;
  font-weight: 800;
  color: white;
}
.phone_div h4 
{
  font-size: 17px;
  font-weight: 500;
  color: white;
  margin: 8px 0;
}

.phone_div a 
{
  font-size: 17px;
  font-weight: 500;
  color: white !important;
  margin: 8px 0;
  text-decoration: none;
}
.footer_contact h2 
{
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.conact_info
{
  margin-top: 20px;
}
.conact_info h3{
  font-size: 24px;
  font-weight: 600;
  color: #FF6700;
}
.contact_single
{
  margin: 12px 0;
  color: white;
}
.contact_single p 
{
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact_single h4 
{
  margin: 0px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
}
.contact_inp
{
  margin: 10px 0;
}
.contact_inp input,.contact_inp textarea
{
  width: 100%;
  height: 50px;
  outline: none;
  box-shadow: none;
  padding: 10px 10px;
  border: none;
  background-color: white;
  font-size: 16px;
  font-weight: 400;
  border-radius: 3px;
}

.contact_inp textarea
{
  height: 150px;
}
.send_btn
{
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  background-color: #FF6700;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}
.contact_form h2 
{
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.copyright
{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid white;
}
.copyright p 
{
  margin: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: white;
}
.footer_info,.footer_contact,.contact_form 
{
  margin: 15px 0;
}
/*---- /footer ----*/

@media(max-width: 425px)
{
  .hero {
    min-height: 50vh;
  }
  .hero_item img {
    height: 50vh !important;
    object-fit: fill;
  }

  .call_btn span {
    display: inline-block;
  }
  .promo {
    flex-direction: column;
    gap: 0px; 
  }
  .promo_item {
      width: 96%;
  }
  .promo_item h1 {
    font-size: 32px;
  }
  .promo_info h4 {
   font-size: 27px;
  }
  .about_us_right h1 {
    font-size: 48px;
  }
  .about_us_right h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .about_us_right p {
    font-size: 17px;
    line-height: 27px;
  }
  .service h1 {
    font-size: 38px;
  }
  .footer {
    padding: 32px 0px 40px 0px;
  } 
  .phone_div h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .phone_div h4,.phone_div a {
    font-size: 16px;
    margin: 11px 0;
  }
  .footer_contact h2,.contact_form h2 {
    font-size: 28px;
    margin-bottom: 0px;
  }
  .conact_info h3 {
    font-size: 22px;
  }
  .conact_info {
    margin-top: 14px;
  }
  .contact_single {
    margin: 8px 0;
  }

}

@media(min-width: 426px) and (max-width: 575px)
{
  .hero {
    min-height: 55vh;
  }
  .hero_item img {
    height: 55vh !important;
    object-fit: fill;
  }
  .call_btn span {
    display: inline-block;
  }
  .promo {
    flex-direction: column;
    gap: 0px; 
  }
  .promo_item {
      width: 96%;
  }
  .promo_info h4 {
   font-size: 27px;
  }
  .about_us_right h1 {
    font-size: 55px;
    margin-top: 20px;
  }
  .service h1 {
    font-size: 50px;
  }
  .footer {
    padding: 32px 0px 40px 0px;
  } 
  .phone_div h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .phone_div h4,.phone_div a {
    font-size: 16px;
    margin: 11px 0;
  }
  .footer_contact h2,.contact_form h2 {
    font-size: 28px;
    margin-bottom: 0px;
  }
  .conact_info h3 {
    font-size: 22px;
  }
  .conact_info {
    margin-top: 14px;
  }
  .contact_single {
    margin: 8px 0;
  }

}

@media(min-width: 576px) and (max-width: 650px)
{
  .hero {
    min-height: 70vh;
  }
  .hero_item img {
    height: 70vh !important;
    object-fit: fill;
  }
  .call_btn span {
    display: inline-block;
  }
  .promo {
    flex-direction: column;
    gap: 0px; 
  }
  .promo_item {
      width: 96%;
  }
  .about_us_right h1 {
    font-size: 55px;
    margin-top: 20px;
  }
  .service h1 {
    font-size: 55px;
  }
  .service_img img {
    height: 240px;
  }
  .service_info h2 {
    font-size: 22px;
  }
  .footer {
    padding: 32px 0px 40px 0px;
  } 
  .phone_div h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .phone_div h4,.phone_div a {
    font-size: 16px;
    margin: 11px 0;
  }
  .footer_contact h2,.contact_form h2 {
    font-size: 28px;
    margin-bottom: 0px;
  }
  .conact_info h3 {
    font-size: 22px;
  }
  .conact_info {
    margin-top: 14px;
  }
  .contact_single {
    margin: 8px 0;
  }

}

@media(min-width: 651px) and (max-width: 767px)
{
  .hero {
    min-height: 70vh;
  }
  .hero_item img {
    height: 70vh !important;
    object-fit: fill;
  }
  .call_btn span {
    display: inline-block;
  }
  .promo {
    flex-direction: column;
    gap: 0px; 
  }
  .promo_item {
      width: 96%;
  }
  .footer {
    padding: 32px 0px 40px 0px;
  } 
}

@media(min-width: 768px) and (max-width: 991px)
{
  .hero {
    min-height: 65vh;
  } 
  .hero_item img {
    height: 65vh !important;
  }
  .call_btn span {
    display: inline-block;
  }
  .promo {
    gap: 15px;
  }
  .promo_item {
    width: 30%;
  } 
  .promo_item h1 {
    font-size: 27px;
    letter-spacing: 0px; 
  }
  .promo_info h4 {
    font-size: 25px;
  }
  .promo_info p {
    font-size: 16px;
    margin-top: 6px;
  }
  .about_us_right h1 {
    font-size: 60px;
  }
  .about_us_right p {
    font-size: 16px;
    line-height: 27px;
  }
  .service h1 {
    font-size: 60px;
  }
}

@media(min-width: 992px) and (max-width: 1200px)
{
  .hero {
    min-height: 92vh;
  }
  .hero_item img {
    height: 92vh !important;
  }
  .nav-item {
    margin: 0px 10px;
  }
  .promo {
    gap: 50px;
  }
  .promo_item {
    width: 29%;
  }
  .promo_item h1 {
    font-size: 30px;
  }
  .promo_info h4 {
    font-size: 26px;
  }
  .about_us_right h1 {
    font-size: 70px;
  }
  .about_us_right p {
    font-size: 17px;
    line-height: 28px;
  } 
  .service h1 {
    font-size: 65px;
  }

}

.contact_inp label
{
  color: #fff;
}


/*----- portfolio page ------*/

.portfolio {
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
}
.portfolio h1 {
    font-size: 50px;
    font-weight: 600;
}
.portfolio p {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
}

.portfolio_item {
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: #efefef;
}
.portfolio_item .row > div {
  margin: 20px 0;
}

.portfolio_single {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}
.portfolio_single_img {
    overflow: hidden;
}
.portfolio_single_img img {
    width: 100%;
    transition-duration: 0.3s;
    height: 350px;
    object-fit: cover;
    object-position: top;
}
.portfolio_single_img img:hover {
    transition-duration: 0.3s;
    transform: scale(1.1);
}

.portfolio_info {
    padding: 20px 15px;
}
.portfolio_info a {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
    color: #339DFA !important;
    text-decoration: none;
    margin-bottom: 10px;
}
.portfolio_info p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 400;
}

.port_showcase {
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 25%;
    max-width: 100%;
    margin: 10px 0;
}
.port_image-container {
    width: 100%; 
    aspect-ratio: 1/1; 
}
.portfolio_gallery > p {
    text-align: center;
    margin-top: 5px;
    font-size: 17px;
    font-weight: 500;
}

.portfolio_s_left .owl-dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.portfolio_s_left .owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
}
.portfolio_s_right, .portfolio_s_left {
    margin: 12px 0;
}
.portfolio_s_right {
    padding: 0px 20px;
}
.portfolio_s_right h1 {
    font-size: 35px;
    font-weight: 600;
    color: #339DFA;
    margin-top: 0px;
    margin-bottom: 20px;
}

.portfolio_clinet {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.portfolio_clinet p {
    font-size: 18px;
    margin: 5px 0;
}
.portfolio_clinet p b {
    font-size: 20px;
    font-weight: 600;
}

.portfolio_desc {
    margin: 20px 0;
}
.portfolio_desc h3 {
    font-size: 25px;
    font-weight: 600;
}
.portfolio_desc p {
    margin: 5px 0;
    font-size: 17px;
    font-weight: 300;
} 

.portfolio_bottom h5 {
    border-top: 1px solid #39414D;
    padding-top: 6px;
    font-size: 14px;
    font-weight: 400;
}
.portfolio_bottom h5 span {
    color: #339DFA;
}

@media(max-width: 767px) {
    .portfolio_s_right {
        padding: 0px 2px;
    }
}
@media(max-width: 599px) {
    .portfolio h1 {
        font-size: 30px;
    }
}

@media(min-width: 600px) and (max-width: 767px) {
    .portfolio h1 {
        font-size: 35px;
    }
}

/*----- /portfolio page ------*/


/*------ virtual preview of philanthropy showcase ---------*/
.showcase_preview {
  background-color: #39414D; 
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  color: white;
}
.showcase_preview > h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.showcase_preview_right {
    padding: 0 20px;
}
.showcase_preview_right p {
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0;
    text-align: center;
    word-break: break-all;
}

.showcase_box {
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 25%;
  max-width: 100%;
}
.image-container {
  width: 100%; 
  height: 50vh;
  aspect-ratio: 1/1;
}
@media(max-width : 991px) {
  .image-container {
      height: 100%;
  }
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;

  }

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.image-before {
  position: absolute;
  inset: 0;
  width: var(--position) !important;
}
.slider_percentage {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.showcase_preview_left > h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.port_showcase_box {
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 25%;
  max-width: 100%;
  margin: 10px 0;
}

.port_image-container{
  width: 100%; 
  aspect-ratio: 1/1; 
}


