
html,
body {
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    background-color: rgb(255, 255, 255);
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;

}

body{
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    display: none;
}



/* ---------------------------------------------NAV-Bar--------------------------------------------------*/

.header {
    z-index: 100;
    padding-top: 1vh;
    padding-bottom: 1vh;
    background-color: rgba(0, 19, 27, 0.26);
    width: 100%;
    position: fixed;
}

.inner_header {
    width: 100vw;
    justify-content: left;
    margin-left: 15vw;
    align-items: center;
    display: flex;
}

.logo_container a {
    color: white;
    font-size: 45px;
    font-weight: 600;
    text-decoration: none;
}

.logo_container a span {
    font-size: 10px;
    font-weight: 200;
}




/* -------------------------------------------Video-Block-------------------------------------------------*/
.video-header{
    height: 80%;
  
    background-image: url(../images/Poster.jpg);
        /* Center and scale the image nicely */
    background-position-y:center;
    background-position-x:center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;


}



.video-header .text-header {
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.text-header p {
    color: white;
    text-align: center;
    vertical-align: top;
    font-size: 1.2vw;
    display: table-row;
    font-weight: 100;
    font-family: 'Comforter Brush';
    letter-spacing: 5px;
}


.logo_png{
    width: 25vw;
}
.waterprint {
    z-index: 3;
    width: 100vw;
    height: 100vh;
   
    position: absolute;
    top: -10vh;
    left: -5vw;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.waterprint a {
    text-decoration: none;
    color: white;
    font-size: 10px;
}

.foot {
    z-index: 2;
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.foot a {
    margin-bottom: 20px;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
}

.foot span {
    margin-bottom: 30px;
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
}
.contactbar{
  width: 100%;
  max-width: 1280px;
  margin: auto; 
  display: flex; 
  flex-direction: row; 
  justify-content:space-evenly; 
  align-items: center;
}
.logotext{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
    
}

.logotext a {
  font-size: 20px;
  color: #000000;
  text-decoration: none;
  font-weight: 200;
  margin: 0;
  padding: 0;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}



/* -------------------------------------------Main Div-------------------------------------------------*/
.photolist{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
   


}
.photolist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 100vh;
 
  list-style-type: none;
  list-style: none;
  padding: 0;

}

.photolist li {
  height: 40vh;
  flex-grow: 1;
  list-style-type: none;
  list-style: none;
  padding: 3px;

}

.photolist li:last-child {
  flex-grow: 10;
}

.photolist img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.priceimg{
  width: 80%;
}
@media (max-aspect-ratio: 1/1) {
  .photolist li {
    height: 30vh;
  }
}
@media (max-height: 480px) {
  .photolist li {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .photolist ul {
    flex-direction: row;
  }

  .photolist li {
    height: auto;
    width: 100%;
  }

  .photolist img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
@media (max-aspect-ratio: 1/1) {
  .photolist li {
    height: 30vh;
  }
}

@media (max-height: 480px) {
  .photolist li {
    height: 80vh;
  }
}

@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .photolist ul {
    flex-direction: row;
  }

  .photolist li {
    height: auto;
    width: 100%;
  }

  .photolist img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}




main p {
    max-width: 80%;
    margin: auto;
    text-align: justify;
    color: aliceblue;
}

.main {
    width: 100%;
    text-align: center;


}


.whiteBar {
    margin-top: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.582);
    border-radius: 2px;
    padding: 20px;

}

.bigTitle {
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 70px;
    color: #000000;
}

.subTitle {

    font-size: 21px;
    color: #000000;
    text-align: center;
}

.paragraph {
    font-weight: 500;
    font-size: 20px;
    color: black;
    text-align: justify;
    width: 80vw;
    max-width: 1280px;
    margin: auto;
    line-height: 40px;
}


.hgroup {
    display: table;

}

h1 {
    color: white;
    text-align: center;
    vertical-align: top;
    font-size: 1.2vw;
    display: table-row;
    font-weight: 100;
}

h2 {
    color: white;
    font-size: 5.8vw;
    text-align: center;
    vertical-align: middle;
    display: table-row;
    font-weight:600;
}


/* ---------------------------------------Media-small screen--------------------------------------------*/

@media (max-width: 1280px) {
    .header {
        padding-top: 0%;
    }
    .logo_container {
        display: none;
    }
    h2 {
        font-size: 7vw;
    }
    h1 {
        font-size: 1.5vw;
    }

}


/* ---------------------------------------Media-phone screen--------------------------------------------*/

@media (max-width: 1080px) {
    .header {
        background-color: transparent;
    }
    .inner_header {
        justify-content: left;
    }


    .waterprint {
        display: none;
    }

    .bigTitle {
        font-size: min(6.2vw, 80px);
    }
    .subTitle{
        font-size: min(3.2vw, 25px);
        line-height: 4vw;
    }
    h2 {
        font-size: 7vw;
    }
    h1 {
        font-size: 1.5vw;
    }
    .contactbar{
      flex-direction: column;
      gap: 24px;
    }
    .logotext{
        align-items: center;
        align-content: center;
        gap: 8px;
        
    }
    .priceimg{
      width: 90%;
    }
}



@media (orientation: portrait) {
    .video-header{
        background-image: url(../images/PosterP.jpg);
    }

    .waterprint {
        display: none;
    }

    .foot a {
        margin-bottom: 20px;
        color: white;
        font-size: 0.7rem;
        text-decoration: none;
    }

    .bigTitle {

        font-size: min(6.2vw, 80px);
        line-height: 8vw;

    }

    .subTitle{
        font-size: min(3.2vw, 25px);
        line-height: 4vw;
    }

    .paragraph {
        font-size: min(3.5vw, 22px);
        font-weight: 200;
        width: 80vw;
        line-height: min(7vw, 44px);
    }
    .logo_png{
        width: 60vw;
    }
    .text-header p {
        display: none;

    }
    h2 {
        font-size: min(13vw, 78px);
    }
    h1 {
        font-size: min(3vw, 20px);
    }
    .logotext{
        align-items: center;
        align-content: center;
        gap: 8px;
    }
    .priceimg{
      width: 90%;
    }

}
