@import"https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap";:root{--font-base:"DM Sans",sans-serif;--lightGrayColor:#e4e4e4;--grayColor:#6d6868;--brown-color:#46364a;--whiteColor:#fff;--darkBgColor:#1c1d31;--darkDialogColor:#333446;--darkPrimaryTextColor:#b6b6b6;--accentColor:#ff5a5f;--lightAccentColor:#e7696d}*{box-sizing:border-box;padding:0;margin:0;scroll-behavior:smooth}body{font-size:1rem;overflow-x:hidden}.app,body{font-family:var(--font-base);background-color:var(--darkBgColor);color:var(--darkPrimaryTextColor)}.app__flex{display:flex;justify-content:center;align-items:center}.flex__row{display:flex;flex-direction:row}@media screen and (max-width:768px){.flex__row{flex-direction:column}}.spacer{width:10rem}@media screen and (max-width:768px){.spacer{width:0;height:2rem}}p{font-size:1.15rem;font-weight:400;color:var(--darkPrimaryTextColor);line-height:1.5}@media screen and (min-width:1600px){p{font-size:1.25rem}}@media screen and (max-width:768px){p{font-size:1rem}}h2{font-size:2rem;font-weight:700;color:var(--darkPrimaryTextColor);line-height:1.5}@media screen and (min-width:1600px){h2{font-size:2.25rem}}@media screen and (max-width:768px){h2{font-size:1.75rem}}h3{font-size:1.5rem;font-weight:700;color:var(--darkPrimaryTextColor);line-height:1.5}@media screen and (min-width:1600px){h3{font-size:1.8rem}}@media screen and (max-width:768px){h3{font-size:1.25rem}}.app__container{display:flex;flex-direction:row;overflow:hidden}.app__wrapper{flex:1 1;width:100%;min-height:100vh;flex-direction:column;padding:4rem 2rem}@media screen and (max-width:567px){.app__wrapper{padding:4rem 1rem 2rem}}.outlined-btn{display:flex;flex-direction:row;align-items:center;justify-content:center;text-decoration:none;outline:none;background-color:transparent;color:var(--accentColor);border:2px solid var(--accentColor);border-radius:2rem;padding:.5rem 1.5rem;font-size:1.1rem;text-transform:capitalize;font-weight:700;cursor:pointer;transition:all .25s ease-in-out}.outlined-btn svg{margin-right:.5rem}.outlined-btn:hover{background-color:var(--accentColor);color:var(--whiteColor)}@media screen and (min-width:1600px){.outlined-btn{font-size:1.25rem}}@media screen and (max-width:768px){.outlined-btn{font-size:1rem}}.text-btn{display:flex;flex-direction:row;align-items:center;justify-content:center;text-decoration:none;outline:none;background-color:transparent;color:var(--accentColor);border:none;font-size:1.1rem;text-transform:capitalize;font-weight:700;cursor:pointer;transition:all .25s ease-in-out}.text-btn svg{margin-right:.5rem}.text-btn:hover{color:var(--whiteColor)}@media screen and (min-width:1600px){.text-btn{font-size:1.25rem}}@media screen and (max-width:768px){.text-btn{font-size:1rem}}.filled-btn{display:flex;flex-direction:row;align-items:center;justify-content:center;text-decoration:none;outline:none;background-color:var(--accentColor);color:var(--whiteColor);border:2px solid var(--accentColor);border-radius:2rem;padding:.5rem 1.5rem;font-size:1.1rem;text-transform:capitalize;font-weight:700;cursor:pointer;transition:all .25s ease-in-out}.filled-btn svg{margin-right:.5rem}.filled-btn:hover{background-color:transparent;border:2px solid var(--accentColor);color:var(--accentColor)}@media screen and (min-width:1600px){.filled-btn{font-size:1.25rem}}@media screen and (max-width:768px){.filled-btn{font-size:1rem}}.app__navigation{position:fixed;top:calc(50% - 3rem);right:1.5rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.app__navigation .app__navigation-dot{width:.2rem;height:1.5rem;background-color:var(--darkDialogColor);margin:.5rem;transition:all .2s ease-in-out}.app__navigation .app__navigation-dot a{position:absolute;opacity:0}.app__navigation .app__navigation-dot:hover{background-color:var(--whiteColor)}@media screen and (min-width:1600px){.app__navigation .app__navigation-dot{height:2rem}}@media screen and (max-width:768px){.app__navigation .app__navigation-dot{height:1rem}}.app__navigation .active{background-color:var(--whiteColor)}@media screen and (max-width:768px){.app__navigation{right:.5rem}}.loading{display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.loading .loading-spinner-1{position:absolute;-webkit-animation:loadingRotate .6s linear infinite;animation:loadingRotate .6s linear infinite}.loading .loading-spinner-2{position:absolute;-webkit-animation:loadingRotate 1s linear infinite;animation:loadingRotate 1s linear infinite}@-webkit-keyframes loadingRotate{to{transform:rotate(1turn)}}@keyframes loadingRotate{to{transform:rotate(1turn)}}.app__navbar{width:100%;background-color:var(--darkBgColor);position:fixed;z-index:999;display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem}.scrolled{background-color:var(--darkDialogColor);box-shadow:0 0 20px rgba(0,0,0,.1)}.app__navbar-logo{display:flex;justify-content:flex-start;align-items:center;text-decoration:none}.app__navbar-logo p{color:var(--whiteColor);font-size:2.5rem;font-weight:700}@media screen and (max-width:768px){.app__navbar-logo p{font-size:2rem}}.app__navbar-links{flex:1 1;display:flex;justify-content:flex-end;align-items:center;list-style:none}.app__navbar-links li{margin:0 1rem;cursor:pointer;flex-direction:column}.app__navbar-links li a{color:var(--darkPrimaryTextColor);text-decoration:none;flex-direction:column;text-transform:uppercase;font-size:1rem;font-weight:600;transition:border-bottom .1s ease-in-out}.app__navbar-links li:hover{border-bottom:2px solid var(--darkPrimaryTextColor)}.app__navbar-links .active{border-bottom:2px solid var(--whiteColor)}.app__navbar-links .active a{color:var(--whiteColor)}@media screen and (max-width:768px){.app__navbar-links{display:none}}.app__navbar-menu{width:3rem;height:3rem;border-radius:50%;position:relative;z-index:9;display:flex;justify-content:center;align-items:center;transition:all .3s ease-in-out}.app__navbar-menu svg{width:75%;height:75%;aspect-ratio:1;-o-object-fit:cover;object-fit:cover;color:var(--darkPrimaryTextColor);cursor:pointer}.app__navbar-menu .app__navbar-mobile{position:fixed;background-color:var(--darkDialogColor);top:calc(100% + 6rem);bottom:0;right:0;left:0;opacity:1;z-index:0;visibility:hidden;opacity:0;padding:1rem;width:100%;height:100vh;display:flex;justify-content:flex-end;align-items:flex-end;flex-direction:column;transition:all .5s ease-in-out}.app__navbar-menu .app__navbar-mobile div{width:3rem;height:3rem;background-color:var(--darkDialogColor);position:relative;cursor:pointer;display:flex;justify-content:center;align-items:center;margin:.5rem 1rem}.app__navbar-menu .app__navbar-mobile div svg{width:80%;height:80%;aspect-ratio:1;-o-object-fit:cover;object-fit:cover;color:var(--darkPrimaryTextColor)}.app__navbar-menu .app__navbar-mobile div:hover{background-color:var(--darkBgColor);border-radius:50%}.app__navbar-menu .app__navbar-mobile ul{list-style:none;margin:0;padding:0;height:100%;width:100%;display:flex;justify-content:flex-start;align-items:flex-start;flex-direction:column}.app__navbar-menu .app__navbar-mobile ul li{margin:1rem;cursor:pointer}.app__navbar-menu .app__navbar-mobile ul li a{color:var(--darkPrimaryTextColor);text-decoration:none;font-size:16px;text-transform:uppercase;font-weight:600;transition:all .25s ease-in-out}.app__navbar-menu .app__navbar-mobile ul li:hover{border-bottom:2px solid var(--darkPrimaryTextColor)}.app__navbar-menu .app__navbar-mobile ul .active{border-bottom:2px solid var(--whiteColor)}.app__navbar-menu .app__navbar-mobile ul .active a{color:var(--whiteColor)}@media screen and (min-width:768px){.app__navbar-menu .app__navbar-mobile{display:none}}.app__navbar-menu .app__navbar-mobile-active{top:0;z-index:999;opacity:1;visibility:visible}@media screen and (min-width:768px){.app__navbar-menu{display:none}}.home{position:relative}.app__hero{width:100%;height:100%;flex-direction:column;padding:2rem;transition:all .3s ease-in-out}.app__hero .p-text{font-size:1.25rem;text-align:center}.app__hero .head-text{font-size:4rem;font-weight:800;text-align:center;color:var(--whiteColor);text-transform:capitalize;margin:.25rem 0}.app__hero .sub-text{font-size:1rem;font-weight:500;text-align:center;color:var(--accentColor)}.app__hero .detail-text{margin:1.5rem 0 2rem;text-align:center}.app__hero .detail-text span{font-weight:700;color:var(--lightGrayColor)}.app__hero .fav__techs{margin-top:4rem;display:flex;flex-direction:row;justify-content:space-between}.app__hero .fav__techs .fav__tech{width:8rem;height:8rem;margin:0 1rem;overflow:hidden}.app__hero .fav__techs .fav__tech img{width:100%;height:auto;aspect-ratio:1;opacity:.5;-o-object-fit:cover;object-fit:cover}@media screen and (min-width:1600px){.app__hero .p-text{font-size:1.3rem}.app__hero .head-text{font-size:5rem}.app__hero .sub-text{font-size:1.15rem}.app__hero .fav__techs .fav__tech{width:10rem;height:10rem}}@media screen and (max-width:768px){.app__hero .p-text{font-size:1.2rem}.app__hero .head-text{font-size:3rem}.app__hero .sub-text{font-size:.9rem}.app__hero .fav__techs{display:none}}.app__about{position:relative;flex:1 1;width:100%;flex-direction:column;padding:2rem;transition:all .3s ease-in-out}.app__about .flex__row{align-items:flex-start;justify-content:space-between}.app__about .flex__row .profile__img{position:relative;display:flex;align-items:center;justify-content:center;background-color:var(--darkDialogColor);min-width:15rem;min-height:15rem;max-width:30rem;max-height:30rem;border-radius:50%;border:1px solid var(--lightGrayColor);overflow:hidden;transition:all .3s ease-in-out}.app__about .flex__row .profile__img img{width:100%;height:100%;aspect-ratio:1;-o-object-fit:contain;object-fit:contain}.app__about .flex__row .details{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.app__about .flex__row .details .head-text{color:var(--whiteColor);margin-bottom:.5rem}@media screen and (min-width:1600px){.app__about .flex__row .details .head-text{font-size:2rem}}@media screen and (max-width:768px){.app__about .flex__row .details .head-text{font-size:1.5rem}}.app__about .flex__row .details .p-text{margin:.5rem 0;color:var(--lightGrayColor);display:flex;flex-direction:row;justify-content:center;align-items:flex-start}.app__about .flex__row .details .p-text span{color:var(--whiteColor);margin-right:.5rem}.app__about .flex__row .details .p-text-head{margin:1rem 0}.app__about .flex__row .details .preferred__skills{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.app__about .flex__row .details .preferred__skills .profile__skill{flex:0 0 20rem;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;color:var(--lightGrayColor)}.app__about .flex__row .details .preferred__skills .profile__skill span{width:1rem;height:1rem;color:var(--accentColor);margin-right:.5rem}.app__projects{width:100%;flex-direction:column;padding:2rem}.app__projects .project__works{display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;margin-top:2rem}.app__projects .project__works .project__work{display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between;transition:all .3s ease-in-out;margin-bottom:3rem}.app__projects .project__works .project__work .project__work__img{background-color:var(--darkDialogColor);min-width:20rem;width:25rem;height:12rem;border-radius:.5rem;overflow:hidden;position:relative}.app__projects .project__works .project__work .project__work__details{margin-left:2rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start}.app__projects .project__works .project__work .project__work__details .project__work__title{color:var(--whiteColor)}.app__projects .project__works .project__work .project__work__details .project__work__desc{margin:1rem 0 0}.app__projects .project__works .project__work .project__work__details a{margin:1rem 0}.app__projects .project__works .project__work .project__work__details .project__work__tags{display:flex;flex-direction:row;flex-wrap:wrap}.app__projects .project__works .project__work .project__work__details .project__work__tags .project__work__tag{flex:0 0 10rem;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;color:var(--lightGrayColor)}.app__projects .project__works .project__work .project__work__details .project__work__tags .project__work__tag span{width:1rem;height:1rem;color:var(--accentColor);margin-right:.5rem}@media screen and (max-width:768px){.app__projects .project__works .project__work{flex-direction:column;align-items:center}.app__projects .project__works .project__work .project__work__details{margin-left:0;margin-top:1rem}}.app__projects .project__works .project__work:last-child{margin-bottom:0}.app__skills{position:relative;width:100%;flex-direction:column;padding:2rem}.app__skills .app__experiences{width:100%;margin-top:2rem;position:relative}.app__skills .app__experiences .app__experiences__item{margin-bottom:2rem;position:relative;padding-left:1.5rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.app__skills .app__experiences .app__experiences__item:before{content:"";position:absolute;top:0;left:0;width:.25rem;height:100%;background-color:var(--whiteColor)}.app__skills .app__experiences .app__experiences__item .app__experiences__item__title{color:var(--lightGrayColor)}.app__skills .app__experiences .app__experiences__item .app__experiences__item__company{font-weight:500;margin:.25rem 0}.app__skills .app__experiences .app__experiences__item .app__experiences__item__duration{margin:.25rem 0}.app__skills .app__experiences .app__experiences__item .app__experiences__item__description{margin:1rem 0}.app__skills .app__experiences .app__experiences__item .app__experiences__item__tags{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:1rem}.app__skills .app__experiences .app__experiences__item .app__experiences__item__tags .app__experiences__item__tag{flex:0 0 10rem;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;color:var(--lightGrayColor)}.app__skills .app__experiences .app__experiences__item .app__experiences__item__tags .app__experiences__item__tag span{width:1rem;height:1rem;color:var(--accentColor);margin-right:.5rem}.app__skills .app__experiences .app__experiences__item:last-child{margin-bottom:0}.app__footer{width:100%;flex-direction:column;padding:2rem}.app__footer .head-text{margin-bottom:3rem;display:flex;flex-direction:row;align-items:center;justify-content:center}.app__footer .head-text svg{width:1.5srem;height:1.5rem;margin-left:.5rem}.app__footer .contact__info{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;margin-bottom:3rem;transition:all .3s ease-in-out}.app__footer .contact__info .email{display:flex;align-items:center;justify-content:flex-start;font-size:1.2rem;margin-top:.5rem;color:var(--whiteColor)}.app__footer .contact__info .email svg{width:1.5rem;height:1.5rem}.app__footer .contact__info .email a{text-decoration:none;color:var(--whiteColor);margin-left:1rem}.app__footer .contact__info .email a:hover{color:var(--grayColor)}.app__footer .app__Social{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.app__footer .app__Social .app__social__links{display:flex;flex-direction:row;justify-content:space-between;align-items:center;margin-top:1rem}.app__footer .app__Social .app__social__links a{color:var(--whiteColor);margin:0 1rem;font-size:2rem;text-decoration:none;transition:all .3s ease-in-out}.app__footer .app__Social .app__social__links a:hover{transform:scale(1.2)}