:root{
    --PageHeight: 700px
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}


.PageSeparator{
    width: 100%;
    height: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.PageOne {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/AboutPage2Back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin-top: 70px;

    height: 70vh;
}

.PageOne h1 {
    color: white;
    font-size: 3rem;
    font-family: 'Neutral Face';
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 2px solid rgb(255, 255, 255); 
    transition: transform 0.5s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.637);
    font-style: oblique;
    font-weight: lighter;
}

.PageOne h1:hover{
    transform: scale(1.05);
}

.PageTwo {
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageThree {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/eplbackground.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageFour {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/TruNorth.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageFive {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/Crystal.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageSix {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/Dayside.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageSeven {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/CustanFoods1.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.PageEight {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url(../ImagesFiller/PureEdibles.jpg); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    height: var(--PageHeight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.Container{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(7, 100px);
    grid-template-columns: repeat(20, auto);
    grid-template-columns: auto repeat(3, 125px) repeat(17, auto);
}

.item{
    /* border:2px solid rgb(33, 25, 25); */
    background-color: rgb(175, 48, 48);
    /* Text Align Inside This Block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*---------------------------------------------------------------------------------------------------*/
.block-01{
    /* Location for Block One */
    grid-area: 2 / 2 / 7 / 13;
    /* Background Styling */
    background-color: transparent;
    border-radius: 10px;
}

.block-01 img{
    width: 90%;
    height: 110%;
    object-fit: fill;
    border: 20px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
/*---------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------------------*/
.block-02{
    /* Location for Block Two */
    grid-area: 2 / 15/ 7 / 20;
    /* Background Styling */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    /* -webkit-backdrop-filter: blur(10px); */
    backdrop-filter: blur(10px);
    margin-right: 20px;
}

.block-02 h1{
    color: green;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.124);
    font-size: 35px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

.block-02 p{
    font-size: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    max-width: 800px;
}
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
.block-1{
    /* Location for Block One */
    grid-area: 3 / 2 / 6 / 5;
    /* Background Styling */
    background-color: white;
    border-radius: 10px;
}

.block-1:hover{
    transform: scale(1.05);
}
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
.block-2 {
    /* Location for Block Two */
    grid-area: 3 / 6 / 6 / 20;
    /* Background Styling */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    /* -webkit-backdrop-filter: blur(10px); */
    backdrop-filter: blur(10px);
}

.block-2 h1{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    max-width: 800px;
}

.block-2 p{
    font-size: 25px;
    max-width: 800px;
}
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/* Styling for the Logos */
.logo1, .logo2, .logo4{
    width: 70%;
    height: auto;
    object-fit: contain;
}

.logo5{
    width: 60%;
    height: auto;
    object-fit: contain;
}
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/


/* Mobile Styling */
.MobileContainer01{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('../ImagesFiller/AboutPage3.png');
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.Mobileitem01{
    /* border:2px solid rgb(33, 25, 25); */
    background-color: rgb(175, 48, 48);
    /* Text Align Inside This Block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Mobileblock-01{
    /* size of the block */
    width: 90%;
    height: 50%;
    /* Background Styling */
    background-color: #f1f1f1;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}


.Mobileblock-01 h1{
    color: green;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.252);
    font-size: 35px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

.Mobileblock-01 p{
    font-size: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    max-width: 800px;
}


.MobileContainer{
    width: 100%;
    height: 100%;
    display:none;
    grid-template-rows: repeat(14, 50px);
    grid-template-columns: repeat(10,auto) repeat(7, 50px) repeat(10, auto);
}


.Mobileitem{
    /* border:2px solid rgb(33, 25, 25); */
    background-color: rgb(175, 48, 48);
    
    /* Text Align Inside This Block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Mobileblock-1{
    /* location of the block */
    grid-area: 2 / 11 / 7 / 18;
    /* Background Styling */
    background-color: #ffffff;
    border-radius: 10px;
    /* -webkit-backdrop-filter: blur(10px); */
    backdrop-filter: blur(10px);
}

.Mobileblock-2{
    /* location of the block */
    grid-area: 8 / 4 / 13 /25;
    /* Background Styling */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    /* -webkit-backdrop-filter: blur(10px); */
    backdrop-filter: blur(10px);
}

.Mobileblock-2 h1{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.Mobileblock-2 p{
    font-size: 25px;
    max-width: 600px;
}

/* media queries */
@media(max-width: 2560px){
    /* remove text limit */
    .block-2 h1{
        max-width: 2000px;
    }
    
    .block-2 p{
        max-width: 2000px;
    }
}

@media(max-width:1920px){
    .block-2 h1{
        max-width: 900px;
    }
    
    .block-2 p{
        max-width: 900px;
    }
}

@media(max-width:1440px){
    .block-2 h1{
        font-size: 30px;
        max-width: 700px;
    }
    
    .block-2 p{
        font-size: 20px;
        max-width: 700px;
    }
}

@media(max-width: 1024px){
    .Container{
        display: none;
    }

    .MobileContainer01{
        display: flex;
    }

    .MobileContainer{
        display: grid;
    }
}

@media(max-width: 768px){

    .Mobileblock-01 h1{
        font-size: 30px;
    }

    .Mobileblock-01 p{
        font-size: 20px;
        max-width: 600px;
    }
    .Mobileblock-2 h1{
        font-size: 30px;
        text-decoration-line: none;
    }
    
    .Mobileblock-2 p{
        font-size: 20px;
    }
    
}

@media(max-width: 430px){
    .Mobileblock-01 h1{
        font-size: 25px;
    }

    .Mobileblock-01 p{
        font-size: 15px;
        max-width: 300px;
    }

    .Mobileblock-2{
        grid-area: 8 / 11 / 13 /18;
    }

    .Mobileblock-2 h1{
        font-size: 20px;
    }
    
    .Mobileblock-2 p{
        font-size: 15px;
        max-width: 300px;
    }
}

@media(max-width: 320px){


    .Mobileblock-01 h1{
        font-size: 25px;
    }

    .Mobileblock-01 p{
        font-size: 15px;
        max-width: 250px;
    }

    .MobileContainer{
        grid-template-rows: repeat(14, 50px);
        grid-template-columns: repeat(7, 7fr);
    }

    .Mobileblock-1{
        grid-area: 2 / 2 / 7 / 7;
    }

    .Mobileblock-2{
        grid-area: 8 / 2 / 13 / 7; 
    }

    .Mobileblock-2 h1{
        font-size: 20px;
    }
    
    .Mobileblock-2 p{
        font-size: 15px;
        max-width: 300px;
    }
}