.row1BGImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row1BGImage {
    height: 100%;
    width: 100%;
}


.row1 {
    height: 60vh;
    position: relative;
}

.row1Blurb {
    position: absolute;
    top: 17%;
    left: 60%;
    background-color: rgba(0,0,0,0.8);
    width: 20%;
    height: fit-content;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2em;
}

.row1Blurb h3 {
    color: white;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 2.6em;
    margin: 0;
    padding: 0 10%;
    padding-top: 5%;
}

.row1Blurb p {
    font-family: 'Montserrat';
    color: white;
    font-weight: 300;
    padding: 0 10%;
    font-size: 1.1em;
    margin: 0;
    padding-bottom: 2%;
}

.row1Blurb a {
    color: white;
    font-family: 'Montserrat';
    font-size: 0.9em;
    border: 1px solid #f39437;
    width: fit-content;
    margin: 0 10%;
    padding: 5% 10%;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.row1Blurb a:hover {
    border-color: transparent;
    background-color: rgba(0,0,0,1);
}

.row2 {
    height: 25vh;
    background-color: #42474c;
    display: flex;
    flex-direction: row;
    padding: 2em 20%;
    justify-content: space-between;
    box-sizing: content-box;
}

.row2>div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.r2Text span {
    font-family: 'Montserrat';
    color: #cdba6d;
    font-size: 0.9em;
    letter-spacing: 0.2em;
}

.r2Text p {
    font-family: 'Montserrat';
    color: white;
    font-weight: 500;
    font-size: 1.8em;
    margin-bottom: 0;
    margin-top: 0.5em;
}

.r2Text hr {
    border: none;
    width: 19%;
    height: 1px;
    background-color: #f39437;
    margin: 0;
    margin-top: 0.6em;
}

.r2Description p.firstLetter:first-letter {
    initial-letter: 2.3;
    padding-right: 9px;
}

.r2Description p {
    color: white;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 120%;
    font-size: 1.1em;
    margin-bottom: 0;
}

@media only screen and (max-width:1600px){
    html .row1Blurb {
        width: 29%;
    }
    html .row2 {
        padding: 2em 9%;
    }
    html .r2Description p {
        font-size: 1.1em;
    }
   

}

@media only screen and (max-width:1200px){
    html body .row1Blurb {
        width: 43%;
        left: 50%;
    }
    html body .row2 {
        height: fit-content;
        flex-direction: column;
        gap: 1em;
    }
    html body .r2Description p.firstLetter:first-letter {
        initial-letter: 2.2;
    }
    html .row1Blurb h3 {
        font-size: 2.1em;
    }
}

@media only screen and (max-width:550px){
    html body .row1Blurb h3 {
        font-size: 1.9em;
        
    }
    html body .row1Blurb p {
        font-size: 0.9em;
    }
    html body .row1Blurb {
        width: 73%;
        left: 20%;
        padding-bottom: 1.2em;
    }
    html body .r2Description p.firstLetter:first-letter {
        padding-right: 4px;
    }

}