/*
Theme Name: fysiomed
Text Domain: fysiomed
Version: 1.0
Description: Custom theme for medical companies
Tags: medical, custom
Author: Levi Bravenboer
Author URI: http://levibravenboer.nl/
*/

.button-blue {
  background-color: #1c99d4;
  color: #fff;
  border: none;
  text-align: center;
  text-decoration: none;
  border-radius: 32px;
  transition: all 0.3s ease;
  display: block;
  padding: 12px 0;
  width: 40%;
  font-size: 1.2em;
}

.button-yellow {
  color: #fff;
  background-color: #d5b728;
  border: none;
  text-align: center;
  text-decoration: none;
  border-radius: 32px;
  transition: all 0.3s ease;
  display: block;
  padding: 12px 0;
  width: 40%;
  font-size: 1.2em;
}

.button-yellow:hover {
  background-color: #ddc553;
  text-decoration: none;
  color: #fff;
}
.button-blue:hover {
  background-color: #49ADDC;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 910px){
  .button-yellow {
    font-size: 2vw;

  }
  .button-blue {
    font-size: 2vw;

  }
  .mobile-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 910px){
  .desktop-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px){
  .button-yellow {
    font-size: 3vw;

  }
  .button-blue {
    font-size: 3vw;

  }
}