:root {
  --primary-color: #000000;
  --secondary-color: #7d1b1a;
  --tertiary-color: #bdbcbe;
  --body-bg: #ffffff;
  --text-color: #000000;
  --alt-text-color: #ffffff;
  --link-color: #000000;
  --link-hover-color: #332529;
  --primary-font-family: "acumin-pro-condensed", arial, Helvetica, sans-serif;;
  --button-text: #ffffff;
  --button-bg: #000000;
  --button-hover-text: #000000;
  --button-hover-bg: #ffffff;
  --border-radius: 4px;
  --footer-text: #ffffff;
  --footer-bg: #7d1b1a;
  --footer-padding: 20px;
  --section-padding: 50px 0;
  --section-padding-sm: 45px;
  --alt-section-bg: #f3f1eb;
  --alt-section-text-color: #000000;
  --transition-speed: 0.35s;
}

/**********************************************/
/*******        Helper Classes          *******/
/**********************************************/
/* @group region*/

/* Removes Padding of Columns Inside This Row  */
.relative {
    position: relative;
}

/* Removes Padding of Columns Inside This Row So They Touch The Edge Of Container */
.row-nopad {
    margin-right: -15px;
    margin-left: -15px;
}

.row-nopad > * {
    padding-right: 0;
    padding-left: 0;
}

.row-nopad:before,
.row-nopad:after {
    display: table;
    content: " ";
}

.row-nopad:after {
    clear: both;
}
.nopad-md{padding: 0;}

@media (min-width: 992px) {
    .nopad-md{
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Disables Textarea Resize that Messes with Design */
textarea {
    resize: none;
}

/* Force Block Elements To Stack Horizontally */
/* Ex: Span Around A Phrase So It drops Down */
/* As a Whole When Responding  */
.inline-block {
    display: inline-block
}

/* Prevents Flicker On Transition */
.carousel {
    position: relative;
    z-index: 1000;
}

/* Always Displays a Scrollbar even if page does not need to scroll */
html {
    font-size: 16px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
/* @endregion*/

/**********************************************/
/*******        Fonts Classes           *******/
/**********************************************/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    font-family: var(--primary-font-family);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    font-weight: 500;
}

a:hover, a:active, a:visited {
    color: var(--link-hover-color);
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.lead {
    font-size: 1.25rem;
}

/**********************************************/
/*******       Template Classes         *******/
/**********************************************/

body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    height: 400px;
    background-image: url("../images/template/0224-OfficeMO-MS-026.jpg");
    background-size: cover;
    background-position: center;
}

.header-overlay {
    position: absolute;
    z-index: 0;
    display: block;
    height: 400px;
    width: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
}

.header-text {
    color: var(--alt-text-color);
    text-align: center;
}

div.themes {
    background-color: var(--alt-section-bg);
    padding: var(--section-padding);
}

a.btn-primary {
    text-decoration: none;
}

.btn-primary, .btn-primary:visited  {
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--button-hover-bg);
    color: var(--button-hover-text);
    border: 1px solid #fff;
}

footer {
    text-align: center;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--footer-padding);
}

/**********************************************/
/*******      Navigation Classes        *******/
/**********************************************/


/**********************************************/
/********        Form Classes          ********/
/**********************************************/


/**********************************************/
/*******        Helper Classes          *******/
/**********************************************/

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.img-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

/**********************************************/
/*******      Media Query Classes       *******/
/**********************************************/

@media screen and (min-width: 768px) {
    .flex-sm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .header-text {
        max-width: 90%;
        margin-left: 5%;
        padding-top: 50px;
    }
}

@media screen and (min-width: 992px) {
    .header-text {
        max-width: 70%;
        margin-left: 15%;
        padding-top: 50px;
    }
    .flex-md {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1200px) {
    .header-text {
        max-width: 50%;
        margin-left: 25%;
        padding-top: 60px;
    }
}

@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {
    .mb-5-md {
        margin-bottom: 5px;
    }

    .mb-10-md {
        margin-bottom: 10px;
    }

    .mb-20-md {
        margin-bottom: 20px;
    }

    .mb-30-md {
        margin-bottom: 30px;
    }

    .mb-40-md {
        margin-bottom: 40px;
    }

    .mb-50-md {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .header-text {
        max-width: 90%;
        margin-left: 5%;
        padding-top: 50px;
    }
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 18px;
    }
    .mb-5-sm {
        margin-bottom: 5px;
    }

    .mb-10-sm {
        margin-bottom: 10px;
    }

    .mb-20-sm {
        margin-bottom: 20px;
    }

    .mb-30-sm {
        margin-bottom: 30px;
    }

    .mb-40-sm {
        margin-bottom: 40px;
    }

    .mb-50-sm {
        margin-bottom: 50px;
    }
}
