:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--body) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--body) !important;
    color: var(--body) ;
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/* Topbar Styling */
.topbar {
    background-color: #fcdb00; /* Deep Blue Background */
    color: #000000; /* Light text color */
    font-size: 14px; /* Adjust text size */
   
}

.topbar a {
    color: #000000; /* Link color matches text */
    text-decoration: none; /* Remove underline */
    font-weight: 500; /* Slightly bold for emphasis */
}

.topbar a:hover {
    color: #ffff00; /* Gold color on hover */
    text-decoration: underline; /* Add underline on hover */
}

.topbar .fa {
    color: #000000; /* Gold icon color */
    font-size: 16px; /* Slightly larger icons */
}

.topbar .container {
    display: flex;
    justify-content: space-between; /* Spread content evenly */
    align-items: center;
}

.topbar small {
    margin-right: 15px; /* Space between items */
}

@media (max-width: 991px) {
    .topbar {
        display: block; /* Stack items for smaller screens */
        text-align: center;
    }

    .topbar .container {
        flex-direction: column;
    }

    .topbar small {
        margin-bottom: 10px;
    }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--body) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--body) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--body) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background-color: var(--brand);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-white) !important;
    transition: .5s;
    opacity: 5;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 15px;
        border: 1px solid var(--body) !important;
        color: var(--brand);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--body);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/





/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
   background-color: #ff0000;
   
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/

/* General Styles */
.container-xxl {
    max-width: 100%;
    padding: 0 15px;
}
.logo-design{
  display: flex;
  align-items: center;
  color: rgb(236, 39, 39);
}
 .logo-design .logo-img img{
    height: 60px !important;
  }
  .logo-design .logo-text{
    margin-left: 10px;
    font-size: 17px;
    font-family:Arial, Helvetica, sans-serif
  }
@media (max-width:360px) {
  .logo-design .logo-img img{
    height: 60px !important;
  }
  .logo-design .logo-text{
    font-size: 20px;
  }
}


/* Service Item Container */
.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    padding: 30px;
    text-align: center;
}

/* Floating Effect */
.service-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0px 15px 40px rgba(6, 10, 245, 0.466);
}

/* Animated Neon Border */
.service-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(30deg, #ffffff, #ffffff);
    background-size: 300% 300%;
    animation: borderAnimation 6s infinite linear;
    border-radius: 15px;
    z-index: -1;
}

/* Border Animation */
@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon Styling */
.service-item i {
    font-size: 55px;
    color: #fd0a0a;
    transition: transform 0.5s ease, color 0.5s ease;
    text-shadow: 0 0 10px rgba(243, 244, 245, 0.6);
}

/* Icon Animation */
.service-item:hover i {
    color: #fd0a0a;
    transform: scale(1.3) rotateY(360deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Service Item Text */
.service-item h5 {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-top: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.service-item p {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

/* Background Glow on Hover */
.service-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        margin-bottom: 20px;
    }
}
.section-header-s h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header-s h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header-s h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--body);
  bottom: 0;
  left: calc(50% - 20px);
}

.about-img img{
  transition: 0.5s;
}
.about-img:hover img{
  transform: scale(0.9);
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(to right, #ffffff, #ffffff);
    padding: 80px 0;
    text-align: center;
}

/* Mission & Vision Boxes */
.mission-box, .vision-box {
    height: 100%;
    background: #fd0a0af6;
    border-radius: 12px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

/* Hover Effects */
.mission-box:hover, .vision-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 238, 0, 0.877);
}

/* Icons */
.mission-box i, .vision-box i {
    font-size: 50px;
    color: #fcdb00;
    margin-bottom: 15px;
}

