/** Buttons **/
.popup-btn {
    text-align: center;
    text-decoration: none;
    color: #FCF005;
    background: #285493;
    font-weight: 400;
    font-size: 2em;
    border-radius: 0.4em;
    width: 200px;
    padding: 0.5em;
}

a {
    color: inherit;
}

.flex-container {
  display: flex;
  justify-content: center;
}

.popup-btn:hover {
    text-decoration: none;
}

/** Social Icons **/

#social {
  margin: 20px 10px;
  text-align: center;
}

.smGlobalBtn { /* global button class */
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border:2px solid #FEF102; /* add border to the buttons */
    padding: 0px;
    text-decoration: none;
    text-align: center;
    color: #FEF102!important;
    font-size: 24px;
    font-weight: normal;
    line-height: 2em;
    margin:0.5em;
    border-radius: 27px;
    -moz-border-radius:27px;
    -webkit-border-radius:27px;
    transition: background 0.5s ease;
    
}

/* facebook button class*/
.facebookBtn{
    background: #285493;
}

.facebookBtn:before{ /* use :before to add the relevant icons */
    font-family: "FontAwesome";
    content: "\f09a "; /* add facebook icon */
}

.facebookBtn:hover{
    color: #285493!important;
    background: #FEF102;
    border-color: #FEF102; /* change the border color on mouse hover */
    transition: background 0.5s ease;
}

.youtubeBtn{
    background: #285493;
}

.youtubeBtn:before{ /* use :before to add the relevant icons */
    font-family: "FontAwesome";
    content: "\f16a"; /* add instagram icon */
}

.youtubeBtn:hover{
    color: #285493!important;
    background: #FEF102;
    border-color: #FEF102; /* change the border color on mouse hover */
    transition: background 0.5s ease;
}