/* .main_container{
    min-width: fit-content;
} */

/* Home Section */
.home{
    min-height: 100vh;
    /* height: 300px; */
    display: flex;
    color: var(--text-bg-black-900);

} 

/* .main_content{
    padding-left: 270px;
} */



.section{
    background: var(--bg-black-900);
    min-height: 100vh;
    display: block;
    position: fixed;
    left:270px;
    padding: 0 30px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    transition: all 0.5s ease;
}

.section.active{
    z-index: 2;
    opacity: 1;
    
}



.animate_content_out{
	animation: animate_out 1s ease;}

@keyframes animate_out{
	30%{transform: scale(1, 0.02);}
	60%{ 
		transform: scale(0.2, 0.002);
        opacity: 1;
		}
	80%{
		transform: scale(0.2, 0.002);
        opacity: 0;
		}
	100%{
		transform: scale(0, 0);
    opacity: 1;}
}

.animate_content_in{
	animation: animate_in 1s ease;}

@keyframes animate_in{
	0%{transform: scale(0, 0);
        opacity: 0;
        }
	30%{
		transform: scale(0.2, 0.002);
        opacity: 1;
		}
	50%{
		transform: scale(1, 0.002);
        opacity: 1;
		}
	100%{
		transform: scale(1, 1);}
}

.fadeIn{
	z-index: 10;
}
	




















.container{
    max-width: 1100px;
    width: 100%;
    /* backgrosund:red; */
    margin: auto;
    margin-left: 2vw;
    
}


.row{
    display: flex;
    flex-wrap:wrap;
    margin-left:-15px;
    margin-right:-15px;
    position: relative;

}

.home .home-info{
    flex: 0 0 60%;
    max-width: 60%;
    /* padding-right: 3%; */
}

.home .home-info .greet{
    font-size: 24px;
    margin: 15px 0;
}

.home .home-info .greet span{
    font-family:'Clicker Script',cursive;
    font-size: 30px;
    font-weight: 700;
    /* font-weight: bolder; */
    color: var(--skin-color);
    /* background-color: yellow; */
}

.home .home-info .profession{
    font-size: 22px;
    margin: 15px 0;
}

.home .home-info .profession span{
    color: var(--skin-color);
}

.home .home-info p{
    margin-bottom: 70px;
    font-size: 16px;
    columns: var(--text-black-700);
}

.btn{
    font-size: 12px;
    font-weight: 500;
    padding: 12px 35px;
    background: var(--skin-color);
    color: white;
    border-radius: 40px;
    border: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn:hover{
    transform: scale(1.1);
}
.home .home-image{
    flex: 0 0 40%;
    max-width: 40%;
    /* height: 230px; */
    /* background-color: green; */
    text-align: center;
    position: relative;
    display: flex;
}

.home .home-image .profile_image::before{
    content: "";
    position: absolute;
    height: 60px;
    border-top: 8px solid var(--skin-color);
    border-left: 8px solid var(--skin-color);
    width: 80px;
    left: 10px;
    top: -5vh;
}
.home .home-image .profile_image::after{
    content: "";
    position: absolute;
    height: 60px;
    border-bottom: 8px solid var(--skin-color);
    border-right: 8px solid var(--skin-color);
    width: 80px;
    right: 10px;
    bottom: -5vh;
}

.home .home-image .my_logo{
    justify-content: center;
    /* text-align: center; */
    margin: auto;
    border-radius: 15px;
    height: 100%;
    max-height: 350px;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(14, 13, 20, 0.15);
}

.home .home-image .my_logo.dark{
    box-shadow: 0 0 20px rgba(246, 246, 250, 0.836);
}

.home .home-image .extra{
    flex-grow: 1;
    flex-shrink: 3;
    /* background-color: blue; */
}

.home .home-image .profile_image{
    flex-grow: 3;
    flex-shrink: 1;
    position: relative;
    /* text-align: center; */
    display: flex;
    /* background-color: red; */
}