/* Titles */
.mission-box h3, .vision-box h3 {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
/**Milestone*/

.service {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
  background-color: white;
}

.service .service-item-1 {
    background-color: #f7de00;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 0 transparent;
  transition: ease-out 0.5s;
  border-radius: 10px;
  
}

.service .service-item-1:hover .service-text {
  box-shadow: inset 500px 0 0 0 rgb(0, 0, 0);
  clip-path: inset(50px 0 50px 0); /* Adjust top and bottom values */
}


/* .service .service-item:hover p{
  color: var(--brand);
} */
.service .service-icon-1 {
  position: relative;
  width: 5px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  background: #ffffff;
}

/* .service .service-icon img{
  height: 100px;
} */

.service .service-icon-1 i {
  position: relative;
  font-size: 60px;
  color: var(--brand);
  transition: .3s;
}

.service .service-item-1:hover i {
  font-size: 75px;
}



.service .service-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  position: relative;
  width: calc(100% - 120px);
  padding: 10px 30px;
  transition: 1s;
}

.service .service-text h3 {
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-size: 25px;
  font-weight: 500;
  transition: 1s;
  color: white;
}

.service .service-text p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 1s;
  color: rgb(0, 0, 0);
}

.service .service-item-1:hover .service-text h3,
.service .service-item-1:hover .service-text p {
  color: var(--brand);
}

@media (max-width: 575.98px) {
  .service .service-text h3 {
      font-size: 16px;
      margin-bottom: 5px;
  }
  
  .service .service-text p {
      font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width:991px) {
  .service .service-item-1:hover .service-text {
    box-shadow: inset 550px 0 0 0 white;
    
  }
}

/* @media (max-width:450px) {
  .service{
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }
} */
@media (max-width:450px) {
  .service-icon-1{
    padding-left: 0px;
    margin-left: 0px;
  }
}


.btn-brandz{
  background-color: white;
  color: var(--brand);
  border: 2px solid white;
  transition: 1s;
}
.service .service-item-1:hover .btn-brandz{
  background-color: var(--brand);
  color: white;
  border: 2px solid var(--brand);
 
}
/*Milestone end*/

/*program*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}


.section-header .headone {
  font-size: 12px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header .headone::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header .headone::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}
.product-btn a {
  padding: 10px 20px;
  /* border: 1px solid #FFA725; */
  color: #fff;
  border-radius: 30px;
  background-color: #133E87;
  width: 50%;
}

.product-btn:hover a {
  /* border: 1px solid #FFA725;
  color: #FFA725; */
  background-color: #FFA725;
  color: white;
}

.how-bor2,
.how-bor1 {
  position: relative;
  z-index: 1;

}

.how-bor2::before,
.how-bor1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 3px solid #db1414;
  border-radius: 50px;
}

.how-bor1::before {
  bottom: -21px;
  left: -21px;
}


@media (max-width: 767px) {
  .how-bor1::before {
    bottom: -21px;
    right: -21px;

  }
}

.how-bor2::before {
  bottom: -21px;
  right: -21px;
}
 @media (max-width: 468px) {
        .how-bor2 {
            height: 200px !important; /* Adjust height for tablets */
        }
    }

    @media (max-width: 456px) {
        .how-bor2{
            height: 270px !important; /* Adjust height for mobile */
        }
    }
    @media (max-width: 456px) {
        .how-bor1{
            height: 270px !important; /* Adjust height for mobile */
        }
    }

    @media (max-width: 456px) {
    h3 {
       padding-left: 10px;
        font-size: 1.35rem !important;
    }

    p {
         padding-left: 10px;
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
}


/*program end*/

/* Make the map and contact info the same height */
.map-container,
.contact-info-container {
  height: 100%;
}

/* Align the contact information in one column (single item per row) */
.contact-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-info-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  width: 100%;
  /* Ensure each item takes up full width */
}

.contact-info {
  display: flex;
  align-items: center;
  width: 100%;
  /* Adjust to fill entire row */
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--body);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon i {
  color: #ffffff;
  font-size: 18px;
}

.contact-text {
  padding-left: 15px;
}

.contact-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}

.contact-text p {
  font-size: 16px;
  color: #454545;
}

/* Styling for social icons */
.contact-social a {
  margin-right: 10px;
  font-size: 18px;
  color: var(--body);
}

.contact-social a:hover {
  color: #0a389a;
}

