    * {
        box-sizing: border-box;
    }
    /* div {
        border: 1px solid #000;
    } */
    
    body {
        background-color: #999;
        background-image: url("../images/fog.png");
        background-attachment: fixed;
        background-size: cover;
        font-weight: normal;
        font-size: 14px;
        color: #000;
        font-family: 'Roboto', sans-serif;
    }
    
    .bg-white {
        background-color: #fff;
    }
    
    .home {
        background-image: url("../images/home/000.jpg");
        background-position-x: -100px;
        background-position-y: -160px;
        border-bottom: 2px solid #000;
    }
    
    .circle {
        background-color: rgba(255, 89, 0, 0.89);
        border-radius: 100%;
        width: 100%;
        max-width: 380px;
        max-height: 380px;
        margin: 50px auto;
    }
    
    .circle h1 {
        font-family: 'Old Standard TT', serif;
        font-size: 40px;
    }
    
    .circle h4 {
        font-weight: normal;
        font-size: 16px;
        color: #000;
    }
    
    .circle .home-button {
        background: #282828;
        border: none;
        border-radius: 25px;
        padding: 6px 46px;
    }
    
    .circle a:focus,
    .circle a:hover {
        background: #080808;
    }
    
    .circle a {
        color: #fff;
        font-weight: bold;
        z-index: 200;
    }
    
    .black {
        color: #000;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    h7 {
        font-weight: bold;
    }
    
    .small-font {
        font-size: 10px;
    }
    
	p.home1  {text-align: center;font-size: 22px;}
		p.home2  {text-align: center;font-size: 18px;}
			p.home3  {text-align: center;font-size: 17px;}
						p.home4  {text-align: center;font-size: 14px;}
									p.home5  {text-align: center;font-size: 13px;margin-top: 35px;margin-bottom: 0px;}
									.measure  {text-align: center;font-weight: bold;color: #FF8512;font-size: 26px;margin-top: 20px;}
	
    .indent {
        /* left indented paragraph spacing */
        padding-left: 20px
    }
    
    header {
        border-left: 2px solid #000;
        border-right: 2px solid #000;
        border-top: 2px solid #000;
        border-radius: 200px 200px 0 0;
    }
    
    #header {
        display: block;
    }
    
    #header2 {
        display: none;
    }
    
    .shadow {
        box-shadow: 5px 5px 5px #666;
    }
    
    .header-text {
        font-size: 48px;
        font-weight: bold;
        position: absolute;
        top: 15px;
        left: 555px;
        color: #369;
        text-shadow: -1px -1px #69c, 2px 2px 4px #000, 1px 1px 4px #000;
    }
    
    .header-subtext {
        font-size: 32px;
        font-weight: bold;
        position: absolute;
        top: 90px;
        left: 516px;
        color: #369;
        text-shadow: -1px -1px #69c, 2px 2px 4px #000, 1px 1px 4px #000;
    }
    
    .row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .container {
        padding-left: 45px;
        padding-right: 45px;
    }
    
    .side-borders {
        border-left: 2px solid #000;
        border-right: 2px solid #000;
    }
    
    .container-fluid {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    [class*="col-md-"] {
        /* left and right column spacing */
        padding: 10px 10px;
    }
    
    .orange,
    h4 {
        color: #FF8512;
    }
    
    .img-center {
        display: block;
        margin: 0 auto;
    }
    
    .black {
        color: #000;
    }
    
    .fog {
        -webkit-animation-name: fog;
        /* Safari 4.0 - 8.0 */
        -webkit-animation-duration: 3s;
        /* Safari 4.0 - 8.0 */
        animation-name: fog;
        animation-duration: 3s;
        border: none;
    }
    /* Safari 4.0 - 8.0 */
    
    @-webkit-keyframes fog {
        0% {
            opacity: .15;
        }
        45% {
            opacity: .20;
        }
        48% {
            opacity: .25;
        }
        50% {
            opacity: .28;
        }
        53% {
            opacity: .30;
        }
        55% {
            opacity: .33;
        }
        58% {
            opacity: .35;
        }
        60% {
            opacity: .38;
        }
        63% {
            opacity: .40;
        }
        65% {
            opacity: .43;
        }
        68% {
            opacity: .45;
        }
        70% {
            opacity: .50;
        }
        73% {
            opacity: .55;
        }
        75% {
            opacity: .60;
        }
        78% {
            opacity: .65;
        }
        80% {
            opacity: .70;
        }
        83% {
            opacity: .75;
        }
        85% {
            opacity: .80;
        }
        90% {
            opacity: .85;
        }
        95% {
            opacity: .90;
        }
        100% {
            opacity: 1;
        }
    }
    /* Standard syntax */
    
    @-webkit-keyframes fog {
        0% {
            opacity: .05;
        }
        50% {
            opacity: .10;
        }
        53% {
            opacity: .15;
        }
        55% {
            opacity: .20;
        }
        58% {
            opacity: .25;
        }
        60% {
            opacity: .30;
        }
        63% {
            opacity: .35;
        }
        65% {
            opacity: .40;
        }
        68% {
            opacity: .45;
        }
        70% {
            opacity: .50;
        }
        73% {
            opacity: .55;
        }
        75% {
            opacity: .60;
        }
        78% {
            opacity: .65;
        }
        80% {
            opacity: .70;
        }
        83% {
            opacity: .75;
        }
        85% {
            opacity: .80;
        }
        90% {
            opacity: .85;
        }
        95% {
            opacity: .90;
        }
        100% {
            opacity: 1;
        }
    }
    /* Standard syntax */
    
    ul {
        list-style-image: url('../images/bullet.png');
    }
    
    input {
        width: 100%;
    }
    
    .form-box {
        border: 2px solid #000;
        padding: 0 45px;
        margin-bottom: 35px;
    }
    
    .form-value {
        border-radius: 3px;
        border: 1px solid #aaa;
        box-shadow: 0px -1px #999;
        margin: 5px 0 0;
    }
    
    textarea {
        width: 100%;
        min-height: 90px;
        max-width: 900px;
    }
    
    select {
        margin-top: 5px;
        width: 100%;
    }
    
    .faq {
        height: 27px;
        max-width: 625px;
    }
    
    .submit {
        margin-top: 10px;
        color: #000;
        border: 1px solid #888;
        border-radius: 5px;
        width: 102px;
        height: 31px;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
        cursor: pointer;
        padding: 0;
    }
    
    .form-images {
        padding: 35px 25px 10px 25px;
    }
    
    footer {
        text-align: center;
        color: #fff;
        background: #161616;
    }
    
    footer a {
        color: #666;
    }
    
    @media only screen and (max-width: 990px) {
        .row {
            display: block;
        }
    }
    
    @media only screen and (max-width: 620px) {
        /* responsive header image */
        #header {
            display: none;
        }
        #header2 {
            display: block;
            width: 100%;
        }
        .fog {
            display: none;
        }
    }
    
    @media (min-width: 768px) {
        .slider-container {
            width: 750px;
            margin: 0 auto;
        }
    }
    
    @media (min-width: 992px) {
        .slider-container {
            width: 970px;
            margin: 0 auto;
        }
    }
    
    @media (min-width: 1200px) {
        .slider-container {
            width: 1170px;
            margin: 0 auto;
        }
    }
    
    @media only screen and (max-width: 380px) {
        .circle {
            background-color: rgba(255, 133, 18, 0.897);
            border-radius: 100%;
            width: 100%;
            max-width: 380px;
            max-height: 380px;
            margin: 0px auto;
        }
        .circle h1 {
            font-family: 'Old Standard TT', serif;
            font-size: 29px;
        }
        .circle h4 {
            font-weight: normal;
            font-size: 14px;
        }
    }