@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/

 
/******* fonts *********/

@import url('../fonts/stylesheet.css');

/******* fonts *********/

body{
  font-family: 'Open Sans' !important;
  overflow-x: hidden;
  color: #3B3B3B;
  background-color: #FAFAFA;
}

a{
  text-decoration: none;
  width: fit-content;
}

p{
  color: #333333;
  font-size: 14px;
  line-height: 22px;
}

hr{
  opacity: 1;
  background-color: #d3d3d3;
}

.heading{
  font-family: 'Lato';
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #333333;
  margin-bottom: 15px;
}

.sub_heading{
  font-family: 'Lato';
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 26px;
}

.small_heading{
  font-size: 18px;
  font-family: 'Lato';
  font-weight: 700;
}

.semi_bold{
  font-weight: 600;
}

.slider_heading{
  font-family: 'Lato';
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
}

.bg_img{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sec_padding{
  padding-top: 80px;
  padding-bottom: 80px;
}

.h3_line_2, .p_line_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.h3_line_3, .p_line_3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
          line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.h3_line_3{
  min-height: 78px;
}

.h3_line_2{
  min-height: 52px;
}

.p_line_2{
  min-height: 44px;
}

.p_line_3{
  min-height: 66px;
}

.mt-n1 {
  margin-top: -1rem !important;
}

.mt-n2 {
  margin-top: -1.5rem !important;
}

.mt-n3 {
  margin-top: -2rem !important;
}

.mt-n4 {
  margin-top: -2.5rem !important;
}


/* Primary Button Start*/ 

.primary_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  background: #ffffff;
  padding: 0 24px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border: 2px solid #F0405D;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #F0405D;
  font-size: 14px;
  font-weight: 500;
  z-index: 8;
  transition: all 0.3s ease-in-out;
}