/* Ensure map has proper sizing and responsiveness */
.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
  /* Path */
.banner-area {
  position: relative;
  min-height: 300px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/image-5/img-16.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .banner-title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .banner-title {
    font-size: 32px;
  }
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
  padding: 0;
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus {
  color: #fff !important;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* Image Gallery */
.untree_co-section {
  /* padding: 50px 0; */
  position: relative;
}

/* @media (max-width: 991.98px) {
  .untree_co-section {
      padding: 50px 0;
  }
} */

.untree_co-section .heading h3 {
  font-size: 35px;
  color: #000000;
}

@media (max-width: 991.98px) {
  .untree_co-section .heading {
      font-size: 20px;
  }
}

.untree_co-section .heading strong {
  font-weight: 700;
}

.item {
  border: none;
  margin-bottom: 30px;
  border-radius: 4px;
  display: block;
}

.item a {
  height: 250px;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  display: block;
}

.item a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.item .item-wrap {
  display: block;
  position: relative;
  border-radius: 10px;
}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.item .item-wrap > i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  font-size: 1.7rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover i {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/* .item:hover a  img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
} */

.item-wrap:hover img{
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}
.card-body{
  max-height: 400px;
}
.product-img{
  max-height: 400px;
}


@media (max-width:767px) {
  .obj-img img{
    max-height: 250px;
  }
  .obj-text{
    min-height: 200%;
  }
  .card{
    height: 500px;
  }
  .card-dis{
    height: 600px;
  }
  .card-women, .card-water, .card-drug{
    height: 600px;
  }
}

@media (max-width:446px) {
  .card-juv{
    height: 530px;
  }
}
@media (max-width:518px) {
  .card-public{
    height: 530px;
  }
}
@media (max-width:458px) {
  .card-solar{
    height: 540px;
  }
}
@media (max-width:475px) {
  .card-food{
    height: 540px;
  }
}
@media (max-width:377px) {
  .card-drug{
    height: 650px;
  }
}
@media (max-width:464px) {
  .card-animal{
    height: 550px;
  }
}


@media (max-width:1199px) {
  .obj-text h4{
    font-size: 16px;
  }
  .obj-text p{
    font-size: 12px;
  }
}
  .cta {

   background: linear-gradient(to right,rgba(0, 0, 0, 0.253), rgba(0, 0, 0, 0.37)), url("../img/image-5/bk-2.jpg") fixed center center; 


  background-size: cover;

  padding: 120px 0;

  margin-bottom: 50px;

}



.cta h3 {

  color: #fff;

  font-size: 28px;

  font-weight: 700;

}



.cta p {

  color: #fff;

}



.cta .cta-btn {

  font-family: "Raleway", sans-serif;

  text-transform: uppercase;

  font-weight: 500;

  font-size: 15px;

  letter-spacing: 0.5px;

  display: inline-block;

  padding: 8px 26px;

  border-radius: 2px;

  transition: 0.5s;

  margin: 10px;

  border-radius: 50px;

  border: 2px solid white;

  color: #fff;

}



.cta .cta-btn:hover {

  background: white;
  border: 2px solid white;
  color: var(--body);

}



@media (max-width: 1024px) {

  .cta {

    background-attachment: scroll;

  }

}



@media (min-width: 769px) {

  .cta .cta-btn-container {

    display: flex;

    align-items: center;

    justify-content: flex-end;

  }

}

.cta-one {

  background: url("../img/image-5/bk-2.jpg") fixed center center;

  background-size: cover;

  padding: 120px 0;

  margin-bottom: 50px;

}

.accordion-header button{
  color: #1c1c1c !important;
  background-color: rgb(221, 243, 24);
 }
 .accordion-header button:active{
   /* background-color: rgb(194, 9, 193,.1); */
  background-color: rgb(231, 235, 33);
 }

 .faq-row{
  display: flex;
  align-items: center;
 }

 .accordion-body{
  padding-bottom: 2px;
 }

 .faq-img img{
  filter: brightness(0.9);
  border-radius: 10px;
 }