/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Fonts */
@font-face {
    font-family: "AGG";
    src: url(./fonts/AGG/ITC\ Avant\ Garde\ Gothic\ Pro-Book.otf);
}

@font-face {
    font-family: "AON";
    src: url(/fonts/AON/AON.otf);
}

/* Root Variables */
:root {
    --bg-color-light: #fffff9;
    --bg-color-dark: #131313;
    --text-color-light: black;
    --text-color-dark: white;
    /* --main-color: #bd44fa; */
    --main-color: #e47239;
    --brand-color: #0064D2;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw; 
    height: 100vh; 
    overflow: hidden;
    width: 100%;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

@media (max-width: 1000px) {
    .hero {
        height: auto; /* Let the height adjust based on the image's aspect ratio */
    }

    .hero img {
        position: static; /* Reset position */
        width: 100vw; /* Full width of the viewport */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Contain the image within the width */
    }
}

/* TEXT STYLING */
h1 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-transform: uppercase;
}

h2 {
    font-family: "Mukta", sans-serif;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    font-style:normal;
}

p{
    font-family: "AGG";
    font-size: 18px;
    /* font-weight: 300; */
    font-style: normal;
    line-height: 1.7;
    color: rgb(71, 71, 71);

}

/* GRID CONTENT */
.container {
    margin-top: 50px;
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 50px;

}
.grid-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 02px 85px; 
    /* background-color: hsl(207, 90%, 54%); */
    padding: 10px;
    max-width: 1400px; 
    margin: 0 auto; 
    box-sizing: border-box;
}
.grid-container > div {
    background-color: rgba(255, 255, 255, 0.8);
    text-align:left;
    padding: 20px 0;
    position: relative;

}

/* GRID ITEMS */
.item1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    /* min-width: 50%; */
}
/* .item2, .item3, .item4 {
    grid-column: 1 / span 4;
}
.item2 {
    grid-column: 1/span 1;
}
.item4 {
    grid-column: 2/span 1;
} */
.item5 {
    grid-column: 3/span 2;
}


.item7{
    grid-column: 1 / span 2;
}

.item8{
    grid-column: 3 / span 2;
}

.item9{
    grid-column: 1 / span 4;
    margin-top: 40px;
}
.item9 h2 {
    padding-bottom: 15px;
    font-size: 17px;
    font-weight: 700;
}

.item10{
    grid-column: 1 / span 4;
    font-size: 17px;
    font-weight: 700;
}

.item11{
    grid-column: 1 / span 4;
    height: calc(100vh - 30px); 
    max-width: 1500px;
    height: auto;
    /* margin-top: 30px; */
    box-sizing: border-box;
}


.item13, .item14 {
    grid-column: span 2; 
    border-radius: 15px;
}

.item13 img, .item14 img {
    object-fit: cover; /* Ensures images cover the container without stretching */
    max-height: 100%; /* Limit height to the container height */
    display: block;
    padding-right: 0px; 
    margin: 0 auto;
    width: 100%;
    height: auto; 
}

.item15 {
    grid-column: 1 / span 4;
    margin-top: 50px;
}

/* GIF Mobile Container */
.item16 {
    grid-column: span 4; /* Span across all 4 columns */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns for GIFs */
    align-items: center; /* Vertically center the items */
    justify-items: center; /* Horizontally center the items */
    gap: 0; /* Gap between the GIFs */
    margin-left: 100px;
    margin-right: 100px;
}

/* Individual GIF styling */
.item16 img {
    object-fit: contain; /* Ensure GIFs maintain aspect ratio and fit within container */
    max-height: 90vh; /* Limit height to 70% of viewport height */
    width: 100%; /* Full width within its grid column */
}

/* Styling for each GIF and its caption */
.item17, .item18, .item19 {
    text-align: center; /* Center the caption text */
}

/* Ensuring the GIFs are displayed correctly */
.item17 img, .item18 img, .item19 img {
    object-fit: cover;
    display: block;
    width: 100%; /* Ensure GIF takes full width of the column */
    max-height: 70vh; /* Maintain aspect ratio and size */
    margin-bottom: 10px; /* Space between GIF and caption */
}

/* Styling for the captions */
.item17 p, .item18 p, .item19 p {
    font-family: "AGG";
    font-size: 18px;
    color: var(--text-color-light);
}


/* GIF WEB Styling */

