

@font-face {
    font-family: "Gilroy";
    src: url(./Fonts/Gilroy-Regular.ttf);
}

@font-face {
    font-family: "monument";
    src: url(./Fonts/PPMonumentExtended-Black\ update.ttf);
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* font-family: "Roboto", sans-serif;
     */
     font-family: 'Gilroy', sans-serif;
   
}

html, body{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    
}

/* loading purposes */
#main-content {
    opacity: 0;
}

body.loaded #main-content {
    opacity: 1;
}

#main{
    background-color: #F8F8F8;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 1px;
}
#nav{
    margin-top: 40px;
    width: 100%;
    height:10vh;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
#nav h2{
    height: 100%;
    width: 23%;
    /* background-color: yellow; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 2px solid black;
    font-size: 22px;
    font-weight: 600;
}
#nav h2:nth-last-child(1){
    width: 10%;
    /* background-color: yellow; */
}
#nav h1{
    height: 100%;
    width: 18%;
    /* background-color: yellow; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.5rem;
    font-family: monument;
    margin-left: 15px;
    letter-spacing: -3px;
}
#nav h3{
    display: none;
}
#nav sup{
    font-size: 45%;
     margin-left: 6px;
    margin-top: -25px;
}
#center{
    width: 100%;
    height: 90%;
    /* background-color: red; */
    overflow-x: hidden;
    padding: 4vw;
}
#content{
    width: 100%;
    height: 100%;
    /* background-color: yellow; */
    position: relative;
}

#content video{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
#overlay{
    position: absolute;
    width: 100%;
    height:55%;
    /* background-color: red; */
    bottom: 0;
    padding: 3vw;
}

#top{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #FEFFFF;
    
}
#top h1{
    font-family: monument;
    font-size: 3rem;
    font-weight: 700;
    
}
#top h3{
    padding: 2vw 2vw;
    
    border: 2px solid white;
    
    border-radius: 50%;
}

#bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #FEFFFF;
    border-top: 2px solid #F8F8F8;
    padding: 1vw 0;
    
}
#bottom h3{
    font-weight: 500;
}
#bottom img{
height: 3vw;
}



#container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* background-color: red; */
    width: 100%;
    height: 40vh;
    overflow-x: hidden;
    position: relative;
}

#scroll-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200%; 
    -webkit-animation: scroll 8s linear infinite; 
            animation: scroll 8s linear infinite;
}

#scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%; 
    height: 100%;
}

#scroll img {
    width: 17vw;
    height: 30vh;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    margin-right: 10px;
}


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(calc(-50% - 2vw)); 
    }
}


@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); 
    }
}
#page2{
    width: 100%;
    height: 100%;
    background-color: pink;
}
#section{
    width: 100%;
    height: 10vh;
    /* background-color: red; */
    position: relative;
    margin-top: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    padding: 0 5vw;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
.left h2{
    font-family: monument;
    border-bottom: 2px solid black;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 2px;
}
.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* background-color: yellow;  */
    width: 80vw;
    /* margin-left: 10vw; */
}
.right h3{
    font-family: "Roboto", sans-serif;
    border-radius: 50%;
    padding: 1px;
    border: 2px solid rgba(0, 0, 0, 0);
    width:2vw;
    font-style: italic;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    /* opacity: 0; */
}
.right h3:hover{
    border: 2px solid rgba(0, 0, 0, 0.792);
    
}

