.btn-custom {
  background-color: #79a957 ;
  border: 1px solid #79a957 ;
}
form .btn-custom:hover{
    background-color: rgb(121, 169, 87,0.8);
}
.btn-outline-green {
  color: #79a957 ;
  border: 1px solid #79a957 ;
}
.btn-outline-green:hover{
    background-color: #79a957;
    color: black;
}
.text-green {
  color: #79a957;
}
.border-green {
  border-color: #79a957 ;
}
.accordion-button:not(.collapsed) {
    color: #79a957;
}
/* .special-btn:hover{

} */
.special-image1 {
    background-image: url(../images/img12.jpg);
    clip-path: polygon(
  0% 0%,     
  100% 0%,  
  100% 100%, 
  15% 100%    
);

}
.special-image2 {
    background-image: url(../images/img13.jpg);
    clip-path: polygon(
   0% 0%,     
  100% 0%,   
  85% 100%,   
  0% 100%  
  ) ;
}
.special-image3 {
    background-image: url(../images/img14.webp);
    clip-path: polygon(
  0% 0%,    
  100% 0%, 
  100% 100%,  
  15% 100%    
);
}
.special-image4 {
    background-image: url(../images/img8.jpg);
    clip-path: polygon(0% 0%, 
  100% 0%,   
  85% 100%, 
  0% 100%   );
}
.special-image {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 25vh;
  transition: 0.5s;
}

.clip-rect {
    overflow: hidden;
    position: relative;
    height: 330px;
}

/* ----------------------- */
.nav-link:focus {
    outline: 1px solid #79a957;
    border-radius: 5px;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: 0px 0px 3px 2px rgb(163, 163, 163);
}

.social-icons {
    z-index: 9999;
    right: 0;
    margin-right: 0.65rem;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    width: 40px;
    overflow: hidden;
}

.social-icons a i {
    transition: opacity 0.2s ease;
    opacity: 1;
}

.social-icons a:hover i {
    opacity: 0.4 !important;
}
.special-card {
    position: relative;
}

.special-card::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    right: 0;
    bottom: 0;
    background: rgb(121, 169, 87,0.1);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 1;
}

.special-card:hover::before {
    height: 100%;
    width: 100%;
    opacity: 1;
}

.special-card::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 0;
    top: 0;
    background: rgb(121, 169, 87,0.1);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 1;
}

.special-card:hover::after {
    height: 100%;
    width: 100%;
    opacity: 1;
}
.card:hover .special-image {
    transform: scale(1.05);
}

.special-btn:hover {
    background-color: none;
    border:2px solid #79a957;
}
.special-btn:hover i{
    color: #79a957 !important;
}
.custom-card {
    transition: transform 0.7s ease;
    cursor: pointer;
}

.custom-card:hover {
    transform: scale(0.9);
}
.wider-container {
    max-width: 1200px;
}
.special-card2{
    transition: 0.5s;
}
.special-card2:hover{
    cursor: pointer;
    transform: scale(1.03);
}