@media screen and (max-width: 800px) {
    .subtitle {
      display: none;
    }

    .subtitle1, .subtitle2{
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 0;
    }

}
@media screen and (min-width: 800px) {
    .subtitle1, .subtitle2 {
      display: none;
    }
}

/* GIF SECTION */
.subtitle {
    padding-bottom: 10px;
}


/* GIF RIGHT CONTAINER  */
.gif-container {
    max-width:1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 80px; 
    align-items: center; 
    grid-column: 1/ span 4;
    margin: 0 auto;
    margin-top: 40px;
}

.gif-textbox {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    /* background-color: lightgray;  */
    box-sizing: border-box; 
}

.gif img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.gif {
    display: flex;
    grid-column: 3 / span 2;
    justify-content: flex-end; 
    max-height: 80vh;
    object-fit: contain;
}

/* GIF LEFT CONTAINER  */
.gif-container2 {
    max-width:1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center; 
    grid-column: 1/ span 4;
    grid-gap: 80px; 
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 40px;
}
.gif2 {
    display: flex;
    grid-column: 1/ span 2;
    justify-content: flex-start; 
    max-height: 80vh;
    object-fit: contain;
}

.gif2 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.gif-textbox2 {
    grid-column: 3/span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.full-line {
    width: 100%; /* Full width */
    height: 2px; /* Line thickness */
    background-color: rgb(141, 141, 141); /* Line color */
    margin: 20px 0; /* Space around the line */
}

.item21 {
    grid-column: 1 / span 4; /* Spans across the grid */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Ensure text content is centered */
    padding: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.item21 h1 {
    font-size: 60px;
    padding: 0;
    margin: 5px 0; 
}
/* .item22 {
    grid-column: 1/ span 4;    
    padding: 0;
    margin: 0;
}
.item22 img {
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 50px;
} */

.item22 {
    grid-column: 1 / span 4;    
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0;
    margin: 0;
}

.item22 img {
    width: 92%;
    height: auto;
    margin-bottom: 50px;
}
.item23 {
    grid-column: 1/ span 4;    
    padding: 0;
    margin: 0;
}
.item23 img {
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 50px;
}


.item24 {
    grid-column: 1/ span 2;
}

.item25 {
    grid-column: 3/ span 2;
}

/* RESPONSIVE */

@media (max-width: 800px) {
    .hero img {
        position:relative;
        width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .container {
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid-container > div {
        background-color: rgba(255, 255, 255, 0.8);
        text-align:left;
        padding: 15px 0;
        font-size: 30px;
    }
  
    .item2, 
    .item3,
    .item4{
        grid-column: span1;
    }
    .item2,
    .item4 {
        grid-column: 1;
    }
    
    .item3 {
        grid-column: 2;
    }
    .item5 {
        grid-template-columns: 1fr, 1fr;
        grid-column: 1, span 4;
    }

    .item9 {
        margin-top: 20px;
    }

    .item9 h2 {
        padding-bottom: 15px;
    }

    .item10 {
        padding: 0px;
        margin: 0px;
    }

    .item13,
    .item14 {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        grid-column: 1 / span 2; /* Make sure the items span across two columns */
    }
    .item13 img,
    .item14 img {
        max-width: 100%; /* Ensure images scale within the container */
        height: auto; /* Maintain aspect ratio */
        padding: 0; 
        margin: 0 auto; 
    }
    .item16 {
        margin-top: 0px;
    }
    .item16 p{
        font-weight: 1000;
    }

    .item16 img {
        margin-top: 15px;
        margin-bottom: 70px;
    }

    .item1,
    .item5
    .item6,
    .item7,
    .item8,
    .item9,
    .item10,
    .item11,
    .item12,
    .item13,
    .item14,
    .item15,
    .item16,
    .item17,
    .item18,
    .item19,
    .item24,
    .item25 {
      grid-column: 1 / span 4;
      grid-row: auto;
    }
    .subtitle {
        padding-bottom: px;
    }

    .item21 h1{
        font-size: 40px;
    }
    .item22 img{
        width: 100%;
    }


/* RESPONSIVE GIF RIGHT CONTAINER */

    .gif-container {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto auto; /* Ensure rows are automatically sized */
        justify-items: center;
        grid-gap: 0;
        margin-top: 5px;

    }

    .gif-textbox {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding: 0;
    }
    .gif-textbox .subtitle {
        grid-column: 1/ span 4;
        grid-row: 1;
        margin: 0;
        padding: 0;
    }
    .gif-textbox .title {
        grid-column: 1/ span 4;
        grid-row: 3;
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 0;
        font-size: 30px;
    }
    .gif-textbox .gif-text {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding-bottom: 30px;
    }
    .gif {
        grid-row: 2;
        grid-column: 1/ span 4;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80vh;
        object-fit: contain;        
        width: 100%; /* Set width to 50% of the parent container */
        height: auto; 
        margin-bottom: 15px;
        padding: 0;
    }
    
    .gif img {
        width: 100%; /* Ensure the image inside the container fits within the container's width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain;
        margin: auto;
    }
    .subtitle1 {
        text-transform: uppercase;
        text-align: center;
        grid-column: 1/ span 4;
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 0;
        font-size: 18px;
    }
/* RESPONSIVE GIF LEFT CONTAINER */
    .gif-container2 {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto auto; /* Ensure rows are automatically sized */
        justify-items: center;
        grid-gap: 0;
        margin-top: 5px;
    }

    .gif-textbox2 {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding: 0;
    }
    .gif-textbox2 .subtitle {
        grid-column: 1/ span 4;
        grid-row: 1;
        margin: 0;
        padding: 0;
    }
    .gif-textbox2 .title {
        grid-column: 1/ span 4;
        grid-row: 3;
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 0;
        font-size: 30px;

    }
    .gif-textbox2 .gif-text {
        grid-column: 1/ span 4;
        grid-row: 4;
        margin: 0;
        padding-bottom: 30px;

    }
    .gif2 {
        grid-row: 2;
        grid-column: 1/ span 4;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80vh;
        object-fit: contain;        
        width: 100%; /* Set width to 50% of the parent container */
        height: auto; 
        margin-bottom: 15px;        
        padding: 0;
        
    }

    .gif2 img {
        width: 100%; /* Ensure the image inside the container fits within the container's width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain;
        margin: auto;
    }

    /* TEXT STYLING */
    h1 {
        font-size: 30px;
        font-style:normal;
        text-transform: uppercase;
        padding-bottom: 20px;
        line-height: 1.4;
    }

    p{
        font-size: 16px;
        /* font-weight: 300; */
        font-style: normal;
        line-height: 1.7;
    }

}
@media (max-width: 480px) {
    .hero img {
        position: relative;
        width: 100vw;
        overflow: hidden;
    }
    /* .container {
        margin-top: 10px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 50px;
        padding: 0;
    } */
    .container {
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 1fr; 
        grid-gap: 0px; 
        max-width: 1400px; 
        margin: 0 auto; 
        box-sizing: border-box;
    }

    .item2,
    .item4 {
        grid-column: 1;
        margin-right: 50px;
    }
    .item3,
    .item5 {
        grid-column: 2;
    }
    .item2, .item3 {
        margin-bottom: 10px;
    }
    .item4, .item5 {
        margin-bottom: 10px;
    }
    .item7 {
        margin-bottom: 10px;
    }

 
    .item15 {
        margin-top: 25px;
        padding: 0;
    }

    .item15 h1 {
        padding-top: 8px;
        padding-bottom: 0;
    }
    .subtitle1 {
        font-weight: bolder;
    }
    .item17 img{
        width: 80%;
        display: block; 
        margin: 0 auto; 
        margin-bottom: 25px;
        padding-top: 0;
    }
    .item18 img{
        width: 80%;
        display: block; 
        margin: 0 auto;
        margin-bottom: 25px;
 
    }
    .item19 img{
        width: 80%;
        display: block; 
        margin: 0 auto; 
        margin-bottom: 65px;
    }

    .item17 p {
        padding-bottom: 10px;
    }
    .item18 p {
        padding-bottom: 10px;
    }
    .item19 p {
        padding-bottom: 10px;
    }
    .gif-container{
        margin-top: 2px;
        margin-bottom: 30px;
    }
    .gif-container2{
        margin-top: 2px;
        margin-bottom: 30px;

    }
    .item21 {
        margin-top: 0px;
    }
    .full-line {
        margin: 10px;
    }

}
  
/* @media (max-width: 480px) {

    .grid-container {
      grid-template-columns: 1fr;
    }
  
    .item1,
    .item6,
    .item7,
    .item8,
    .item9,
    .item10,
    .item11,
    .item12,
    .item13,
    .item14,
    .item15,
    .item16,
    .item17,
    .item18 {
      grid-column: 1 / span 1;
    }


} */