#posters{
    width: 100%;
    height: 115vh;
    /* background-color: red; */
    padding: 3.5vw 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.left-s{
    width: 56%;
    /* background-color: blue; */
    height: 50vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.left-s img {
    width: 100%;
    height: 92%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}


.left-s h1 {
    font-family: 'Monument', sans-serif; 
    text-transform: uppercase; 
    font-size: 2.4rem; 
    margin-top: 14px; 
    -ms-flex-item-align: start; 
        align-self: flex-start; 
}
.right-s {
    width: 40%;
    /* background-color: rgb(212, 255, 0); */
    height: 47vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.right-s img {
    width: 100%;
    height: 70%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 30% 40%;
       object-position: 30% 40%;
}

.right-s .info {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-pack: justify;
    
        -ms-flex-pack: justify;
    
            justify-content: space-between;
    padding: 20px;
}

.right-s h3 {
   width: 20vw;
    margin-bottom: 10px;
    text-align: start;
    font-size: 1.7rem; 
    font-weight: 500; 
    
    letter-spacing: -1px;
    /* gap: 2px; */
}

.right-s h4 {
    font-weight: 500;
    width: 20vw;
    text-align: start;
    /* letter-spacing: -1px; */
}

 /* Loader styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Monument', sans-serif;
    font-size: 5rem;
    color: #fff;
    letter-spacing: 10px;
    margin-bottom: 20px;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-animation: revealText 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
            animation: revealText 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.progress-bar {
    width: 200px;
    height: 3px;
    background: #333;
    margin: 0 auto;
}

.progress {
    width: 0;
    height: 100%;
    background: #fff;
}

@-webkit-keyframes revealText {
    0% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}

@keyframes revealText {
    0% { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}

body {
    overflow: hidden;
}

body.loaded {
    overflow: auto;
}

#updates{

    width: 100%;
    height: 100vh;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#updates h1{
    margin-top: 5vw;
    font-family: monument;
    font-size: 2.5rem;
}
.tenderline{
    margin-top: 7vw;
    
    }
.tenderline-text {
    border-top: 2px solid black;
    width: 80vw;
    height: 10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* padding: 0 20px; */
}

.tenderline:last-child {
    border-bottom: 2px solid black;
}
.tenderline-text h4 {
    width: 3vw;
    height: 4vw;
    font-weight: 500;
    font-size: 2rem;
}
.tenderline-text img {
    width: 9vw;
    height: 7vw;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    }
 /* .tenderline animations */
 .tenderline-text img {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
}
.tenderline-text:hover img
 {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
.tenderline-text:hover img {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.tenderline-text:hover .text {
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
}



.text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 20vw;
}

.text h2 {
    font-size: 2rem;
    font-weight: 500;
}

@-webkit-keyframes slideIn {
    from {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}

#banner{
    width: 100%;
    
    white-space: nowrap;
    /* background-color: red; */
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 1vw;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
#banner h1{
    /* background-color: blue; */
display: inline-block;
text-transform: uppercase;
font-size: 3vw;
-webkit-text-stroke: 2px black ;
color: transparent;
font-weight: 700;
font-family: monument;
margin-right: 16px;
letter-spacing: 2px;
-webkit-animation: move;
        animation: move;
-webkit-animation-duration: 2s;
        animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
        animation-timing-function: linear;
}

@-webkit-keyframes move {
    from{

        -webkit-transform : translateX(0);

                transform : translateX(0);
    }
    to{

-webkit-transform: translateX(calc(-100% - 20px));

        transform: translateX(calc(-100% - 20px));
    }
    
}

@keyframes move {
    from{

        -webkit-transform : translateX(0);

                transform : translateX(0);
    }
    to{

-webkit-transform: translateX(calc(-100% - 20px));

        transform: translateX(calc(-100% - 20px));
    }
    
}

#last-page{
    padding: 4vw;
    width: 100%;
    height: 75vh;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 5px;
}
#last-page h1{
    font-size: 3vw;
    padding-top: 2.5vw;
    font-family: monument;
    font-weight: 500;
}
.last-right{
    /* background-color: blue; */
    width: 80%;
    height: 30vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    

}
.blog{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 50vw;
    height: 30vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.blog img{
    width: 22vw;
    height: 15vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    /* border-radius: 2px; */
    padding-bottom: 2vw;
}
.blog:nth-child(1) img {
    -o-object-position: 50% 20%;
       object-position: 50% 20%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px  rgba(94, 90, 90, 0.874) ;
}
.blog h3{
    padding-top: 3vw;
    font-weight: 300;
    font-size: 1.5vw;

}

#footer{
    width: 100%;
    height: 15vw;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    
}
.f-left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
     -webkit-box-orient: horizontal;
     -webkit-box-direction: normal;
         -ms-flex-direction: row;
             flex-direction: row;
    width: 40vw;
    border-right: 2px solid black;
    /* background-color: blue; */
    padding: 2vw;
}
.f-left h1{
    font-size: 2.3rem;
    font-family: monument;
    margin-left: 15px;
    letter-spacing: -3px;
    font-weight: 500;
}
.f-left h3{
    margin-top: 1vw;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 1.5rem;
}

.f-mid{
    width: 20vw;
    /* background-color: green; */
    border-right: 2px solid black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 3vw;
    }
    .f-mid h2{
    font-weight: 500;

}
.f-right{
    width: 55%;
    height: auto;
    /* background-color: yellow; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.f-right h2{
    top: 5px;
    padding-left: 5vw;
    font-weight: 500;
    margin: 0;
    width: 100%;
    height: 5vw;
    /* background-color: pink; */
    border-bottom: 2px solid black;
}
.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  color: #333;
  font-size: 24px;
  /* transition: all 0.3s ease; */
  text-decoration: none;
}

