/**********************************************/
/*******        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: "Faustina", serif;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

a {
    color: #0f638d;
}

a:hover, a:focus {
    color: #147fb5;
}

footer a {
    color: #fff;
    font-weight: 700;
}

footer a:hover, footer a:active, footer a:focus {
    color: #222;
}

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

body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 100vh;
    font-family: "Merriweather", serif;
    /* background-image: url("../images/template/bg.jpg");
    background-size: cover; */
    background: top center repeat-y url('../images/template/bg.jpg');
    font-family: "Open Sans", sans-serif;
}

header {
    position: relative;
}

.carousel-inner>.item>img {
    margin: 0 auto;
}

section.main {
    margin: 75px 0;
}

.carousel-main {
    max-width: 1500px;
    margin: 0 auto;
}

.content-layout-home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.content-layout-home .content-layout-home-image {
    position: relative;
    margin-top: -30px;
    margin-bottom: 50px;
    border: 5px solid #552028;
}

.content-layout-home .content-layout-home-text {
    position: relative;
    width: 92%;
    z-index: 1;
}

.content-layout-home-text-inner {
    padding: 20px 15px;
    -webkit-box-shadow: 0 3px 10px rgb(20 12 12 / 45%);
            box-shadow: 0 3px 10px rgb(20 12 12 / 45%);
    background-color: #dfcfb5;
    color: #111;
}

.content-layout-home .content-layout-home-text p {
    font-size: 1.25rem;
    line-height: 1.3;
}

section.ctas {
    background-color: #000;
    text-align: center;
    padding: 30px;
}

