h1 {
    font-family: 'Lato', sans-serif !important;
}
h2 {
    font-family: 'Lato', sans-serif !important;
}
h3 {
    font-family: 'Lato', sans-serif !important;
}
h4 {
    font-family: 'Lato', sans-serif !important;
}
h5 {
    font-family: 'Lato', sans-serif !important;
}
h6 {
    font-family: 'Lato', sans-serif !important;
}

p {
    font-family: 'Slabo 27px', serif !important;
}

.lato-text {
    font-family: 'Lato', sans-serif !important;
}

.slabo-text {
    font-family: 'Slabo 27px', serif !important;
}

.main-bg {
    background-image: url(../images/main-head-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.opac-black-bg {
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #dc3545; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 5px 10px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

.mobile-divide {
    display: none;
}

@media screen and (max-width: 968px) {
    .mobile-divide {
        display: block;
        border: none;
        background-color: #dc3545;
        height: 2px;
    }
    #myBtn {
        bottom: 0;
        right: 0;
    }
    .remove-mobile {
        display: none !important;
    }
}