.social-icons a:hover {
-webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
        transform: scale(1.2);
  color: #007bff;
}

.social-icons i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  /* background-color: #f8f9fa; */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


#end{
    width: 100%;
    height: 4vw;
}


.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -o-linear-gradient(top, white, black);
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: linear-gradient(to bottom, white, black);
}



@media only screen and (max-width: 768px) {
    .loader-text {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        letter-spacing: 5px;
    }
    #nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: auto;
    }

    #nav h2, #nav h1 {
        width: 100%;
        border-right: none;
        font-weight: 600;
    }
    #nav h2 { display: none; }
    #nav h3 {
        display: block;
        font-size: 1.5rem;
        padding: 0 2vw;
    }
    #center { height: 59%; }
    #content {
        width: 100%;
        height: 80%;
        position: relative;
    }
    #content video { height: 43vh; }
    #overlay { height: 56%; }
    #scroll { width: 100%; }
    #scroll img {
        
            width: 42vw;
        height: 20vh;
        margin-right: 5px;
        padding: 0 2px;
    }

    #container { height: 25vh; }
    #scroll-wrapper { width: 300%; }
    @-webkit-keyframes scroll {
        0% { -webkit-transform: translateX(0); transform: translateX(0); }
        100% { -webkit-transform: translateX(-54%); transform: translateX(-54%); }
    }
    @keyframes scroll {
        0% { -webkit-transform: translateX(0); transform: translateX(0); }
        100% { -webkit-transform: translateX(-54%); transform: translateX(-54%); }
    }

    #top h1 { font-size: 2rem; }

    #section {
        width: 100%;
        height: 10vh;
        margin-top: 4vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-transform: uppercase;
        padding: 0 5vw;
        border-top: 2px solid black;
        border-bottom: 2px solid black;
    }
    .left h2 { font-size: 1.3rem; }
    .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 85vw;
    }
    .right h3 {
        font-size: 1rem;
    }
    .right h3:hover {
        border: 2px solid rgba(0, 0, 0, 0.792);
    }
    #posters {
        height: 90vw;
    }

    .right-s {
        width: 100%;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }
    .right-s h3 { font-size: 16px; }
    .left-s { -webkit-box-align: start; -ms-flex-align: start; align-items: start; }

    .left-s h1 {
        font-size: 1.7rem;
        height: 30vh;
    }
    .left-s img { width: 132%; }
    .right-s img {
        width: 65%;
        height: 30vh;
    }

    #updates { height: 65vh; }
    .text h2 { font-size: 1rem; }
    .tenderline-text {
        height: 13vw;
        padding: 20px 0;
    }
    .tenderline-text h4 { font-size: 1rem; }
    #banner h1 { font-size: 6vw; }
    #last-page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: auto;
    }

    .last-right {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .blog {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .blog img {
        width: 47%;
        height: 25vw;
        max-height: 200px;
    }
    
    .blog h3 {
        padding-top: 15px;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }

    #footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: auto;
        margin-top: 57vw;
    }

    .f-left, .f-mid, .f-right {
        width: 100%;
        border-right: none;
        padding: 15px;
    }

    .f-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .f-left h1 {
        font-size: 1.8rem;
        margin: 0 0 10px;
    }

    .f-left h3 {
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .f-mid {
        padding-top: 15px;
        border-top: 2px solid black;
    }

    .f-mid h2 { font-size: 1.3rem; }
    .f-right {
        border-top: 2px solid black;
    }

    .f-right h2 {
        padding-left: 0;
        text-align: center;
        height: auto;
        border-bottom: none;
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .social-icons a { font-size: 20px; }
    .social-icons i {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

@media only screen and (max-width: 575px) {
    #content video { height: 40vh; }
    
    .left h2 { font-size: 1.1rem; }
    .right h3 { font-size: 0.8rem; }
    .left-s h1 {
        font-size: 1.3rem;
        height: 25vh;
    }

    .right-s img {
        width: 60%;
        height: 25vh;
    }
    #posters { height: 103vw; }
    #updates { height: 55vh; }
    .blog img {
        width: 100%;
        height: 30vw;
    }

    #footer { margin-top: 70vw; }
}

@media only screen and (max-width: 450px){


    #overlay {
        height: 25%;
    }
    #nav h1{
        font-size: 1.8rem;
    }
    #nav h3{
        font-size: 0.8rem;
    }
    #top h1 {
        font-size: 1rem;
    }
    #top h3{
        display: none;
    }
    .tenderline-text h4 {
        font-size: 0.9rem;
    }
    .text h2 {
        font-size: 0.8rem;
    }
    .right-s h4 {
        font-size: 0.8rem ;
    }
    .right-s h3 {
        font-size: 15px;
        margin-right: 10px;
    }
        #banner{
            margin-top: 24vw;
        }

        .tenderline-text {
            height: 19vw;
            /* padding: 24px 0; */
        }
    #updates {
        height: 38vh;
        margin-top: 20vw;
    }
    #center {
        height: 46%;
    }

    #footer {
        margin-top: 88vw;
        
    }
    #scroll img {
        width: 42vw;}
        .f-mid h2 {
            font-size: 0.9em;
        }

        .f-right h2 {
            
            font-size: 0.9rem;
        }
        .bottom h3{
            font-size: 0.8rem;
        }
        .f-left h1 {
            font-size: 1.4rem;}
}