.cta a img {
    padding: 20px;
    position: relative;
    -webkit-transform: scale(1);
	-ms-transform: scale(1);
	    transform: scale(1);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.cta a:hover img {
    -webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	    transform: scale(1.03);
}

.cta-text {
    position: absolute;
    font-size: 30px;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
}

footer {
    background-color: #552028;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.contact-section {
    background-color: rgb(223 207 181 / 60%);
}

.btn-primary {
    border: none;
    background-color: #552028;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #7b2f3a;
}

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

.navbar {
    background-color: #552028;
    border-radius: 0;
    border-bottom: 3px solid #000;
    border-top: 3px solid #000;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
    font-family: "Faustina", serif;
    z-index: 1001;
}

.nav>li>a {
    color: #fff;
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: #222;
}

.navbar-toggle {
    background-color: #fff;
}

.navbar-toggle .icon-bar {
    border-radius: 0;
    width: 28px;
    height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-toggle.collapsed:hover .icon-bar,
.navbar-toggle .icon-bar {
    background-color: #222;
}

.navbar-toggle.collapsed .icon-bar {
    background-color: #552028;
}

.dropdown-menu {
    background-color: #552028;
    border: none;
    font-size: 16px;
}

.dropdown-menu>li>a {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #fff;
    background-color: #222;
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #222;
}

.logo-wrapper {
    padding: 30px;
}

/**********************************************/
/*******        Animal Classes          *******/
/**********************************************/

.animals>div {
    margin-bottom: 40px;
}

.animals>div img,
#case img {
    margin-bottom: 8px;
}

.PedAnmName {
    font-family: "Faustina", serif;
    font-size: 36px;
    font-weight: 500;
}

.PedCalvedRow,
.PedTable,
.divEpdTbl {
    font-size: 1rem;
}

.divEpdTbl caption {
    background-color: #552028;
    color: #fff;
}

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

label {
    font-weight: 400;
}

.btn-form:disabled {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: all;
}

.btn-form[disabled],
.btn-form[disabled]:hover,
.btn-form[disabled]:focus,
.btn-form[disabled]:active {
    background-color: #000;
    outline: none;
}

.btn-form {
    -webkit-transition: outline .25s ease-in-out;
    -o-transition: outline .25s ease-in-out;
    transition: outline .25s ease-in-out;
}

.btn-form:focus,
.btn-form:active:focus {
    outline-offset: 2px;
    outline: 2px solid #f3a36a;
}

.form-control:focus {
    border-color: #86b7fe;
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.breederFormError,
.form-control.breederFormError {
    border-color: #d64947;
}

.breederFormError:focus,
.form-control.breederFormError:focus {
    -webkit-box-shadow: 0 0 0 2px #d64947;
    box-shadow: 0 0 0 2px #d64947;
}

.breederFormErrorMesssage {
    display: none;
    position: relative;
    color: #d64947;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

.breederFormError~.breederFormErrorMesssage {
    display: block;
    margin-left: 2px;
    top: 1px;
}

.breederFormOptional {
    font-size: 85%;
    color: #666;
}

.sm-pad-3-col>.col-xs-6 {
    padding-right: 5px;
}

.sm-pad-3-col>.col-xs-3 {
    padding-left: 5px;
    padding-right: 5px;
}

.sm-pad-3-col>.col-xs-3:last-child {
    padding-right: 15px;
}

.sm-pad-2-col>.col-xs-6:first-child {
    padding-right: 5px;
}

.sm-pad-2-col>.col-xs-6:last-child {
    padding-left: 5px;
}

.breederEmailHeading,
.breederEmailHeadingC {
    display: none;
}

.grow-wrap {
    display: grid;
}

.grow-wrap::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}

.grow-wrap>textarea {
    resize: none;
    overflow: hidden;
}

/* Match the other input field styles */
.grow-wrap>textarea,
.grow-wrap::after {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    min-height: 100px;
    padding: 6px 12px;
    grid-area: 1 / 1 / 2 / 2;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.g-recaptcha {
    margin-bottom: 10px;
}

/* Checkbox and Radio Styles. Remove if form doesn't have either element*/
.checkbox,
.form-radio {
    --selection-color: #552028;
}

.checkbox input,
.form-radio input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

/* Begin Checkbox */
.checkbox {
    position: relative;
    margin-bottom: 15px;
    margin-top: 0;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    text-align: left;
    display: inline-block;
    padding-left: 30px;
}

.checkbox input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

.checkbox input[type=checkbox] {
    margin-left: 0;
}

.checkbox .checkbox-helper {
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    z-index: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.checkbox input:focus+.checkbox-helper,
.checkbox input:checked:focus+.checkbox-helper {
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.checkbox input:checked+.checkbox-helper {
    background: var(--selection-color);
    border-color: var(--selection-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.checkbox .checkbox-helper::before,
.checkbox .checkbox-helper::after {
    content: '';
    position: absolute;
    height: 0;
    width: 3px;
    background-color: #fff;
    display: block;
    opacity: 0;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: opacity 0.2s ease, height 0s linear 0.2s;
    -o-transition: opacity 0.2s ease, height 0s linear 0.2s;
    transition: opacity 0.2s ease, height 0s linear 0.2s;
}

.checkbox .checkbox-helper::before {
    top: 14px;
    left: 5px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checkbox .checkbox-helper::after {
    top: 9px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox:hover .checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper::after,
.checkbox input:checked~.checkbox-helper::before {
    opacity: 1;
    -webkit-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    transition: height 0.2s ease;
}

.checkbox input:checked~.checkbox-helper::after {
    height: 7px;
}

.checkbox input:checked~.checkbox-helper::before {
    height: 15px;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* End Checkbox */

/**********************************************/
/*******        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;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.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) {
    .navbar > .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .navbar-collapse.collapse {
        width: 100%;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .nav {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .nav > li {
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 16.666667%;
                flex: 1 0 16.666667%;
    }

    .nav > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .content-layout-home .content-layout-home-image {
        position: relative;
        margin-top: -50px;
    }

    .content-layout-home-text-inner {
        padding: 40px 20px;
    }

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

    .animals::before,
    .animals::after {
        content: none;
    }

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

@media screen and (min-width: 992px) {
    .content-layout-home {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .content-layout-home .content-layout-home-image {
        left: 0;
        margin-top: 50px;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .content-layout-home .content-layout-home-text {
        max-width: 520px;
        width: 100%;
        right: 3%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .flex-md {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
    .content-layout-home-text-inner {
        padding: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .content-layout-home .content-layout-home-text {
        max-width: 680px;
    }
}

@media screen and (min-width: 1200px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 2000px) {
    body {
        background: top center / 100% auto repeat-y url('../images/template/bg.jpg');
    }
}

@media screen and (max-width: 1199px) {
    .nav>li>a {
        font-size: 1rem;
    }
}

@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) {
    .navbar-collapse {
        clear: both;
    }
    
    .cta img {
        max-width: 80%;
        margin: auto;
    }

    .navbar .navbar-nav .open .dropdown-menu>li>a {
        color: #fff;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #fff;
        background-color: #222;
    }

    .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;
    }
}