/* Home Page Learn More Button for LTAD */
.learnmorebutton {
  border-radius: 4px;
  background-color: #364bb4;
  border: none;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  width: 50%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}
@media only screen and (min-width:601px) {
  .learnmorebutton {
    font-size:12px;
  }
}
@media only screen and (max-width:600px) {
  .learnmorebutton {
    font-size:8px;
  }
}

.learnmorebutton span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.learnmorebutton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -25px;
  transition: 0.5s;
}

.learnmorebutton:hover span {
  padding-right: 10px;
}

.learnmorebutton:hover span:after {
  opacity: 1;
  right: 0;
}

/* Home Page Learn More Button for P&T */
.learnmorebuttonPT {
  border-radius: 4px;
  background-color: #d39c34;
  border: none;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  width: 50%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}
@media only screen and (min-width:601px) {
  .learnmorebuttonPT {
    font-size:12px;
  }
}
@media only screen and (max-width:600px) {
  .learnmorebuttonPT {
    font-size:8px;
  }
}

.learnmorebuttonPT span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.learnmorebuttonPT span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -25px;
  transition: 0.5s;
}

.learnmorebuttonPT:hover span {
  padding-right: 10px;
}

.learnmorebuttonPT:hover span:after {
  opacity: 1;
  right: 0;
}

/* Button for LTAD Home Page Learn More */
.LTADButton1 {
  background-color: #364bb4; /* Purple */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.LTADButton1 {
  background-color: white; 
  color: black; 
  border: 2px solid #364bb4;
}

.LTADButton1:hover {
  background-color: #364bb4;
  color: white;
}
@media only screen and (min-width:601px) {
  .LTADButton1 {
    font-size:12px;
  }
}
@media only screen and (max-width:600px) {
  .LTADButton1 {
    font-size:8px;
  }
}

/* Button for P&T Home Page Learn More */
.PTButton1 {
  background-color: #d39c34; /* Mustard Yellow */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.PTButton1 {
  background-color: white; 
  color: black; 
  border: 2px solid #d39c34;
}

.PTButton1:hover {
  background-color: #d39c34;
  color: white;
}
@media only screen and (min-width:601px) {
  .PTButton1 {
    font-size:12px;
  }
}
@media only screen and (max-width:600px) {
  .PTButton1 {
    font-size:8px;
  }
}














