.margTop{
	padding-top: 60px;
}


#nav {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }


  .dropdown-item:focus{
    background-color: rgba(13, 106, 87, 0.1);
  }


.infoIcon{
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-top: -20px;
}


/* ----------------------------- zoom effet for 2 cards ----------------------------- */
.card-item {
	margin-top: 15px;
	transition: transform 0.3s ease-in-out;
  }
  
  .card-img-fix {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
  }
  
  .card-img-top {
	width: 100%;
	height: 30rem;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
  }
  
  
  .card-item:hover .card-img-top {
	transform: scale(1.05);
  }
  
/* -------------------------------- [gallery image] -------------------------------- */

.img-mini{
  height: 300px;
  object-fit: cover;
}

.img-lrg{
  height: 600px;
  object-fit: cover;
}

.gallery-inside{
  padding: 0 5px;
}





  
/* -------------------------------- [Journey Card Purple] -------------------------------- */
.paintCard{
    border-radius: 10px;
    background: linear-gradient(45deg, #ECE9E6 0%, #fff 100%);
}

.paintCardTitle{
    font-size: 4em;
}

.paintCardList{
	font-size: 1.2em;
}

.paintCardList{
    transition: text-decoration 2s;
    text-decoration-color: #1e4e2f;
  }

  .paintCardList:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.15em;

  }

  .applyBtn{
    border-radius: 20px;
  }

  .text-green{
	color: #1e4e2f;
  }



/* Media Query for Mobile Devices */
@media (max-width: 480px) {



    .paintCardTitle{
        font-size: 2.5em;
    }

    .paintCard{
        padding: 10px 0;
    }

    .img-mini{
      height: 150px;
      object-fit: cover;
    }
    
    .img-lrg{
      height: 200px;
      object-fit: cover;
    }

    .gallery-inside{
      padding: 0 2px;
    }


}

@media (min-width: 768px) and (max-width: 1024px){
    .paintCardTitle{
        font-size: 1.5em;
    }

    .journeyText{
        font-size: 1em;
    }
}


@media (min-width: 1025px) and (max-width: 1280px){

    .paintCardTitle{
        font-size: 2.5em;
    }

    .journeyText{
        font-size: 1.5em;
    }
}