@media only screen and (min-width: 764px) and (max-width: 1100px) {
    #nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: flex;
                flex-direction: flex;
        height: auto;
    }

    #nav h2, #nav h1 {
        width: 100%;
        border-right: none;
        font-weight: 600;
    }

    #nav h2 {
        display: none;
    }

    #nav h3 {
        display: block;
        font-size: 1.8rem;
        padding: 0 2vw;
    }

    #center {
        height:  46%;
    }

    #content {
        width: 100%;
        height: 85%;
        position: relative;
    }

    #content video {
        height: 50vh;
    }

    #overlay {
        height: 10%;
    }

    #scroll {
        width: 100%;
    }

    #scroll img {
        width: 30vw;
        height: 22vh;
        margin-right: 8px;
        padding: 0px 3px;
    }

    #container {
        height: 28vh;
    }

    #scroll-wrapper {
        width: 250%;
    }

    @-webkit-keyframes scroll {
        0% {
            -webkit-transform: translateX(0);
                    transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-60%);
                    transform: translateX(-60%);
        }
    }

    @keyframes scroll {
        0% {
            -webkit-transform: translateX(0);
                    transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-60%);
                    transform: translateX(-60%);
        }
    }

    #top h1 {
        font-size: 2.5rem;
    }

    #section {
        margin-top: 5vw;
        padding: 0 6vw;
    }

    .left h2 {
        font-size: 1.5rem;
    }

    .right {
        width: 80vw;
    }

    .right h3 {
        font-size: 1.2rem;
    }

    #posters {
        height: 58vw;
    }

    .right-s {
        width: 95%;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .right-s h3 {
        font-size: 18px;
    }

    .left-s {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .left-s h1 {
        font-size: 2rem;
        height: 35vh;
    }

    .left-s img {
        width: 120%;
    }

    .right-s img {
        width: 70%;
        height: 35vh;
    }

    #updates {
        height: 44vh;
        margin-top: 20vw;
    }

    .text h2 {
        font-size: 1.2rem;
    }

    .tenderline-text {
        height: 15vw;
        padding: 25px 0;
    }

    .tenderline-text h4 {
        font-size: 1.2rem;
    }
        #banner{
            margin-top: 22vw;
        }
    #banner h1 {
        font-size: 5vw;
    }

    #last-page {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: auto;
    }

    .last-right {
        width: 90%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .blog {
        width: 48%;
        height: auto;
        margin-bottom: 25px;
    }

    .blog img {
        width: 80%;
        height: 30vw;
        max-height: 250px;
    }

    .blog h3 {
        padding-top: 20px;
        font-weight: 400;
        font-size: 18px;
        text-align: center;
    }

    #footer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: auto;
        margin-top: 15vw;
    }

    .f-left, .f-mid, .f-right {
        width: 33.33%;
        border-right: 2px solid black;
        padding: 20px;
    }

    .f-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .f-left h1 {
        font-size: 2rem;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .f-left h3 {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .f-mid {
        padding-top: 20px;
    }

    .f-mid h2 {
        font-size: 1.5rem;
    }

    .f-right h2 {
        padding-left: 0;
        text-align: center;
        height: auto;
        margin-bottom: 15px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        font-size: 22px;
    }

    .social-icons i {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }
}
   