/*The div containing the wheel and the image  */
#overlap {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse; 
}

#wheelDiv, #sickWheelDiv {
    z-index: 10; /* higher z-index makes it go on top of elements with lower z-index*/
}

#wheelImageDiv, #sickWheelImageDiv {
    position: absolute;
    z-index: 1; /* higher z-index makes it go on top of elements with lower z-index*/

    width: 500px; /* For IE 11 */
    height: 500px; /* For IE 11 */
    bottom: 0px; /* For IE 11 */
}

#wheelImage, #sickWheelImage {
    width: 250px;
    height: 167px;
    z-index: 2; /* higher z-index makes it go on top of elements with lower z-index*/
}

#wheelText, #sickWheelText {
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 20%;
    
}

#wheelText h1, #sickWheelText h1 {
    font-weight: bold;
    font-size: 1.3em; 
}

#wheelText h2, #sickWheelText h2 {
    font-weight: bold;
    font-size: 1em; /* 24px ÷ 16 = 1.5 */
}

#wheelText p, #sickWheelText p {
    font-size: 1em; /* 24px ÷ 16 = 1.5 */
    font-style: normal;
}

#buttons {
    position: absolute;
    bottom: 0;
    right: 0;
}

.fab {
    z-index: 10;
    max-width: 56px;
    max-height: 56px;
    border: none;
    transition: all 0.1s ease-in-out;
    position: fixed;
    right: 50px;
    bottom: 50px;
    
  }

  .fab2 {
    z-index: 10;
    width: 56px;
    height: 56px;
    border: none;
    transition: all 0.1s ease-in-out;
    position: fixed;
    right: 150px;
    bottom: 50px;
  }
.fab:hover, .fab2:hover {
    transition: all .2s ease-in-out;
    transform: scale(1.1);
  }

.fab img, .fab2 img {
    height: 56px;
}

/* On Mobile */
@media (max-width: 576px) {
    
    #wheelImageDiv, #sickWheelImageDiv {
        width: 360px; /* For IE 11 */
        height: 360px; /* For IE 11 */
        bottom: 0px; /* For IE 11 */
    }

    #wheelImage, #sickWheelImage {
        width: 180px;
        height: 120px;
        z-index: 2; /* higher z-index makes it go on top of elements with lower z-index*/
    }

    a {
        font-size: 1em
    }
    
    #wheelImage, #sickWheelImage {
        width: 180px;
        height: 120px;
        z-index: 2; /* higher z-index makes it go on top of elements with lower z-index*/
    }
    
  }

  #approachContent, #preventiveContent, #sickContent {
    position: relative; 
    padding-bottom: 100px;
    font-size: 1.5em;
    }
