/* FONTS 
1. font-family: 'Aquene Demo';
2. font-family: "Open Sans", serif;
*/



::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 4px;
    border: 3px solid #018771;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #585858;
    background: #018771;
}
body{ 
    background: url(../images/home_bg.png) !important;
    background-size: 100% 100% !important;
    font-family: var(--secondary-font) !important;
    color: #FFFFFF  !important;
    background-attachment: fixed !important;
}
body button{
    border: none;
    outline: none;
    cursor: pointer; 
    background: transparent;
}
body h1,body h2,body h3,body h4,body h5,body h6,body p{
    padding: 0px;
    margin: 0px;
}
body a{
    text-decoration:none;
    cursor: pointer; 
    color: #3BBA9C;
    font-size: 14px; 
}
body a:hover{
	text-decoration:none;
    color: #fff; 
}
body ul{
	padding:0px;
	margin:0px;
    list-style-type: none;
}
body li{
    list-style-type: none;
}
.img-fluid{
    margin: auto !important;
}
:root{
    --primery-font:'Aquene Demo';
    --secondary-font:"Open Sans", serif;
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
/******=======  TOP PART END  =======******/

/******=======  HADER PART START  =======******/
.header_part{
    padding: 15px 0px 0px;
    position: relative;
}
.navbar_brand{
    width: 100%;
    max-width: 155px;
    display: inline-block;
}
.main_menu{


}
.main_menu .nav{
    justify-content: center;
}
.main_menu .nav-link{
    font-size: 14px;
    font-weight: 500;
    color: #707793 !important;
    text-transform: uppercase;
    margin: 0px 2px;
    outline: none !important;
}
.main_menu .nav-link i{
    display: none;
}
.main_menu .nav-link.active{
    background-color: transparent !important;
    color: #fff !important;
}
.main_menu .nav-link.active:before{
    content: "";
    position: absolute;
    background: #00bb9d;
    border-radius: 0px;
    height: 2px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    width: 100%;
    left: 0px;
}
.download_but{
    text-align: right;

}
.button{
    background: #3BBA9C;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 3px;
    padding: 10px 25px !important;
    border: none;
    outline: none;
    position: relative;
}
.button:after{
    content: "";
    width: 0%;
    height: 100%;
    background: #515464;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0px;
    border-radius: 2px;
}
.button:hover::after{
    width: 100%;
    right: auto;
    left: 0;
}
.button span{
    position: relative;
    z-index: 1;
}
.button span{


}
/******=======  HADER PART END  =======******/

/******=======  HOME PART START  =======******/
.main_div{
    padding: 50px 0px 30px;
    display: flex;
    align-items: center;
    min-height: 87vh;
}
.main_head{


}
.main_head h1{
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    padding: 0px 0px 8px 0px;
    letter-spacing: 0.2px;
}
.main_head h2{
    font-family: var(--primery-font);
    font-size: 112px;
    line-height: 102px;
    color: #3BBA9C;
    padding: 5px 0px 15px 0px;
}
.main_head h2 span{
    height: 100px;
    background: linear-gradient(to right, #F9EE43, #FD495E);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.type-text {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.type-text.show {
    opacity: 1;
}
.main_head p{
    font-size: 13px;
    font-weight: 400;
    color: #e9e7e7;
    line-height: 23px;
    word-spacing: 2px;
    width: 87%;
    text-align: justify;
}
.main_head p span{
    color: #3BBA9C;
    font-weight: 600;
}
.sub_head {
    margin: 0px 0px 30px 0px;
    position: relative;
}
.sub_head h2{
    font-family: var(--primery-font);
    font-size: 46px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #F9EE43, #FD495E);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main_but{
    margin: 40px 0px 0px;
}
.banner_img{
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: -30px auto 0px;
}
.banner_img .img1{


}
.banner_img .img2{
    position: absolute;
    width: 100%;
    max-width: 50px;
    top: 54px;
    right: -13px;
    display: none;
}
.banner_img .img3{
    position: absolute;
    width: 100%;
    max-width: 140px;
    top: 12px;
    right: -56px;
    animation: rotate 28s linear infinite;
}
.banner_img .social_icon{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: fit-content;
    position: absolute;
    bottom: 25px;
    left: 8px;
}
.banner_img .social_icon .icon{
    max-width: 45px;
    width: 100%;
    margin: 6px;
    transition: 0.5s;
}
.banner_img .social_icon .icon:hover{
    transform: scale(1.1) translateY(-10px) rotate(15deg);
    transition: 0.3s;
    filter: hue-rotate(113deg) invert(1) grayscale(1);
}
.banner_img .social_icon img{


}
/******=======  HOME PART END  =======******/

/******=======  ABOUT PART START  =======******/

.about_section .sub_head p{
    width: 100%;
    text-align: justify;
}
.about_user{
    background: #22293d;
    padding: 5px 10px;
    text-align: center;
    border-radius: 10px;
}
.about_user .list{
    position: relative;
    width: 100%;
    max-width: 210px;
    margin: auto;
}
.about_user .img1{
    max-width: 210px;
}
.about_user .list1{
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    bottom: 0px;
    left: 5px;
}
.about_user .img2{
    width: 100%;
    max-width: 22px;
    transition: 0.5s;
}
.about_user .img2:hover{
    transform: scale(1.1) translateY(-10px) rotate(15deg);
    transition: 0.3s;
    filter: hue-rotate(113deg) invert(1) grayscale(1);
}
.about_user .img3{


}
.about_user .img4{


}
.about_user .about_tools {
    padding: 15px 0px 0px;
}
.about_user .about_tools h3{
    font-family: var(--primery-font);
    font-size: 15px;
    font-weight: 600;
    color: #3bba9c;
    position: relative;
    word-spacing: 6px;
    margin: 0px 0px 12px;
    letter-spacing: 2px;
    text-align: start;
}
.about_user .about_tools h5{
    position: relative;
    padding: 0px 0px 13px 0px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #707793 !important;
    text-transform: capitalize;
    transition: 0.2s;
}
.about_user .about_tools h5:hover{
    transition: 0.5s;
    color: #fff !important;
}
.about_user .about_tools h5:hover img{
    transition: 0.5s;
    filter: invert(1) brightness(8.5);
}
.about_user .about_tools h5 img{
    float: left;
    max-width: 22px;
    margin: 0px 10px 0px 0px !important
}
.about_exp{
    display: grid;
    grid-template-columns: 10fr 4fr;
    gap: 20px;
}
.about_exp .experience{
    position: relative;
    padding: 20px 12px;
    border-radius: 10px;
    background: #24293e;
}
.about_exp .experience_level{
    position: relative;
}
.about_exp .experience_level1{
    margin: 0px 0px 30px 0px;
}
.about_exp .experience_level h5{
    font-size: 17px;
    font-weight: 600;
    position: relative;
}
.about_exp .experience_level h5 img{
    max-width: 42px;
    border-radius: 5px;
    margin: 0px 7px 0px 0px !important;
    float: left;
}
.about_exp .experience_level h5 span{
    display: block;
    margin: 6px 0px 0px 0px;
    font-size: 13px;
    font-weight: 400;
    color: #cfc8c8;
}
.about_exp .experience_level h5 small{
    float: right;
    padding: 0px 0px 0px;
    font-size: 13px;
    font-weight: 400;
    color: #cfc8c8 !important; 
    position: absolute;
    top: 4px;
    right: 8px;
}
.about_exp .experience_level p{
    font-size: 13px;
    font-weight: 500;
    color: #707793 !important;
    padding: 11px 0px 0px 50px;
    line-height: 19px;
}
.about_skill{
}
.about_skill .skills{
    position: relative;
    margin: 0px 0px 0px;
}
.about_skill .skills .skill_head{
    box-shadow: #202236 3px 3px 6px 0px inset, #393b4c -3px -3px 6px 1px inset;
    padding: 14px 10px;
    width: 100%;
    border-radius: 5px;
    margin: 0px 0px 12px;
    font-size: 15px;
    font-weight: 500;
    color: #cfc8c8 !important;
    text-transform: uppercase;
}
.about_skill .skills .skill_head i{
    position: absolute;
    right: 8px;
    top: 17px;
    font-size: 13px;
    font-weight: 800;
    color: #6e7792;
    transition: 0.2s;
}
.about_skill .skills .skill_head.active i{
    color: #fff;
    transition: 0.5s;
    transform: rotate(226deg);
}
.about_skill .skills .skill_data{
    font-size: 13px;
    font-weight: 300;
    color: #ffffff !important;
    padding: 10px;
    line-height: 20px;
    width: 100%;
    text-align: justify;
    background: #3d445b;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    display: none;
}
/******=======  ABOUT PART END  =======******/

/******=======  PORTFOLIO PART START  =======******/
.portfolio_section {
}
.port_tab{
    justify-content: space-between;
    margin: 0px 0px 30px 0px !important;
}
.port_tab .nav-link{
    font-size: 15px;
    font-weight: 500;
    color: #707793 !important;
    text-transform: capitalize;
    box-shadow: rgb(45 48 70) 3px 3px 6px 0px inset, rgb(28 30 44) -3px -3px 6px 1px inset;
    padding: 12px 20px;
    width: 100%;
    max-width: 180px;
    border: none !important;
    outline: none !important;
}
.port_tab .nav-link.active{
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgb(0 0 0 / 0%) 0px 32px 16px !important;
    color: #fff !important;
    background: #00bb9d !important;
}
.project{
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr;
    gap: 8px;
}
.project1{
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr;
    gap: 8px;
}
.project .project_list{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 123px !important;
    border-radius: 5px;
}
.project .project_list:hover .img1{
    transition: 0.5s;
    transform: rotate(4deg) scale(1.1);
}
.project .project_list .img1{
    transition: 0.7s;
}
.project .project_list:hover .project_open{
    transform: rotate(0deg);
    transition: 0.5s;
    left: 0;
}
.project .project_open{
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    width: 90%;
    height: 85%;
    align-items: center;
    justify-content: center;
    background: #2d304678;
    backdrop-filter: blur(2px);
    color: #ffd75a;
    font-size: 27px;
    border-radius: 5px;
    transform: rotate(-120deg);
    transition: 0.5s;
    left: -420px;
}
.project .project_open i:hover{
    transition: 0.5s;
    color: #fff;
}
/******=======  RESPONSIVE PART END  =======******/

/******=======  SUPPORT PART END  =======******/
.support_section{
    position: relative;
}
.sub_head p{
    font-size: 13px;
    font-weight: 500;
    color: #707793 !important;
    padding: 10px 0px 0px;
    width: 63%;
    line-height: 22px;
    word-spacing: 1px;
    margin: auto;
}
.sub_head p span{
    color: #dfdfe0;
}
.support{
    

}
.support_details{
    box-shadow: #202236 3px 3px 6px 0px inset, #393b4c -3px -3px 6px 1px inset;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
}
.support_details h3{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}
.support_details h3 i{
    background: #3BBA9C;
    width: 38px;
    height: 38px;
    display: flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2E3047;
    margin: 0px 12px 0px 0px;
}
.support_details h3 a{
    margin: 0px 0px 0px 0px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}
.support_section .img1{
    position: absolute;
    right: 0px;
    top: 0px;
    max-width: 150px;
    width: 100%;
    animation: rotate 28s linear infinite;

}
/******=======  SUPPORT PART END  =======******/

.container{
    max-width: 1140px !important;
}

@media (min-width:1399px){
    .banner_img{
        max-width: 72%;
    }
    .banner_img .social_icon{
        bottom: 15px;
    }
}
@media (max-width:1199px){
    .banner_img .img3 {
        max-width: 37px;
        top: 62px;
        right: 0px;
    }
    .port_tab .nav-link {
        padding: 12px 10px;
        max-width: 160px;
    }

}
@media (max-width:991px){
    .main_div {
        padding: 50px 0px 50px;
        min-height: 90vh;
    }
    .main_menu .nav-link {
        margin: 0px 0px;
        padding: 8px 15px;
    }
    .home_section .row{
        flex-direction: column-reverse;
    }
    /****=====  BANNER PART =====*****/
    .banner_img .img3 {
        max-width: 140px;
        top: 11px;
        right: -54px;
    }
    .banner_img {
        position: relative;
        width: 100%;
        max-width: 430px;
        margin: 0px auto 40px;
    }
    .main_head {
        text-align: center;
    }
    .main_head p {
        width: 100%;
        margin: auto;
        text-align: center;
    }
    /****=====  ABOUT PART =====*****/
    .about_user {
        padding: 20px;
        display: grid;
        grid-template-columns: 3fr 2fr;
    }
    .about_user .about_tools {
        padding: 0px 0px 0px;
        grid-row: 1;
    }
    .about_user .list {
        max-width: 245px;
        margin-left: auto;
    }
    .about_user .img1 {
        max-width: 100%;
        width: 100%;
    }
    .about_user .list1 {
        bottom: 7px;
    }
    .about_user .about_tools h3 {
        margin: 0px 0px 15px;
    }
    .about_exp {
        display: block;
    }
    .about_skill {
        margin: 30px 0px 0px;
    }
    .about_skill {
        margin: 30px 0px 0px;
        text-align: center;
    }
    .about_skill .skills {
        margin: 0px 4px 0px;
        width: 48%;
        display: inline-block;
        text-align: start;
    }
    /****=====  PORT PART =====*****/
    .port_tab .nav-link {
        max-width: 32%;
        margin: 10px 0px 0px;
    }
    .project {
        grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
    }
    .project .project_list {
        max-height: 100px !important;
    }
    /****=====  SUPPORT PART =====*****/
    .sub_head p {
        width: 100%;
    }
    .support_section  .d-sm-flex {
        flex-direction: column;
    }
    .support_section .img1{
        display: none;
    }
}

@media (max-width:767px){
        /****=====  MAIL PART =====*****/
    .main_div {
        padding: 50px 0px 125px;
    }
    .main_menu .nav {
        justify-content: space-between;
        padding: 0px 25px;
    }
    .mobile_menu{
        position: fixed;
        bottom: 0px;
        background: #1d1e22;
        padding: 8px 10px;
        border-radius: 35px 35px 0px 0px;
        z-index: 111;
    }
    .main_menu .nav-link i {
        display: block !important;
    }
    .main_menu .nav-link span{
        font-size: 11px;
        font-weight: 500;
        text-align: center;
    }
    .main_menu .nav-link{
        padding: 2px 15px;
    }
    .main_menu .nav-link i{
        padding: 8px 15px;
        transition: 0.7s;
        border-radius: 50% !important;
        width: 100%;
        max-width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #fff;
        margin: auto;
    }
    .main_menu .nav-link.active i{
        background: linear-gradient(45deg, #fb9b61, #ff8763, #e34059) !important;
        transition: 0.7s;
        color: #fff;
    }
    .main_menu .nav-link.active:before{
        content: unset
    }
    /****=====  BANNER PART =====*****/
    .banner_img {
        position: relative;
        width: 100%;
        max-width: 268px;
    }
    .banner_img .social_icon {
        bottom: 1px;
        left: 8px;
        max-width: 28px;
    }
    .banner_img .img3 {
        max-width: 97px;
        top: 1px;
        right: -40px;
    }
    /****=====  PROJECT PART =====*****/
    .project .project_list {
        max-height: 78px !important;
    }

}
@media (max-width:576px){
    /****=====  NAVBAR PART =====*****/
    .main_div {
        overflow: hidden;
    }
    .navbar_brand {
        max-width: 100px;
    }
    .button {
        font-size: 12px !important;
        padding: 8px 18px !important;
    }
    .banner_img{
        margin: 0px auto 25px;
    }
    .main_head h1 {
        padding: 0px 0px 0px 0px;
    }
    .main_head h2{
        font-size: 60px;
        padding: 0px 0px 0px 0px;
        margin: -10px 0px -8px 0px;
    }
    .main_head h2 span {
        height: 83px;
        margin: 0px 0px -20px 0px;
    }
    .main_menu .nav {
        padding: 0px 0px;
    }
    .main_but {
        margin: 25px 0px 0px;
    }
    .banner_img .img3 {
        max-width: 80px;
        top: 9px;
        right: -32px;
    }
    .home_section  .button {
        padding: 10px 40px !important;
    }
    /****=====  ABOUT PART =====*****/
    .about_user {
        padding: 10px;
        display: block;
        margin: 0px 0px 25px 0px;
    }
    .about_user .list {
        max-width: 245px;
        margin: 0px auto 25px;
    }
    .about_exp .experience_level h5 {
        font-size: 13px;
    }
    .about_exp .experience_level h5 span {
        margin: 6px 0px 0px 0px;
        font-size: 11px;
    }
    .about_exp .experience_level h5 img {
        max-width: 35px;
    }
    .about_exp .experience_level p {
        font-size: 13px;
        padding: 11px 0px 0px 0px;
    }
    .about_exp .experience_level p {
        font-size: 11px;
        padding: 26px 0px 0px 0px;
    }
    .sub_head {
        margin: 0px 0px 20px 0px;
    }
    .sub_head p {
        font-size: 11px;
        line-height: 20px;
    }
    .about_skill {
        margin: 18px 0px 0px;
    }
    .about_skill .skills .skill_head{
        margin: 0px 0px 5px;
    }
    .about_skill .skills {
        width: 100%;
    }
    .about_skill .skills .skill_head {
        font-size: 13px;
    }
    .about_skill .skills .skill_data {
        font-size: 11px;
    }
    .about_user .about_tools h3{
        text-align: center;
    }
    .about_user .about_tools h5 {
        width: 100%;
        max-width: 155px;
        margin: auto;
    }
    .about_exp .experience_level h5 small {
        position: absolute;
        bottom: -18px;
        left: 40px;
        top: unset;
        font-size: 10px;
    }
    /****=====  POSRt PART =====*****/
    .port_tab .nav-link {
        max-width: 49%;
        font-size: 13px;
    }
    .project {
        grid-template-columns: 2fr 2fr 2fr 2fr;
        gap: 5px;
    }
    .project .project_list {
        max-height: 70px !important;
    }
    /****=====  SUPPORT PART =====*****/
    .support_details {
        box-shadow: #202236 3px 3px 6px 0px inset, #393b4c -3px -3px 6px 1px inset;
        padding: 12px;
    }
    .support_details h3 i {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .support_details h3 a {
        font-size: 12px;
    }
    .support_details h3 {
        font-size: 12px;
    }

}





