﻿@font-face {
    font-family: 'Folio_Light_ Regular';
    src: url('..//css/fonts/Folio_Light_ Regular.otf') format('opentype');
}
body {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    background-image: url('../assets/OutsideMainImage.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Folio_Light_ Regular', sans-serif;
}
/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    /**/
}
    #home .container {
        background-color: rgba(191,216,210,.8);
        color: #333333;
        border-radius: 75px;
        padding: 20px;
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    #header {
        padding: 30px 0;
        height: 92px;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        transition: all 0.5s;
        z-index: 997;
    }
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
    background-color: white;
}
/*--------------------------------------------------------------
# schedule
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
#callToAction {
    width: 100%;
    height: 40vh;
    background-image: url('../assets/CallToAction.jpg');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

    #callToAction h2 {
        background-color: rgba(191,216,210,.8);
        color: #333333;
        border-radius: 75px;
        padding: 20px;
    }

#schedule {
    background-color: #f8f9fa;
}
/*--------------------------------------------------------------
# classes
--------------------------------------------------------------*/
#classes {
    background-color: white;
}

/*--------------------------------------------------------------
# pricing
--------------------------------------------------------------*/
#pricing {
    background-color: #f8f9fa;
}

/*--------------------------------------------------------------
# pricing
--------------------------------------------------------------*/
#contact {
    background-color: white;
}
/*--------------------------------------------------------------
# modal-content
--------------------------------------------------------------*/
.modal-content {
    background-color: #f5f5f5;
    border-radius: 5px;
    text-align: center;
}

.boxShadow {
    -webkit-box-shadow: 11px 0px 48px -20px rgba(5,0,5,0.61);
    -moz-box-shadow: 11px 0px 48px -20px rgba(5,0,5,0.61);
    box-shadow: 11px 0px 48px -20px rgba(5,0,5,0.61);
}

/*-----------------------------------------------------------
Pulse effect
-------------------------------------------------------------*/

.highlite {
    
/*    border-radius: 10%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
*/    margin: 10px;
    height: 20px;
    width: 20px;
    transform: scale(1);
    animation: pulse-black 2s normal;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.05);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.highlite.white {
    background: white;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 2s infinite;
}
