:root {
    --vheight: 20vh;
    --bg-color: #E8AA42 ;
    --bg-sec-color: #025464;
    --vheight-2: 5vh;
    --transform-foot: translateY(0%);
}

@media screen and (max-height:1440px) {
    :root {
        --vheight: 24vh;
        --vheight-2: 6vh;
    }
}

@media screen and (orientation:landscape) {
    :root {
        --transform-foot: translateY(-20%);
        --scale-foot: scale(100%)
    }
}

@media screen and (orientation:portrait) {
    :root {
        --transform-foot: translateY(-15%);
    }
}

body {
    background-color: rgb(2, 84, 100) ;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 100vh;
}

body::-webkit-scrollbar {
    background-color: #ffd285;
}

body::-webkit-scrollbar-thumb   {
    background-color: #00697c;
}
p {
    font-family: "Roboto" ;
}

h1 {
    font-family:"Roboto";
}

.curve-divider-image-1 {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-bottom: -10px;
    transform: var(--scale-foot);
}

.move_foot {
    position: relative;
    transform: var(--transform-foot);
    z-index: -999;
    top: -100%;
}

.curve-divider-image-1 svg {
    position: var(--footer-divider-pos);
    display: block;
    width: 100%;
    height: auto;
}

.curve-divider-image-2 {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.curve-divider-image-2 svg {
    display: block;
    width: 100%;
    height: auto;
    z-index: 10;
}

div.trigger-box {
    height: 0;
    margin: 0;
    padding: 0;
}

div.trigger-box-2 {
    position: fixed;
    height: 35vh;
    margin: 0;
    padding: 0;
}

div.trigger-box-3 {
    position: fixed;
    height: 35vh;
    margin: 0;
    padding: 0;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(2, 84, 100);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #loader > p {
    font-size: 8rem;
    font-family: "Roboto";
    text-align: center;
    place-items: center;
    color: rgb(229, 124, 35) ;
  }

  #main-content {
    display: none;
  }

  .spacer {
    position: relative;
    width: 100%;
    height: var(--vheight);
    background-color: var(--bg-color);
    max-height: var(--vheight);
    transform: var(--transform-foot);
    
  }

  .spacer_2 {
    margin: 1rem 0 1rem 0;
    height: calc(100vh - 80vh);
    max-height: var(--vheight-2);
    background-color: var(--bg-sec-color);
    z-index: -9999;
  }

  
