*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
}

main{
    height: 100%;
    width: 100%;
    padding: 0.1px;
    /* background-color: blanchedalmond; */
}

nav{
    width: 100%;
    height: 10%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 25% 15% 15% 25% 20%;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    /* background-color: aqua; */

    h1{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 36px;
        font-weight: 1000;
        letter-spacing: -3px;
        position: relative;
        /* background-color: blue; */
    }

    h1::after{
        content: "model management";
        position: absolute;
        color: grey;
        bottom: 10%;
        right: 26%;
        font-size: 10px;
        font-weight: 100;
        letter-spacing: 0;
    }

    h1::before{
        content: "©️";
        position: absolute;
        color: grey;
        top: 25%;
        right: 26%;
        font-size: 10px;
        font-weight: 100;
        letter-spacing: 0;
    }

    h2{
        /* background-color: crimson; */
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 2px solid black;
        font-size: 16px;
        font-weight: 100;
    }
    h2:nth-child(5){
        font-size: 20px;
        padding-left: 40px;
        justify-content: flex-start;
    }
}

#center{
    height: 90%;
    width: 100%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    #content{
        height: 100%;
        width: 90%;
        position: relative;
        display: flex;
        align-items: flex-end;

        video{
            height: 100%;
            width: 100%;
            object-fit: cover;
            position: absolute;
            z-index: -1;
        }

        #overlay{
            width: 100%;
            height: 50%;
            padding: 3vw;
            color: white;
            #over1{
                width: 100%;
                padding-bottom: 2vw;
                border-bottom: 1px solid white;
                display: flex;
                justify-content: space-between;
                align-items: center;
                h1{
                    font-size: 4vw;
                    font-weight: 1000;
                    line-height: 0.9;
                    letter-spacing: -3px;
                }
                h2{
                    font-size: 1.2vw;
                    font-weight: 100;
                    padding: 1.5vw;
                    border: 1px solid white;
                    border-radius: 50%;
                }
            }

            #over2{
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1vw 0;
                h1{
                    font-size: 1vw;
                    font-weight: 100;
                }
                h2{
                    font-size: 2vw;
                    font-weight: 100;
                }
            }
        }
    }
}

#scroll{
    width: 100%;
    height: 30%;
    display: flex;
    overflow: hidden;

    #container{
        height: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        padding: 0 1.5vw;
        gap: 3vw;
        animation-name: scroll;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        img{
            height: 80%;
            border-radius: 50%;
        }
    }
}

@keyframes scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

#alphabets{
    width: 100%;
    height: 10vh;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6vw;
    margin: 4vw 0;
    cursor: pointer;
    h1{
        font-size: 1.3vw;
        font-weight: 100;
        font-style: italic;
        color: grey;
        border-radius: 50%;
        padding: 5px 8px;
        transition: all 0.2 linear;
        border: 1px solid transparent;
    }
    
    h1:nth-child(1){
        color: black;
        border: none;
        text-decoration: underline;
        letter-spacing: 3px;
    }

    h1:hover{
        border-color: black;
        color: black;
    }
}

#vogue-shot-container{
    width: 100%;
    height: 110%;
    display: flex;
    justify-content: center;
    #container{
        height: 100%;
        width: 85%;
        display: grid;
        grid-template-columns: 60% 15% 25%;
        grid-template-rows: 65% 25% 10%;

        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
            padding: 1vw;
        }

        img:nth-child(2){
            grid-column: 2/4;
        }
        img:nth-child(1){
            grid-row: 1/3;
        }

        p{
            font-size: 0.9vw;
            padding: 1vw 1vw 0 2.5vw;
            font-weight: 100;
        }
        h2{
            padding: 1vw;
            font-size: 1.2vw;
            font-weight: 200;
        }

        h1{
            padding: 0 1vw;
            font-weight: 1000;
            font-size: 2vw;
        }
    }
}

#image-container1{
    height: 150%;
    width: 100%;
    display: flex;
    justify-content: center;

    #container{
        height: 100%;
        width: 85%;
        display: grid;
        grid-template-columns: 45% 55%;
        grid-template-rows: 55% 10% 35%;
        #curve-text{
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                position: absolute;
                animation-name: rotate;
                animation-duration: 10s;
                animation-timing-function: linear;
                animation-iteration-count: infinite;
            }
            i{
                font-size: 5vw;
                font-weight: 100;
            }
        }
        img{
            height: 100%;
            width: 100%;
            padding: 2vw 0;
            object-fit: cover;
        }
        img:nth-child(2){
            grid-row: 1/3;
            grid-column: 2;
        }
        img:nth-child(4){
            grid-column: 1/3;
        }
        h2{
            width: 70%;
            font-size: 1.5vw;
            font-weight: 100;
        }
    }
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

