html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body{
   background-color: rgb(232, 232, 240) !important; 
}

h1{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Rubik Spray Paint", system-ui;
  font-weight: 400;
  font-style: normal;
}

.btn{
  background-color: #ff8577 !important;
  border: 1px solid #ff8577 !important;
}

.hero {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  height: 60vh;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
  min-height: 80vh;
}

.hero-left {
  flex: 1;
  padding: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero p{
  font-size: 20pt;
}

.hero-left .logo {
  max-width: 700px;
  margin-bottom: 1rem;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.slideshow img {
  /* border: 1px solid #b6b6b6; */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: opacity 1s ease;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 1s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}
.fade-enter-to, .fade-leave-from {
  opacity: 1;
}

.app-grid-wrap{
  border-top: 7px solid #ffcf64;
}

.app-grid .card{
    border: 0;
    padding: 20px;
}

.card-slide-enter-active,
.card-slide-leave-active {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.card-slide-enter-from,
.card-slide-leave-to {
  max-height: 0;
  opacity: 0;
}

.card-slide-enter-to,
.card-slide-leave-from {
  max-height: 500px;
  opacity: 1;
}

.app-grid .card {
  background-color: #fff;
  padding: 50px;
}

i{
  font-size: 3rem; 
}

.app-grid .row  > div:nth-child(6n + 1) i{
  color: #ff8577;
}

.app-grid .row  > div:nth-child(6n + 2) i{
  color: #5d80f9;
}

.app-grid .row  > div:nth-child(6n + 3) i{
  color: #ffcf64;
}

.app-grid .row  > div:nth-child(6n + 4) i{
  color: #3fc3b7;
}

.app-grid .row  > div:nth-child(6n + 5) i{
  color: #D6AEDD;
}

.app-grid .row  > div:nth-child(6n + 6) i{
  color: #C6D8D3;
}

.visible-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}


.site-footer {
  background-color: rgb(223, 223, 240);
  padding: 40px 0;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.site-footer .footer-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #5d80f9;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  color: #333;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff8577;
}

.footer-credit {
  font-size: 0.9rem;
  color: #666;
}