.primary_btn.btn_1{
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.primary_btn.btn_1:hover{
  border: 2px solid #F0405D;
}

.primary_btn.btn_2{
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.primary_btn.btn_2:after{
  background: #F9B32B;
}

.primary_btn.btn_2:hover{
  border: 2px solid #F9B32B;
  color: #000000;
}

.primary_btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #F0405D;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
  z-index: -1;
}

.primary_btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.primary_btn:hover {
  color: #ffffff;
  /* animation: scaleUp 0.3s ease-in-out; */
}

.primary_btn .white_icon{
  display: none;
}

.primary_btn:hover .white_icon{
  display: block;
}

.primary_btn:hover .dark_icon{
  display: none;
}

/* Primary Button End */ 

/* filter button start */

.clear_filter_btn{
  font-size: 12px;
  text-decoration: underline;
  font-weight: 900;
  font-style: italic;
  color: #3B3B3B;
  transition: all 0.3s ease-in-out;
}

.clear_filter_btn:hover{
  color: #F98946;
}

/* filter button end */

/* Stripe CSS */
.color_stripe{
  height: 10px;
}

.color_1{
  background-color: #F0405D;
}
.color_2{
  background-color: #FA675D;
}
.color_3{
  background-color: #F98946;
}
.color_4{
  background-color: #F9B32B;
}
.color_5{
  background-color: #868686;
}
/* Stripe CSS */


/* Navbar CSS Start  */
.nav_bar{
  position: absolute;
  z-index: 9;
  width: 100%;
}

.desktop_nav{
  padding: 0px 70px;
  transition: all 0.3s ease;
}

.desktop_nav:hover{
  background-color: #ffffff;
}

.desktop_nav:hover .nav-link{
  color: #333333;
}

.desktop_nav:hover .navbar-brand .logo_1{
  display: none;
}

.desktop_nav:hover .navbar-brand .logo_2{
  display: block;
}

.desktop_nav:hover .collapse_btn .icon_2{
  display: block;
}

.desktop_nav:hover .collapse_btn .icon_1{
  display: none;
}

.desktop_nav:hover .collapse_btn{
  background-color: #F9B32B;
}

.collapse_btn{
  height: 76px;
  margin-left: 15px;
  border-radius: 0px;
}

.collapse_btn img{
  height: 30px;
  width: 30px;
}

.collapse_btn .icon_2{
  display: none;
}

.navbar-nav{
  gap: 10px;
}

.navbar-brand img{
  height: 55px;
}

.navbar-brand .logo_2{
  display: none;
}

.nav-link{
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.nav-link:hover{
  color: #F9B32B !important;
}

.nav-link.active{
  color: #F0405D !important;
}

.nav-link:focus{
  color: #ffffff;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      /* transform: translateY(0);
      transition: all 0.3s ease; */
      /* margin-top: 5px; */
  }
  
  .navbar-nav .dropdown-menu {
      display: block;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      pointer-events: none;
      margin-top: 10px;
      border: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 0px;
  }

  .navbar-nav .dropdown-menu li{
      padding: 3px 0px;
  }
  
  .navbar-nav .dropdown:hover .dropdown-menu {
      pointer-events: auto;
  }
  
  /* .navbar-nav .dropdown:hover .dropdown-toggle::after {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
  }
  
  .navbar-nav .dropdown-toggle::after {
      transition: transform 0.3s ease;
  } */
}

.dropdown-item {
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #F0405D;
  color: #ffffff;
}

.dropdown-item.active{
  font-weight: 600;
  background-color: #ffffff;
  color: #f0405d;
}

.dropdown-toggle::after {
  display: none !important;
}
/* Navbar CSS End  */

/* Offcanvas menu  */
.collapse_menu{
  background-color: #333333;
}

.collapse_menu .btn-close, .mobile_filter_offcanvas .btn-close {
  margin-top: 5px;
  margin-right: 5px;
  background-color: #F0405D;
  opacity: 1;
  padding: 10px;
  border-radius: 30px;
  font-size: 22px;
  background-image: url(../images/close.svg);
  transition: 0.3s ease;
}

.collapse_menu .btn-close:hover{
  background-color: #F9B32B;
  background-image: url(../images/close_dark.png);
}

.mobile_filter_offcanvas .btn-close {
  padding: 9px;
  font-size: 14px;
}

.collapse_menu li{
  font-size: 24px;
  padding-bottom: 10px;
  padding-top: 20px;
  color: #b4b4b4;
  font-weight: 600;
  /* border-bottom: 1px solid #d3d3d3; */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.collapse_menu li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F9B32B;
  transition: width 0.4s ease;
}

.collapse_menu li:hover {
  color: #ffffff;
}

.collapse_menu li:hover::after {
  width: 100%;
}

.offcanvas_contact{
  margin-top: 100px;
}

.offcanvas_contact h5{
  font-size: 16px;
  color: #F9B32B;
  font-weight: 600;
}

.offcanvas_contact a, .offcanvas_contact i{
  color: #c7c7c7;
  transition: all 0.3s ease;
}

.offcanvas_contact a:hover{
  color: #F9B32B;
}
/* Offcanvas menu  */

/* Social Icons Bar  */
.social_icon_bar {
  position: absolute;
  z-index: 9;
  right: 30px;
  top: 340px;
}

.social_icon_div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.social_icon_div a {
  color: #ffffff;
  font-size: 13px;
  transition: all 0.3s ease;
}

.social_icon_div a:hover{
  color: #F9B32B;
}

.social_icon_div hr {
  color: #ffffff;
  height: 60px;
  width: 1px;
  opacity: 1;
  margin: 0;
}

.social_icon_div p {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: -55px;
  width: 118px;
  font-size: 12px;
  font-weight: 600;
}
/* Social Icons Bar  */

/* Main slider  */
.slider_img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.carousel-control-next, .carousel-control-prev{
  position: relative;
  /* z-index: 999; */
  margin-top: -90px;
  /* float: left; */
  float: right;
  /* left: 90px; */
  right: 90px; 
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: end; */
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff !important;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  border-radius:100%;
  transition: opacity .15s ease;
}

/* .carousel-control-next {
  left: 138px;
} */

.carousel-control-prev{
  left: -138px;
}

.main_slider .carousel-caption{
  margin-bottom: 50px;
  position: absolute;
  right: 0%;
  left: 0%;
}
/* Main slider  */


/* Home page CSS Start */
.light_bg{
  /* background-color: #F6F6F6; */
  background-color: #F1F1F1;
}

.small_icon{
  width: 30px;
  height: 30px;
}

.medium_icon{
  width: 40px;
  height: 40px;
}

.large_icon{
  width: 60px;
  height: 60px;
}

.impact_sec{
  padding: 50px;
  padding-right: 0px;
  background-color: #ffffff;
}

.impact_content{
  border-right: 1px solid #D3D3D3;
  padding-right: 20px;
}

.stat_icon{
  height: 68px;
  width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #F9B32B;
}

.stat_sec h2{
  font-size: 42px;
  font-weight: 700;
  font-family: 'Lato';
  color: #000000;
  margin-bottom: 0px;
}

.stat_sec p{
  font-size: 16px;
  color: #616161;
  font-weight: 600;
}

.donor_bg{
  min-height: 580px;
}

.content_div{
  margin-right: 30px;
}

/* .news_col:hover .white_box{
  background-color: #F0405D;
} */

/* .news_col:hover h3{
  color: #ffffff;
} */

.news_col:hover .tag_label{
  background-color: #F9B32B;
  color: #000000;
}

.tag_label{
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 15px;
  background-color: #F0405D;
  color: #ffffff;
  transition: 0.3s ease;
}

.tag_label.event_label{
  background-color: #868686;
}

.white_box{
  position: relative;
  z-index: 8;
  padding: 20px;
  background-color: #ffffff;
  border-bottom: 3px solid #F0405D;
  transition: all 0.3s ease;
}

.white_box:hover{
  background-color: #F0405D;
}

.white_box:hover .sub_heading, .white_box:hover .date_text, .white_box:hover p{
  color: #ffffff;
}

.date_text{
  color: #616161;
  font-size: 12px;
}

.text_link span{
  color: #F0405D;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.text_link i{
  transition: 0.3s ease;
  margin-left: 8px;
}

.text_link:hover i{
  margin-left: 15px;
}

.text_link:hover span{
  color: #ffffff; 
}

.owl-nav {
  top: -60px;
  position: absolute;
  gap: 6px;
  display: flex;
  justify-content: end;
  width: 100%;
}

.owl_nav{
  background-color: #EFE9DE;
  width: 44px;
  height: 44px;
  padding: 13px;
  border-radius: 50px;
  transition: .3s ease-in-out;
}

.owl_nav:hover{
  background-color: #F9B32B;
}

.grey_bg{
  background-color: #333333;
}

.partner_slider .item {
  background-color: #ffffff;
  padding: 30px;
  height: 175px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner_slider .item img{
  object-fit: contain;
  transition: filter 0.3s ease-in-out;
  filter: grayscale(100%);
}

.partner_slider .item img:hover{
  filter: grayscale(0%);
}

.partner_section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(../images/globe_illustration.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.testi_bg {
  min-height: 650px;
}

.testi_div{
  padding: 0px 35px;
  background-image: url(../images/testi_circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

.testi_icon{
  margin-top: 50px;
  width: 64px;
  height: 64px;
}

.swiper{
  overflow: hidden;
}

.testi_swiper{
  padding-top: 50px;
}

.testi_swiper .swiper-slide{
  margin-top: 20px;
}

.testi_swiper .swiper-button-next, .testi_swiper .swiper-button-prev {
  bottom: 0;
  top: 30px;
  background-color: #EFE9DE;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease-in-out;
}

.testi_swiper .swiper-button-next:hover, .testi_swiper .swiper-button-prev:hover {
  background-color: #F9B32B !important;
  color: #000000;
}

.testi_swiper .swiper-button-next, .testi_swiper .swiper-button-prev{
  background-image: none;
}

.testi_swiper .swiper-button-prev {
  right: 60px;
  left: auto;
}

.testi_content p{
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 27px;
  min-height: 135px;
}

.testi_profile img{
    border-radius: 50px;
    width: 70px;
    height: 70px;
}

.testi_profile h4{
  font-size: 16px;
  font-family: 'Lato';
  font-weight: 600;
}

.map_access{
  display: none !important;
}

.newsletter_modal img{
  width: 90px;
  height: auto;
}

.live_btn {
  position: fixed;
  left: 0px;
  top: 280px;
  z-index: 999;
  background-color: #FF002A;
  height: 60px;
  width: 60px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 500ms ease;
}

.live_btn:hover {
  background-color: #F0405D;
}

.live_btn p {
  font-weight: 600;
}

/* Shine effect */
.live_btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(25deg);
  animation: shine 2.5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translate(-100%, -100%) rotate(25deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(25deg);
  }
}

/* Home page CSS End */

/* Mobile menu css  */
.mobile_menu .collapse_btn{
  background-color: #F9B32B;
  height: 65px;
}

#nav-icon {
  width: 32px;
  height: 35px;
  margin-top: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333333;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: -1px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 21px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 23px;
  left: 5px;
}
/* Mobile menu css  */

/* ==================================================================================  */
/* ================================INNER PAGES CSS===================================  */
/* ==================================================================================  */

.inner_banner {
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner_caption{
  margin-bottom: 30px;
}

.inner_caption .slider_heading{
  font-size: 40px;
}

.breadcrumb{
  font-style: italic;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb-item a{
  color: #D3D3D3;
}

.breadcrumb-item.active{
  color: #ffffff;
}

.breadcrumb-item.active {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
}

/* Tabs CSS start  */
.custom_tabs .nav-link.active,
.nav-tabs .show>.nav-link {
    color: #ffffff !important;
    background-color: #F0405D
}

.custom_tabs .nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 22px;
    transition: 0.4s ease;
    position: relative;
    border-radius: 0px;
    height: 50px;
    min-width: 100px;
}

.custom_tabs .nav-link:hover {
    background-color: #F0405D;
    color: #ffffff !important;
}

.custom_tabs .nav-tabs .nav-link.active::before {
    content: "";
    position: absolute;
    left: 40%;
    margin-top: 33px;
    border-top: 10px solid #F0405D;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
/* Tabs CSS end  */

/* Pagination CSS start  */

.site_pagination .page-link {
  border: 1px solid #D3D3D3;
  background-color: #ffffff;
  color: #616161;
  font-size: 14px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.site_pagination .page-link:hover {
  background-color: #f8f8f8;
}

.site_pagination .disabled .page-link {
  border: 1px solid #F9B32B;
  background-color: #F9B32B;
  color: #000000;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 2px;
}

.page-link:focus {
  box-shadow: none;
}

/* Pagination CSS end  */

.grey_box{
  padding: 30px;
  background-color: #f1f1f1;
}

/* custom form css start */
.custom_form .form-control, .custom_form .form-select{
  border: 1px solid #d3d3d3 !important;
}

.custom_form .form-floating, .custom_form .form-select{
  font-size: 14px;
}

/* Checkbox css */
.checkbox_div .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox_div .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
}

.checkbox_div .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 2px solid #e7e6e6;
  border-radius: 2px;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 6px;
}

.checkbox_div .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #F0405D;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Checkbox css  */
/* custom form css end */

.about_inner_right{
  min-height: 650px;
}

.about_inner_left{
  padding-top: 90px;
}

.vision_box{
  padding: 72px 36px 36px 36px;
}

.vision_sec{
  margin-top: -95px;
}

.vision_box p{
  font-size: 16px;
}

.vision_box h3{
  padding-left: 20px;
  margin-left: 10px;
  border-left: 1px solid #ffffff;
}

/* .team_slider .box_card img {
  background-image: url('../images/team_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.box_card img {
  height: 350px;
  object-fit: cover;
} */

.team_detail p{
  font-weight: 600;
  font-size: 12px;
  color: #616161;
}

.solution_con_div{
  background-size: 490px auto;
  background-position: right top;
  background-repeat: no-repeat;
}

.hexagon-div {
	width: 80px;
	height: 70px; /* width*√3/2 */
	clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.custom_sol_point{
  height: 24px;
  width: 24px;
  background-color: #F0405D;
}

.point_text{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.sol_img_div img{
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.stat_total{
  font-size: 60px;
  font-weight: 600;
  font-family: 'Lato';
  color: #F0405D;
}

.stat_tot_col{
  border-right: 1px solid #ffffff65;
}

.recent_div .recent_img{
  height: 350px;
}

.recent_div .white_box:hover .text_link span{
  color: #ffffff;
}

.proj_tag{
  padding: 6px 18px;
  font-size: 13px;
  color: #333333;
  font-weight: 600;
  border-radius: 50px;
}

.proj_tag.ongoing{
  background-color: #F9B32B;
}

.proj_tag.completed{
  background-color: #02bc5f;
}

.proj_tag.upcoming{
  background-color: #F98946;
}

.detail_live_btn{
  background-color: #FF002A;
  height: 50px;
  padding: 0px 22px;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}

.detail_live_btn:hover{
  background-color: #F0405D;
}

.detail_live_btn span{
  font-size: 14px;
  font-weight: 600;
}

.proj_detail_pillers .hexagon-div{
  height: 52px;
  width: 60px;
}

.proj_detail_pillers p{
  font-weight: 600;
  color: #000000;
}

.proj_map {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 460px; /* matches your SVG height */
}
.proj_map svg {
  width: auto !important;  /* prevent stretching */
  max-width: 100% !important;
  height: 460px !important;
  display: block;
  margin: auto;
}

.proj_black_sec{
  background-color: #333333;
  min-height: 400px;
}

.proj_black_sec::after{
  content: '';
  position: absolute;
  width: 325px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #333333;
  margin-right: -325px;
}

.proj_black_sec::before{
  content: '';
  position: absolute;
  width: 125px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333333;
  margin-left: -125px;
  z-index: -1;
}

.proj_partner_con{
  background: linear-gradient(270deg,#eeeeee00 29%, #eeeeee 29%);
}

.partner_bg_icon{
  height: 319px;
  width: 319px;
  top: -20px;
  left: 80px;
}

.proj_logo_slider .item {
  background-color: #ffffff;
  padding: 30px;
  height: 140px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_slider .swiper-button-next, .img_slider .swiper-button-prev{
  bottom: 0;
  top: auto;
}

/* Accordion section css start */

.accordion-header{
  font-family: 'Roboto', sans-serif !important;;
}

.accordion-item {
  background-color: transparent;
}

.accordion-button:after {
  font-family: "FontAwesome";
  font-weight: 300; 
  content: "\f067";
  color: #333333;
  float: right;
  transform: rotate(180deg) !important;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after{
  background-image: none !important;
  font-family: "FontAwesome";
  font-weight: 300; 
  content: "\f068";
}

.accordion-button:not(.collapsed){
  color: #333333 !important;
}

.accordion-body p{
  margin-bottom: 0px !important;
}

.accordion-body{
  margin-top: 5px;
  background-color: #ffffff;
  border: none;
  border: 1px solid #d3d3d3;
}

.accordion-item{
  border: none !important;
  margin-bottom: 15px;
}

.accordion-button, .accordion-button:not(.collapsed){
  font-family: 'Lato';
  font-size: 18px;
  font-weight: 600;
  padding: 19px 24px;
  background-color: #ffffff;
  border: 1px solid #F9B32B;
  border-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #F9B32B;
}

.accordion-button:focus{
  box-shadow: none !important;
  border: 1px solid #F9B32B;
}

/* Accordion section css end */

/* subsidiaries section */
.subsi_logo{
  width: 100%;
}

.text_link .pink_link{
  color: #F0405D !important;
}

.side_box_div h3, .side_box_div{
  transition: all 0.4s ease;
}

.side_box_div:hover h3{
  color: #F0405D;
}

.side_box_div:hover{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/* subsidiaries section */

.icon_flex img{
  width: 50px;
  height: 50px;
}

.contact_right, .contact_left{
  padding: 40px;
}

.contact_right{
  background-color: #333333;
}

.white_card{
  padding: 30px;
}

.white_card a:hover p{
  color: #F0405D;
  transition: 0.4s ease;
}

.custom_ul li::marker {
  content: '\f111';
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 10px;
  color: #F0405D;
}

.custom_ul li{
  margin-bottom: 14px;
  padding-inline-start: 0.5em;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
}

.custom_ul{
  padding-left: 1rem;
}

.yellow_box{
  padding: 30px;
  background-color: #FFF5E1;
}

.pink_box{
  padding: 18px;
  gap: 13px;
}

.white_circle{
  height: 50px;
  width: 50px;
}

.value_sec{
  background-size: 35% auto;
  background-repeat: no-repeat;
  background-position: center right;
}

.grey_half_bg{
  background: linear-gradient(270deg,#eeeeee00 29%, #eeeeee 29%);
}

.custom_modal .modal-header .btn-close {
  background-color: #F0405D;
  opacity: 1;
  padding: 15px;
  border-radius: 30px;
  background-image: url(../images/close.svg);
}

.data_sheets_div label{
  font-size: 13px !important;
}

/* mobile filter button */
.mobile_filter{
  background-color: #F9B32B;
  color: #333333 !important;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
}

.mobile_filter img{
  height: 20px;
  width: auto;
}
/* mobile filter button */

/* ==================================================================================  */
/* ================================INNER PAGES CSS===================================  */
/* ==================================================================================  */


/* Footer CSS  */

.footer_logo img{
  height: 60px;
}

.footer p{
  font-size: 13px;
}

.footer_social a{
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.footer_social a:hover{
  color: #F0405D;
  background-color: #ffffff;
}

.newsletter_form .form-control{
   height: 50px;
   font-size: 13px;
   border-radius: 0px;
   border: none !important;
}

/* .newsletter_form button{
  margin-left: 5px;
  background-color: transparent;
  border: 2px solid #ffffff;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0px;
  transition: 0.3s ease;
}

.newsletter_form button:hover{
  background-color: #ffaa00;
} */

.footer hr{
  background-color: #ffffff3c;
}

.footer_links a{
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer_links a:hover{
  color: #F9B32B;
}

.footer_bottom p{
  font-size: 12px;
}

.footer_bottom a{
  color: #616161;
}

.footer_bottom a:hover{
  color: #F0405D;
}
/* Footer CSS  */


/**********=========================================********************/
/**********===============SCROLL TOP=================********************/
/**********=========================================********************/

.scroll-top-element{
  background-color: #F0405D !important;
  z-index: 999999999 !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.scroll-top-element:hover{
  color: #000 !important;
  background-color: #F9B32B !important;
}

/**********=========================================********************/
/**********===============SCROLL TOP=================********************/
/**********=========================================********************/


/*========================================================================*/
/*========================================================================*/
/*=====================Solution by TEKGEEKS (pvt) LTD=====================*/
/*========================================================================*/
/*========================================================================*/

.two-word{
  
}

.recent_div .white_box{
	z-index: 1;
}