#updates-container{
    width: 100%;
    height: 80%;
    /* background-color: cadetblue; */
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2vw 0;

    
    h1{
        font-size: 24px;
        font-weight: 1000;
        margin-bottom: 40px;
    }
    #elem-container{
        width: 85%;
        height: 20%;
        display: grid;
        grid-template-columns: 7% 43% 50%;
        /* border-top: 1px solid black; */
        border-bottom: 1px solid black;


        h2{
            font-size: 10px;
            font-weight: 100;
            color: rgba(0, 0, 0, 0.8);
        }

        #elem1{
            padding: 10px;
        }

        #elem2{
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                width: 70px;
                height: 70px;
                border-radius: 50%;
                object-fit: cover;
                object-position: top;
                opacity: 0;
            }
        }
        
        #elem3{
            display: flex;
            flex-direction: column;
            justify-content: center;
            h1{
                margin: 0;
                font-weight: 100;
            }
        }
    }
    
    #elem-container:hover{
        #elem2{
            img{
                transition: 0.2s all linear;
                opacity: 1;
            }
        }
    }
}

#movie-shot-container{
    width: 100%;
    height: 90%;
    /* background-color: coral; */
    padding: 2% 7.5%;
    display: grid;
    grid-template-columns: 50% 30% 20%;
    grid-template-rows: 10% 15% 15% 60%;
    img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
        padding-right: 10px;
    }
    img:nth-child(1){
        grid-row: 1/5;
        padding-right: 10px;
    }

    img:nth-child(2){
        grid-row: 4;
    }

    img:nth-child(3){
        grid-row: 4;
        padding: 0;
    }

    h1{
        grid-column: 2/4;
        font-size: 24px;
        font-weight: 1000;
    }
    h2{
        grid-column: 2/4;
        width: 40%;
        font-size: 13px;
        font-weight: 100;
    }
    p{
        width: 70%;
        grid-column: 2/4;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.8);
    }

}

#image-container2{
    width: 100%;
    height: 170%;
    padding: 2% 7.5%;
    display: grid;
    grid-template-columns: 60% 15% 25%;
    grid-template-rows: 40% 50% 10%;

    img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        padding: 10px 0;
    }
    img:nth-child(1){
        grid-column: 1/4;
        object-position: 0 70%;
    }

    img:nth-child(2){
        padding-right: 10px;
        grid-row: 2/4;
    }

    img:nth-child(3){
        grid-column: 2/4;
    }

    h2{
        width: 70%;
        font-size: 13px;
        font-weight: 100;
    }

    p{
        font-size: 10px;
        color: rgba(0, 0, 0, 0.8);
    }

}

#scroll2{
    width: 100%;
    height: 8%;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    #container{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        animation-name: scroll;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        h1{
            flex-shrink: 0;
            color: transparent;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
        }
    }
}

#blog-container{
    width: 100%;
    height: 80%;
    /* background-color: coral; */
    padding:  4% 7.5%;
    display: grid;
    grid-template-columns: 15% 40% 45%;
    grid-template-rows: 30% 70%;

    h1{
        font-size: 24px;
        font-weight: 1000;
    }

    span{
        font-size: 12px;
        color: grey;
        border: 1px solid grey;
        border-radius: 50%;
        padding: 2px 5px;
    }

    p{
        width: 64%;
        font-size: 15px;
        font-weight: 100;
        line-height: 1.5;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    img:nth-child(4){
        grid-column: 2;
        padding-right: 20px;
    }
}

footer{
    width: 100%;
    height: 30%;
    #container{
        width: 100%;
        height: 90%;
        display: grid;
        grid-template-columns: 25% 15% 15% 45%;
        grid-template-rows: 35% 65%;
        border-top: 2px solid black;
        border-bottom: 2px solid black;
    
        h1{
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 36px;
            font-weight: 1000;
            letter-spacing: -3px;
            position: relative;
            grid-column: 1;
            /* background-color: blue; */
        }
    
        h1::after{
            content: "model management";
            position: absolute;
            color: grey;
            bottom: 10%;
            right: 26%;
            font-size: 10px;
            font-weight: 100;
            letter-spacing: 0;
        }
    
        h1::before{
            content: "©️";
            position: absolute;
            color: grey;
            top: 25%;
            right: 26%;
            font-size: 10px;
            font-weight: 100;
            letter-spacing: 0;
        }
    
        h2{
            display: flex;
            justify-content: center;
            padding-top: 15px;
            border-right: 2px solid black;
            font-size: 16px;
            font-weight: 100;
            grid-row: 1/3;
            grid-column: 2;
        }

        h2:nth-child(3){
            grid-column: 3;
        }

        h2:nth-child(4){
            padding-left: 60px;
            justify-content: flex-start;
            border-right: none;
            border-bottom: 2px solid black;
            grid-row: 1;
            grid-column: 4;
        }

        #contact-us{
            grid-column: 4;
            color: rgba(0, 0, 0, 0.8);
            padding: 15px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            p{
                font-size: 12px;
            }
        }
    }
}