/*********************      NAV STYLE SHEET - BEGINS     *******************/
.nav-wrapper {
    word-spacing: 4vw;
    padding: 4vh;
}

nav ul li{
    font-family: 'Poppins';
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    /*display: inline-block;*/
    list-style: none;
}

nav ul li a { 
    text-decoration: none;
    color: #000;
}

nav ul li a:hover {
    color: rgb(211, 0, 0);
    transition: .90s;
}

/*********************      NAV STYLE SHEET - ENDS     *******************/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900');
*
{
    margin: 0;
    padding: 0;
    font-family: 'cursive';
}

.banner {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -100;
    margin-top: -30vh;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.nav-banner {
    position: absolute;
    width: 30%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    z-index: -100;
    float: right;
}

.nav-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.nav-banner h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 5vw;
    text-align: center;
    /*text-transform: uppercase;*/
    color: #000;
    line-height: 100vh;
    mix-blend-mode: screen;
}

.banner h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 15vw;
    text-align: center;
    /*text-transform: uppercase;*/
    color: #000;
    line-height: 100vh;
    mix-blend-mode: screen;
}

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
html {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #eee;
    display: flex;
}
*/

.image-container {
    width: 100%;
    max-width: 120rem;
    margin: auto;  
    padding: 0 1.5rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 1.5rem;
    grid-template-areas: 
            'img-1 img-2 img-3 img-3'
            'img-1 img-4 img-5 img-6'
            'img-7 img-7 img-8 img-6'
            'img-9 img-9 img-10 img-10';
}

.image-gallery a {
    width: 100%;
    height: 25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.image-gallery a i {
    color: rgba(255, 255, 255, .6);
    font-size: 3rem;
    position: relative;
    z-index: 100;
    padding: 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 0.4rem;
    opacity: 0;
    transition: opacity .5s;
}

.image-gallery a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: opacity 0.5s;
}

.image-gallery a:hover i,
.image-gallery a:hover::before{
    opacity: 1;
}

.img-1 {
    grid-area: img-1;
    background-image: url("img/1.jpg");
    min-height: 51.5rem;
}

.img-2 {
    grid-area: img-2;
    background-image: url("img/2.jpg");
}

.img-3 {
    grid-area: img-3;
    background-image: url("img/3.jpg");
}

.img-4 {
    grid-area: img-4;
    background-image: url("img/4.jpg");
}

.img-5 {
    grid-area: img-5;
    background-image: url("img/5.jpg");
}

.img-6 {
    grid-area: img-6;
    min-height: 51.5rem;
    background-image: url("img/6.jpg");
}

.img-7 {
    grid-area: img-7;
    background-image: url("img/7.jpg");
}

.img-8 {
    grid-area: img-8;
    background-image: url("img/8.jpg");
}

.img-9 {
    grid-area: img-9;
    min-height: 51.5rem;
    background-image: url("img/9.jpg");
}

.img-10 {
    grid-area: img-10;
    min-height: 51.5rem;
    background-image: url("img/10.jpg");
}
 
@media screen and (max-width: 900px) {
    .image-gallery {
        grid-template-areas: 
            'img-1 img-1 img-2 img-2'
            'img-1 img-1 img-3 img-3'
            'img-4 img-4 img-5 img-5'

            'img-6 img-6 img-7 img-7'
            'img-6 img-8 img-8 img-9'
            'img-10 img-10 img-10';
    }

    .image-gallery a {
        height: 20rem;
    }

    .img-1 {
        min-height: 41.5rem;
    }

    .img-6 {
        min-height: 20rem;
    }
}

@media screen and (max-width: 600px) {
    .image-gallery {
        grid-template-areas: 
            'img-1 img-1 img-1 img-1'
            'img-2 img-2 img-2 img-2'
            'img-3 img-3 img-3 img-3'

            'img-4 img-4 img-4 img-4'
            'img-5 img-5 img-5 img-5'
            'img-6 img-6 img-6 img-6'
            'img-7 img-7 img-7 img-7'
            'img-8 img-8 img-8 img-8'
            'img-9 img-9 img-9 img-9'
            'img-10 img-10 img-10 img-10';
    }

    .image-gallery a,
    .img-1,
    .img-6 {
        min-height: 30rem;
        height: 30rem;
    }
}

