@import url("https://fonts.googleapis.com/css?family=Open+Sans");

h2, h3, h4{
    line-height: 33px;
}
.short-course-description h4{
  color: #000 !important;
}
.readmore-js-toggle{
  font-family: 'Mitr';
  font-size: 15px;
}
:root{
    --yellow: #eb8123;
    --silver: #cccc;

    --fireworks--width: 3px;
    --fireworks--height: 3px;
    --fireworks-border:var(--fireworks--width)/2;
}

.button--secondary,
.button--secondary:visited {
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  min-width: 64px;
  font-family: inherit;
  font-size: inherit;
  line-height: 15px;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transition:  0.1s linear;
  font-weight: 400;
  color: var(--yellow);
  border: 1px solid #ddd;
  box-shadow: none;
  padding: 10px 10px;
  transition-property: border;
  transition-timing-function: ease-in-out;
  transition-duration: 0.15s;
}


.icon-svg--color-silver {
    fill: var(--silver);
    color: var(--silver);
  }
  
  .icon-svg--color-blue {
    fill: var(--yellow);
    color: var(--yellow);
  }
  
  .icon-svg {
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
  }
  
  /* position the active state heart */
  .heart-full {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
  
  /* // firework effect styles */
  .btn__effect {
    display: inline-block;
    position: relative;
  }
  .effect-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(25deg);
}
.effect-group .effect {
    display: block;
    position: absolute;
    top: 38%;
    left: 50%;
    width: 20px;
    transform-origin: 0px 2px;
}
.effect-group .effect:nth-child(2) {
    transform: rotate(72deg);
  }
  .effect-group .effect:nth-child(3) {
    transform: rotate(72*2deg);
  }
  .effect-group .effect:nth-child(4) {
    transform: rotate(72*3deg);
  }
  .effect-group .effect:nth-child(5) {
    transform: rotate(72*4deg);
  }
  .effect-group .effect:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    border-radius: var(--fireworks--border);
    height: var(--fireworks--height);
    background: #0090e3;
  }
  .effect-group .effect:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 10%;
    border-radius: 50%;
    width: var(--fireworks--width);
    height: var(--fireworks--height);
    background: #ff6600;
    transform: scale(0, 0);
  }
  
  /* // TRIGGER ANIMATIONS
  // Generic */
   
  .active .heart-stroke {
      opacity: 0;
    }
    .active .heart-full {
      opacity: 1;
    }
    .active .icon-svg {
      animation: bounceIn 0.5s linear;
    }
    .active .effect:before {
      animation: fireworkLine 0.5s linear 0.1s;
    }
    .active .effect:after {
      animation: fireworkPoint 0.5s linear 0.1s;
    }

  
  /* //cracking heart */
  .broken-heart {
    position: absolute;
    left: -16px;
    top: 0;
    opacity: 0;
  }
  .broken-heart --left {
    transform: rotate(0deg);
    transform-origin: 60% 200%;
  }
  .broken-heart --right {
    transform: rotate(0deg);
    transform-origin: 63% 200%;
  }
  .broken-heart --crack {
    stroke-dasharray: 15;
    stroke-dashoffset: 15;
  }
  
   
      .deactivate.broken-heart {
        opacity: 1;
      }
      .deactivate.broken-heart--left {
        animation: 
          crackLeft 0.35s cubic-bezier(0.680, -0.550, 0.265, 2.850) 0.15s forwards,
          hide 0.25s ease-in 0.55s forwards;
      }
      .deactivate.broken-heart--right {
        animation: 
          crackRight 0.35s cubic-bezier(0.680, -0.550, 0.265, 2.850) 0.15s forwards,
          hide 0.25s ease-in 0.55s forwards;
      }
      .deactivate.broken-heart--crack {
        animation: 
          crack 0.2s ease-in forwards;
      }
    
  
  /* // Variation One */
  .button.one.desktop:not(.active):hover .heart-stroke {
    animation: pulse 1s ease-out infinite;
  }
  
  
  
  
  @keyframes pulse {
    0% {
      opacity: 1;
      transform-origin: center center;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.15);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  
  @keyframes pulseBlue {
    0% {
      transform-origin: center center;
      transform: scale(1);
      fill: var(--silver);
    }
    50% {
      transform: scale(1.15);
      fill: var(--yellow);
    }
    100% {
      transform: scale(1);
      fill: var(--silver);
    }
  }
  
  
  @keyframes fireworkLine {
    0% {
      right: 20%;
      transform: scale(0, 0);
    }
    25% {
      right: 20%;
      width: 6px;
      transform: scale(1, 1);
    }
    35% {
      right: 0;
      width: 35%;
    }
    70% {
      right: 0;
      width: 4px;
      transform: scale(1, 1);
    }
    100% {
      right: 0;
      transform: scale(0, 0);
    }
  }
  @keyframes fireworkPoint {
    30% {
      transform: scale(0, 0);
    }
    60% {
      transform: scale(1, 1);
    }
    100% {
      transform: scale(0, 0);
    }
  }
  
  @keyframes bounceIn {
    0% {
      transform: scale(0);
    }
    30% {
      transform: scale(1.25);
    }
    50% {
      transform: scale(0.9);
    }
    70% {
      transform: scale(1.1);
    }
    80% {
      transform: scale(1);
    }
  }
  
  
  @keyframes crackLeft {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-45deg);
    }
  }
  
  @keyframes crackRight {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(45deg);
    }
  }
  
  @keyframes crack {
    0% {
      stroke-dasharray: 15;
      stroke-dashoffset: 15;
    }
    80% {
      stroke-dasharray: 15;
      stroke-dashoffset: 0;
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
/* ///// */
.banner{
    padding-top: 80px;
    padding-bottom: 0px;
}
.banner h4{
    line-height: 25px;
}
.banner h2,.banner h3,.banner p{
    color: #000;
}
.banner h2{
  font-size: 25px;
}
.course-description{
    padding: 0;
}
.course-description p{
    font-size: 15px;
    line-height: 24px;
    font-family: kanit;
}
.ints-profile{
    display: inline-flex;
}
.ints-profile img{
    width: 30px;
    border-radius: 5px;
    margin-right: 20px;
}
.price-section{
    display: flex;
    column-gap: 13px;
    align-items: center;
    padding-top: 30px;
    margin-bottom: 15px;
}
.course-price{
    padding: 50px 12px;
}
.card-deck{
    padding: 20px 0;
}
.hilight-section h3, .hilight-section h4{
    margin-bottom: 20px;
    margin-bottom: 16px;
}
.hilight-section{
    padding: 30px 0;
}
#howtoregister .modal-content{
    height: 700px;
    overflow: auto;
}
.info-btn{
    border: 1px solid rgba(211, 211, 211, 0.856);
    padding: 5px 9px;
    border-radius: 3px;
}
.info-btn a{
    color: rgba(211, 211, 211, 0.856);
}
.info-btn a:hover{
    color: #eb6123;
}
.btn-buffet{
    font-family: 'kanit';
    font-weight: bold;
    background-color: orange;
    padding: 9px 22px;
    width: auto;
    font-size: 20px;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    text-align: center;
}
.hilight-section h3, .hilight-section h4{
  color: #000;
}