@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Fira Sans', sans-serif;
}

.text-green-hero { 
    font-weight: bolder;
    color: #2D7287 !important; /* Warna teks utama */
    -webkit-text-stroke: 11px #fff; /* Warna dan ketebalan stroke */ 
    /* text-stroke: 2px #fff; */ /* Warna dan ketebalan stroke */ 
    paint-order:  stroke fill;
    text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.1); /* Bayangan teks halus */
}

.text-yellow-hero {  
    font-weight: bold;
    color: #b31b1b !important; /* Warna teks utama */
    -webkit-text-stroke: 11px #fff; /* Warna dan ketebalan stroke */
    /* text-stroke: 2px #fff; */ /* Warna dan ketebalan stroke */
    paint-order:  stroke fill;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.1); /* Bayangan teks halus */
}

@media (max-width: 768px){
    .text-green-hero { 
        font-weight: bolder;
        color: #2D7287 !important; /* Warna teks utama */
        -webkit-text-stroke: 1.5px #fff; /* Warna dan ketebalan stroke */ 
        text-stroke: 2px #fff; /* Warna dan ketebalan stroke */ 
        /* paint-order: marker stroke fill; */
        text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.1); /* Bayangan teks halus */
    }
    
    .text-yellow-hero {  
        font-weight: bold;
        color: #b31b1b !important; /* Warna teks utama */
        -webkit-text-stroke: 1.5px #fff; /* Warna dan ketebalan stroke */
        text-stroke: 2px #fff; /* Warna dan ketebalan stroke */
        /* paint-order: stroke fill; */
        text-shadow: 
            1px 1px 2px rgba(0, 0, 0, 0.1); /* Bayangan teks halus */
    }
}

.text-gradient-1 {
    background: linear-gradient(to bottom, #325F81, #229492);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
.border-radius-1{
    border-radius: 0 24px 0 24px;
}

.position-custom{
    right: -5px;
    rotate: -70deg;
}

.text-gradient-yellow {
    background: linear-gradient(to right, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .button-container a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #register, #konsultasi {
    width: auto;
    padding: 10px 20px;
  }
  
  @media (max-width: 768px) {
    .button-container {
      bottom: 10px;
      right: 10px;
    }
  
    #register, #konsultasi {
      padding: 8px 16px;
    }
  }
  