/*******************START FOOTER SECTION STYLES********************/

footer {
    background:  #fff;
    padding: 8rem 0;
}

footer .flex {
    padding-bottom: 6rem;
    border-bottom: 1px solid #777;
}

footer h5 {
    color: #000;
    margin-bottom: 1rem;
    font-weight: 300;
}

footer h5.follow-us {
    margin-top: 1rem;
}

footer .footer-about {
    width: 55%; 
    float: left;
    padding-left: 140px;
}

footer .footer-about p {
    width: 65%;
    color: #000;
}

footer .footer-quick-links {
    width: 16%;
    float: left;
    padding-left: 10px;
    margin: 0;
}

footer .footer-quick-links ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

footer .footer-quick-links ul li {
    margin: 10px 0;
}

footer .footer-quick-links ul li a { 
    color: #000; 
    text-decoration: none;
}

footer .footer-quick-links ul li a:hover { 
    color: rgb(211, 0, 0);
}

footer .footer-subscribe {
    width: 25%; 
    padding-right: 100px;
    margin: 0;
    float: right;
}

#subscribe-container {
    position: relative;
}

footer .footer-subscribe input { 
    border-radius: 30px; 
    height: 43px;
    font-family: "Roboto", "Helvetica", "Sans-serif";
    border: 1px solid #000;
    background-color: transparent;
    font-size: 1rem;
    padding: 10px;
    color: #000;
    box-sizing: border-box;
    width: 80%;
}

footer button.right-rounded {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background: rgb(211, 0, 0);
    font-size: 16px;
    color: #fff; 
    padding: 10px 30px 9px; 
    line-height: 1.5; 
    cursor: pointer;
    border: none;
    position: absolute;
    right: 0;
}

footer button.right-rounded:hover { 
    color: rgb(255, 238, 2);
}

footer .footer-subscribe ul { 
    list-style-type: none; 
    padding: 0; 
    margin: 0;
}

footer .footer-subscribe ul li { 
    display: inline-block;
    margin: 0 16px;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-subscribe ul li:first-child {
    margin-left: 0; 
}

footer .footer-subscribe ul li a {
    text-decoration: none;
    color: #000;
}

footer .footer-subscribe ul li a:hover {
    color: rgb(211, 0, 0); 
}

footer .follow-us ul li a:hover {
    color: #fff;
}

footer small {
    margin-top: 20rem; 
    font-size: 1rem;
    display: block;
    text-align: center;
    color: rgb(145, 145, 145);
}

footer small a {
    color: #777;
    text-decoration: none;
}

footer small a:hover {
    color: rgb(255, 238, 2);
}

/*******************  END FOOTER SECTION STYLES   **********************/
  
/************************************    MEDIA QUERIES BEGINS    **********************************/

  @media(max-width:600px) {
    .card {
      display: block;
    }
  }


  /*---------------- DWNLD BTN STYLESHEET ------------*/
  .btn {
    display: inline-block;
    background: rgb(255, 238, 2);
    color: #000;
    padding: 0.8rem 1.8rem;
    margin-top: 2rem;
    cursor: pointer;
  }
  
  .btn:hover {
    background: #b50d10;
    color: #fff;
    transition: 0.5s;
  }

  .downloadbtn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background: rgb(211, 0, 0);
    font-size: 14px;
    letter-spacing: 2.5px;
    color: #fff; 
    padding: 10px 30px 9px; 
    line-height: 1.5; 
    cursor: pointer;
    border: none;
    float: right;
    right: 0;
    text-decoration: none;
  }

  .downloadbtn:hover {
    background: rgb(255, 238, 2);
    color: #000;
    transition: 0.5s;
  }

  footer .footer-subscribe {
    width: 25%; 
    padding-right: 100px;
    margin: 0;
    float: right;
}

.subscribe-container {
    position: relative;
    float: left;
}

footer .footer-subscribe ul { 
    list-style-type: none; 
    padding: 0;
    letter-spacing: 0.7rem; 
    margin-top: 7.5rem;
}

footer h5.follow-us {
    margin-top: 2rem;
    margin-right: 5rem;
    float: left;
}