body{
    position: relative;
    overflow-x: hidden;
}

.Header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../CSS/Backgrounds/Bathrooms_Header.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.HeaderTextContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.HeaderTextContainer h2{
    color: #ffffff;
}

.HeaderTextContainer h4{
    color: #ffffff;
    text-transform: none;
    margin-bottom: 10px;
}

.HeaderBTNTextContainer{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 60px;
}

.ContactBTNFull{
    background-color: #33F68A;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.ContactBTNOutline{
    background-color: none;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    border: 3px solid #33F68A;
    transition: 0.3s ease-in-out;
}

.ContactBTNFull:hover{
    transform: translateY(-20px);
}

.ContactBTNOutline:hover{
    transform: translateY(-20px);
}

h4{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #33F68A;
}

h2{
    font-size: 50px;
    font-weight: 700;
    color: #000000;
}

p{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    color: #000000;
}

span{
    font-size: 55px;
    font-weight: 800;
    color: #33F68A;
}

.Introduction{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 40px;
    background-color: #E6E6E6;
    position: relative;
}

.Introduction img{
    width: 100px;
}


.Introduction p{
    width: 70%;
    margin: 10px 0px 40px 0px;
}

.Introduction a{
    margin-bottom: 75px;
}

.custom-shape-divider-bottom-1609827086 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1609827086 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1609827086 .shape-fill {
    fill: #FFFFFF;
}

.BathroomShowcase{
    margin-top: 10px;
    padding: 20px;
}

.BathroomShowcaseImageContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.BathroomShowcaseImageContainer img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.BathroomShowcaseSection1{
    width: 100%;
    display: grid;
    grid-template-rows: 400px 400px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
        "Image1 TextContainer1 TextContainer1"
        "Image1 Image2 Image3";
}

.BathroomShowcaseSection2{
    width: 100%;
    display: grid;
    grid-template-rows: 400px 400px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
        "TextContainer2 TextContainer2 Image4"
        "Image5 Image6 Image4";
}

.BathroomShowcaseSection1 .BathroomShowcaseImageContainer:nth-child(1){
    grid-area: Image1;
}

.BathroomShowcaseSection1 .BathroomShowcaseImageContainer:nth-child(2){
    grid-area: Image2;
}

.BathroomShowcaseSection1 .BathroomShowcaseImageContainer:nth-child(3){
    grid-area: Image3;
}

.BathroomShowcaseSection2 .BathroomShowcaseImageContainer:nth-child(1){
    grid-area: Image4;
}

.BathroomShowcaseSection2 .BathroomShowcaseImageContainer:nth-child(2){
    grid-area: Image5;
}

.BathroomShowcaseSection2 .BathroomShowcaseImageContainer:nth-child(3){
    grid-area: Image6;
}

.BathroomShowcaseSection1 .BathroomShowcaseTextContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: TextContainer1;
}

.BathroomShowcaseSection2 .BathroomShowcaseTextContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: TextContainer2;
}

.InnerTextContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    width: 80%;
}

.BathroomShowcaseTextContainer h2{
    color: #000000;
    text-align: left;
    margin-bottom: 20px;
}

.BathroomShowcaseTextPointContainer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.BathroomShowcaseTextPointContainer span{
    font-size: 15px;
    color: #E74A3B;
}

.BathroomShowcaseTextPointContainer h4{
    text-transform: none;
    color: #000000;
    font-size: 15px;
    margin: 5px;
}

.Trust{
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url(../CSS/Backgrounds/Trust_Berkshire_Cover.jpg);
    height: 90vh;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px 0px 30px 30px;
}

.TrustTextContainer{
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    background: #0F2027;
    background: -webkit-linear-gradient(to left, #2C5364, #203A43, #0F2027);
    background: linear-gradient(to left, #2C5364, #203A43, #0F2027); 

}

.TrustTextContainer h2{
    color: #ffffff;
    text-align: right;
    font-size: 30px;
    margin-bottom: 10px;
}

.TrustTextContainer span{
    font-size: 35px;
}

.TrustTextContainer p{
    color: #ffffff;
    margin-bottom: 20px;
}

@media screen and (max-width: 1300px){
    .TrustTextContainer{
        width: 80%;
    }
}

@media screen and (max-width: 1279px){
    .BathroomShowcaseSection1{
        grid-template-rows: 400px 400px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 
        "TextContainer1 TextContainer1 TextContainer1"
        "Image2 Image1 Image3";
    }

    .BathroomShowcaseSection2{
        grid-template-rows: 400px 400px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 
        "TextContainer2 TextContainer2 TextContainer2"
        "Image5 Image4 Image6";
    }

    .BathroomShowcaseImageContainer{
        padding: 5px;
    }
}

@media screen and (max-width: 990px){
    .TrustTextContainer{
        width: 100%;
        align-items: center;
        text-align: center;
        background: rgba(0,0,0,0.55);
    }

    .TrustTextContainer h2{
        text-align: center;
    }

    .Trust{
        padding-left: 0px;
    }
}

@media screen and (max-width: 927px){
    .Introduction p{
        width: 100%;
    }
}

@media screen and (max-width: 743px){
    .BathroomShowcaseSection1{
        grid-template-rows: 400px 400px 400px 400px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "TextContainer1 TextContainer1"
        "Image1 Image1"
        "Image2 Image2"
        "Image3 Image3";
    }

    .BathroomShowcaseSection2{
        grid-template-rows: 400px 400px 400px 400px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "TextContainer2 TextContainer2"
        "Image4 Image4"
        "Image5 Image5"
        "Image6 Image6";
    }

    .InnerTextContainer{
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .InnerTextContainer h2{
        text-align: center;
    }

    br{
        content:' ';
    }

    br:after{
        content:' ';
    }

    .BathroomShowcase{
        margin-top: -50px;
    }

}

@media screen and (max-width: 650px){
    .TrustTextContainer{
        height: 100%;
    }

    .Trust{
        padding: 0px;
    }
}

