:root {
    --paddingspacingfornavbar: 20px; 
    --DropDownMenuOneRight: calc(135px + (var(--paddingspacingfornavbar) - 20px) * 3 ); 
  }
  
.prevent-select {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

section{
    height: 100vh;
}

/*PAGES*/
.PageSeparator{
    width: 100%;
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.PageOne {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('../ImagesFiller/MainPage3.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90vh;
    position: relative;
}

.PageOne h1 {
    color: white;
    font-size: 4vw;
    margin-bottom: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
}

.PageOne h1:hover{
    transform: scale(1.1);
}

.separator {
    width: 30vw;
    border-bottom: 2px solid white;
    margin: 15px 0px 15px 0px;
}

.circle-container {
    display: flex;
}

.circle {
    box-shadow: 0 0 5px 5px rgba(196, 196, 196, 0.5);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: white;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.5s ease;
}

.circle:hover {
    transition: 0.5s;
    transform: scale(1.2);
}

.logoEPL {
    width: 80%;
    height: auto;
}

.logoTRU {
    width: 100%;
    height: auto;
}

.logoDAY {
    width: 70%;
    height: auto;
}

.logoCuston {
    width: 100%;
    height: auto;
}

.logoPureEdibles{
    width: 100%;
    height: auto;
}

.center-logo img{
    width: 70%;
    height: auto;
}

.logoCrystal{
    width:70%;
    height: auto;
}
/* Page One end */


/* Page two start */
.PageTwo{
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../ImagesFiller/MainPage3.jpg');
    background-size: 100%;
    background-color: rgb(0, 255, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.Block{
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 80%;
    height: 70%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Block h1{
    color: white;
    font-size: 2rem;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
}

.Block p{
    color: white;
    font-size: 1.2rem;
    max-width: 80%;
    margin-top: 20px;
    font-family: "Lato", sans-serif;
    text-align: center;
}


/* page three start */
.PageThree{
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../ImagesFiller/MainPage4.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 60vh;
}
/* page three end */


/* page four start */
.PageFour{
    background-color: rgb(255, 255, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* page four end */


/* page five start */
.PageFive{
    background-color: rgb(255, 0, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* page five end */


/* page six start */
.PageSix{
    position: relative;
    background-color: rgb(0, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* page six end */
 
@media(max-width:1024px){
  .PageOne{
    background-size: cover;
  }

  .circle{
    width: 120px;
    height: 120px;
  }

  .PageOne h1{
    font-size: 7vw;
  }
}
  
@media(max-width: 768px){
  .circle-container{
    flex-wrap: wrap;
    justify-content: center; 
}

  .PageOne{
    background-size: cover;
  }
}
  
