/**********************************************/
/*******        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;
    color: #385125;
    font-family: "copperplate", serif;
    font-weight: 600;
}

h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 36px;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

.orange {
    color: #D24F27;
}

a {
    color: #D24F27;
}

a:hover, a:focus {
    color: #b54421;
}

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

footer a:hover, footer a:focus {
    color: #fff;
}

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

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

.banner {
    background-image: url("../images/pages/home/DJI_0665.jpg");
    background-size: cover;
    height: 85vh;
    background-position: 33% 50%;
    background-attachment: fixed;
}

section.main {
    padding: 50px 15px;
}

.epds {
    padding-top: 100px;
}

.parallax {
    background-image: url("../images/pages/home/DJI_0822.jpg");
    background-size: cover;
    height: 600px;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    outline: 4px solid #ba9b7f;
    outline-offset: -15px;
}

.parallax-text {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    -webkit-transform: translate(-50%, -50%); 
        -ms-transform: translate(-50%, -50%); 
            transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.parallax p, .parallax h1, .parallax h2 {
    color: #fff;
    text-shadow: 2px 1px 1px rgba(0, 0, 0, .8);
}

.parallax-text p {
    font-size: 1.5rem;
}

.btn-primary {
    background-color: #D24F27;
    border: none;
    font-family: "copperplate", serif;
    border-radius: 0;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #ba9b7f;
}

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

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

.content-layout-home-text-inner {
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0 3px 10px rgb(20 12 12 / 45%);
    box-shadow: 0 3px 10px rgb(20 12 12 / 45%);
    margin-bottom: 5px;
}

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

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

footer img {
    width: 120px;
}

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

.navbar {
    background-color: #fff;
    border: none;
    border-radius: 0;
    height: 100px;
    font-family: "copperplate", serif;
    margin-bottom: 0;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
            box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}

.navbar-right>li>a {
    color: #D24F27;
}

.navbar-right>li>a:hover,
.navbar-right>li>a:focus,
.navbar-right>li>a:active {
    background-color: #385125;
    color: #fff;
}

.navbar-brand {
    padding: 10px 15px;
}

.navbar-brand img {
    max-height: 80px;
}

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

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

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

.animals a img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all .45s ease;
    -o-transition: all .45s ease;
    transition: all .45s ease;
}

.animals a:hover img {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}

.PedAnmName {
    display: none;
}

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

.divEpdTbl caption {
    background-color: #385024;
    border-color: #ccc;
    color: #fff;
}

.divEpdTbl tbody {
    background-color: #ececec;
}

.divEpdTbl thead {
    background-color: #dfdfdf;
}

.divEpdTbl .table>caption+thead>tr:first-child>th,
.divEpdTbl .table>tbody>tr>td,
.divEpdTbl .table>thead>tr>th,
.divEpdTbl td,
.divEpdTbl th {
    border-color: #c9c9c9;
}

.animal-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/**********************************************/
/********        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: #D24F27;
    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: #888;
}

.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: 15px;
}

/**********************************************/
/*******        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) {
    /* .navbar-right {
        margin-top: 30px;
    } */

    .navbar .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

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

    .navbar-nav {
        margin-left: auto;
    }

    .navbar-brand {
        height: auto;
    }

    .content-layout-home .content-layout-home-image {
        position: relative;
    }

    .content-layout-home .content-layout-home-text {
        width: 90%;
    }

    .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) {
    /* .navbar-right {
        margin-top: 25px;
    } */

    .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: 3%;
        margin-top: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .content-layout-home .content-layout-home-text {
        max-width: 400px;
        right: 3%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 5px;
    }

    .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: 15px;
    }
}

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


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

@media screen and (max-width: 991px) {
    .nav>li>a {
        padding: 10px;
    }
    .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;
        -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
                box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
    }
    
    .container>.navbar-collapse {
        margin-top: 100px;
        border-top: 1px solid #385125;
    }

    .navbar-nav {
        background-color: #fff;
        margin: 0 -15px;
    }

    .navbar-toggle {
        margin-top: 28px;
    }

    .navbar-toggle .icon-bar {
        background-color: #D24F27;
        width: 35px;
        height: 3px;
    }

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

    .nav > li > a {
        padding: 10px 15px;
    }

    .banner {
        background-attachment: scroll;
    }

    .parallax {
        height: 650px;
        background-attachment: scroll;
    }

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