@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.page-container{
    color: black;
    min-height: 100vh;
}

a{
    text-decoration: unset;
}

.grid-test{
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
}

#content-block-1{
    grid-column: 2 / span 2;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10rem;
}

.landing-text{
    animation: fadeIn 3s;
}

.action-buttons{
    animation: fadeIn 3s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

.title-text{
    display: flex;
}

.landing-text{
    margin-top: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#italic{
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
    padding-left: 0.5rem;
}

.landing-text h1{
    text-decoration: none;
    color: #c69c6d;
    font-family: "Libre Baskerville";
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: -2px;
    align-self: center;
    margin: 0;
    margin-top: 3rem;
}

.landing-text h2{
    text-decoration: none;
    color: #021F48;
    font-family: "Montserrat", sans-serif;
    font-weight: 325;
    font-size: 3rem;
    letter-spacing: -2px;
    align-self: center;
    margin: 0;
}

.landing-text p{
    text-decoration: none;
    color: #021F48;
    font-family: "Montserrat", sans-serif; 
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: -0.5px;
    align-self: center;
    text-align: center;
    line-height: 1.7rem;
    margin: 0;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

button{
    border: unset;
    width: 15rem;
    height: 3rem;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 550;
    letter-spacing: 4px;
    margin: 0rem 1rem;
    color: #021F48;
    background-color: #D9D9D9;
}

.cb2-grid{
    background-image: url(../images/cb2-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: fadeIn 3s;
}

#content-block-2{
    display: flex;
    justify-content: center;
    animation: fadeIn 3s;
    grid-column: 2 / span 2;
}

#cb2-grid{
    display: grid;
    width: fit-content;
    grid-template-areas:'left right';
    color: #021F48;
    justify-self: center;
    align-self: center;
}

#cb2-left{
    grid-area: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: left;
    margin: 5rem 0;
    margin-left: 2rem;
}

#cb2-right{
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: right;
    margin: 5rem 0;
    margin-right: 2rem;
}

#cb2-right h2{
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 1.8rem;
    margin: 0;
}

#founder-img{
    min-width: 20rem;
    height: auto;
}

#cb2-left h4{
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 500;
}

#cb2-left p{
    margin: 0;
    font-family: "Libre Baskerville";
    font-size: smaller;
}

.mixed-text{
    display: flex;
}

#cb2-right .mixed-text h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "Libre Baskerville";
}

#cb2-right #alt-italic {
    font-family: "Libre Baskerville";
    padding-right: 0.3rem;
    font-weight: 570;
    font-style: italic;
}

#subtext {
    padding-top: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.7rem;
    font-weight: 350;
    width: 20rem;
}

#horses-button{
    background-color: #c69c6d;
    margin: 0;
    margin-top: 2rem;

}

#horses-button:hover{
    background-color: #021F48;
    color: #D9D9D9;
    transition: 0.25s;
}

.content-block-3{
    margin: 8rem 0rem;
    grid-column:2 /span 2 ;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: flex-start;
    justify-content: center;
}

.person{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 18rem;
    margin: 0rem 1rem;
}

.person h4{
    align-self: flex-start;
    margin-bottom: 0.5rem;
    color: #c69c6d;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 1rem;
}

.person p{
    align-self: flex-start;
    letter-spacing: -1px;
    line-height: 1.8rem;
    color: #021F48;
    text-wrap: pretty;
}

.profile-img{
    width: 18rem;
    align-items: center;
    justify-content: center;
    height: 9rem;
    overflow: hidden;
}

.fam-img{
    max-width: 100%;
    height: 13rem;
    margin-top: -1rem;
}

.phil{
    height: 9rem;
    width: 18rem;
    margin-top: 0;
}

.jac{
    height: 12rem;
    max-width: 25rem;
    margin-top: 0;
    margin-left: -2rem;
}

.kim{
    height: 14rem;
    width: 18rem;
}

.content-block-4{
    grid-column: 2 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
    margin-top: 2rem;
}

.grooms{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
}

.groom-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #021F48;
    margin-top: 6rem;
}

.groom-disp{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
}

.sub4{
    background-image: linear-gradient(to bottom, #E6E6E6, #FFFFFF);
    background-size: cover;
}

.quote{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #021F48;
    font-family: "Libre Baskerville";
    font-size: 1.5rem;
    letter-spacing: -2px;
    margin-top: 8rem;
}

.quote h2{
    margin: 0;
    font-weight: 450;
}

.quote h3{
    margin: 0;
    color: #c69c6d;
    font-family: "Montserrat";
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -2px;
}

.text-mix{
    display: flex;
}

#secondary{
    margin-left: 0.5rem;
    font-style: italic;
}

#italic{
    font-style: italic;
}

.groom-title div{
    display: flex;
}

.groom-title h2{
    font-family: "Libre Baskerville";
    font-size: 2.5rem;
    font-weight: 450;
    color: #c69c6d;
    margin: 0;
}

#bask-text{
    font-family: "Montserrat";
    color: #021F48;
    margin-left: 0.5rem;
    font-weight: 350;
}

.groom-title p{
    width: 55%;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.g1{
    height: 28rem;
    max-width: auto;
    margin-top: -3rem;
}

.g2{
    height: 28rem;
    max-width: auto;
    margin-top: -5rem;
}

.g3{
    height: 20rem;
    max-width: auto;
    margin-top: -3rem;
}

.sub5{
    background-image: url(../images/geo-element-large.png);
    background-color: #E6E6E6;
    background-size: 80rem;
    background-repeat: no-repeat;
    background-position: right 0rem;
}

.content-block-5{
    grid-column: 2 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stallion-show{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 3rem;
    margin-bottom: 10rem;
    align-items: center;
    justify-content: center;
}

.text-mix-stalls{
    display: flex;
    font-family: "Libre Baskerville";
    color: #c69c6d;
    font-size: 1.8rem;
}

.stalls{
    font-style: italic;
}

#basic{
    font-family: "Montserrat";
    font-weight: 350;
    font-size: 2.5rem;
}

.quote p{
    font-family: "Montserrat";
    width: 70%;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1.8rem;
    letter-spacing: unset;
}

.horse1{
    grid-column: 1;
}

.horse2{
    grid-column: 2;
}

.horse3{
    grid-column: 3;
}

.box{
    width: 22rem;
    height: 11rem;
    margin: 0rem 1rem;
    display: flex;
    background-color: white;
    color: #021F48;
}

.descriptor{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-end;
    justify-self: right;
    margin-right: 1rem;
    width: 35%;
}

.descriptor p{
    text-align: right;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
    font-family: "Montserrat";
}

.descriptor h3{
    margin: 0;
    font-size: 1.5rem;
    color: #c69c6d;
    font-weight: 400;
    letter-spacing: -1.5px;
    font-family: "Libre Baskerville";
    margin-bottom: 0.5rem;
}

.descriptor p:last-of-type{
    margin-bottom: 1rem;
}

.img-crop{
    width: 65%;
    height: 100%;
    overflow: hidden;
}

#hi3{
    height: auto;
    min-width: 25rem;
    margin-left: -10rem;
    margin-top: 1rem;
}

#hi1{
    height: auto;
    min-width: 30rem;
    margin-left: -14rem;
    margin-top: -0.5rem;
}

#hi2{
    height: auto;
    min-width: 12rem;
    margin-left: 0rem;
    margin-top: 1rem;
}

.to-stall{
    transition: transform .2s;
}

.to-stall:hover{
    transform: scale(1.05);
}

a{
    all: unset;
}

#range{
    letter-spacing: -0.5px;
}