/* NAVBAR SECTION */

.v-navbar {
    background-color: #2b1066;
    width: 140px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 30px;
    padding-bottom: 10px;
    justify-content: flex-start;
    transform: translatex(-85%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
}

.v-navbar ul {
    color: rgb(210, 183, 30);
    margin-left: 3px;
    list-style-type: none;
    padding: 10px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.v-navbar li {
    background-color: #2b1066;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    padding: 4px 4px;
    overflow: hidden;
    font-size: 15px;
    align-items: center;
    max-height: 26px;
    transition: scale 0.3s ease-in-out, color 0.3s ease-in-out;
}

.v-navbar a {
    background-color: #2b1066;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    padding: 4px 4px;
    overflow: hidden;
    font-size: 15px;
    align-items: center;
    max-height: 26px;
    transition: scale 0.3s ease-in-out, color 0.3s ease-in-out;
}
.v-navbar .li-cur {
    background-color: #2b1066;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    padding: 4px 4px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    max-height: 26px;
    transition: scale 0.3s ease-in-out, color 0.3s ease-in-out;
}

.v-navbar li:hover {
    background-color: #301075;
    color: rgb(228, 156, 21);
    scale: 1.2;
    transition: scale 0.2s ease-in-out;
}

.v-navbar.showNavbar {
    transform: translatex(0);
}


.nav-button {
    background-color: #2b106600;
    color: rgb(210, 183, 30);
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 3px;
    transition: color 0.2s ease-in-out;
}

.nav-button:hover {
    color: rgb(228, 156, 21);
    scale: 1.05;
    transition: color 0.2s ease-in-out;
}

/* NAVBAR SECTION END*/

/*Main Section*/


.main-content {
    transition: 0.4s ease-in-out;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
}

.v-navbar.showNavbar~.main-content {
    margin-left: 150px;
    transition: 0.4s ease-in-out;
}

.container {
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.container h1 span:nth-child(1){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(2){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(3){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(4){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(5){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(6){
    animation-delay: 0.1s;
}
.container h1 span:nth-child(7){
    animation-delay: 0.1s;
}

.g-container {
    display: grid;
    grid-template-rows: repeat(7, 170px);
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.g-box-1 {
    grid-row: 1/3;
    grid-column: 1/4;
    padding: 20px;
}

.g-box-2 {
    grid-row: 1/3;
    grid-column: 8/-6;
    padding: 20px;
}

.g-box-3 {
    grid-row: 3/5;
    grid-column: 1/6;
    padding: 20px;
}

.g-box-4 {
    grid-row: 3/7;
    grid-column: 6/8;
    padding: 20px;
}

.g-box-5 {
    grid-row: 5/7;
    grid-column: 4/6;
    padding: 20px;
}

.g-box-6 {
    grid-row: 5/7;
    grid-column: 1/4;
    padding: 20px;
}

.g-box-prof {
    grid-row: 1/6;
    grid-column: 1/2;
    padding: 20px;
}
.g-box-bio {
    grid-row: 1/6;
    grid-column: 3/8;
    padding: 20px;
}

.pro-container{
    display: grid;
    grid-template-rows: repeat(1, 480px);
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.pro-grid-1{
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 20px;
}
.pro-grid-2{
    grid-row: 1/2;
    grid-column: 2/3;
    padding: 20px;
}





@media (max-width : 1750px) {
    .g-container {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;

    }

    .g-box-1,
    .g-box-2,
    .g-box-3,
    .g-box-4,
    .g-box-5,
    .g-box-6, 
    .g-box-prof, 
    .g-box-bio {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        padding: 12px;
        box-sizing: border-box;

    }
}

@media (max-width : 1750px) {
    .pro-container {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 10px;
    }

    .pro-grid-1,
    .pro-grid-2{
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        padding: 12px;
        box-sizing: border-box;

    }
}


/*Main Section END*/