
:root {
    --text-color: #fff;
    --primary-color: #7392DE;
    --secondary-color: #9E82E8;
    --additional-color: #1B191C;
    --font-size: 15px;
    --title-size: 18px;
}

@font-face {
    font-family: comfortaa;
    src: url("../fonts/comfortaa.eot");
    src: url("../fonts/comfortaa.woff") format("woff"),
    url("../fonts/comfortaa.woff2") format("woff2"),
    url("../fonts/comfortaa.ttf") format("truetype");
}
* {
    font-family: 'comfortaa';
    color: #fff;
    text-align: left;
}


html,
body {
    font-family: 'comfortaa';
    font-size: 15px;
    background: #110E11;
    /*direction: rtl;*/
    text-align: left;
    overflow-x: hidden;
    line-height: 28px;
    position: relative;
}

html{
    scroll-behavior: smooth;
}

a {
    color: unset;
    text-decoration: unset;
}

a:hover {
    color: unset;
}

:focus-visible{
    outline: unset;
}

.container-fluid{
    max-width: 1300px;
}




.cv-row{
    margin-top: 30px;
}


.Whole-cv{
    position: relative;
}



/*personal part*/



.product-section{
    position: relative;
}

.posFix {
    position: fixed;
    top: 25px;
    width: 315.66px !important;
}

.posAbs {
    position: absolute;
    bottom: 1px;
    width: 315.66px !important;
}

.aside{
    /*max-width: 306px;*/
    width: 315.66px;
    z-index: 3;
}




.Personal-info{
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-color: var(--additional-color);
    border-radius: 20px;
    border: #6a6a6a;
    /*margin-top: 70px;*/
}

.Dorsa-image{
    display: flex;
    width: 180px;
    height: 180px;
    background-color: #333333;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.Dorsa-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.my-name h1{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}


.first-part{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.cv-btn{
    margin-bottom: 20px;
}

.cv-pdf{
    background-size: 200% auto;
    background-position: left top;
    border: 2px solid #A1C4FDFF;
    color: #A1C4FDFF !important;
    padding: 6px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: fit-content;
    background-color: transparent;
}

.cv-pdf span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-image: linear-gradient(to right, #a1c4fd 0%, var(--primary-color) 51%, var(--secondary-color) 100%);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 0;
    overflow: hidden;
}

.cv-pdf:active {
    background-image: linear-gradient(to right, #a1c4fd 0%, var(--primary-color) 51%, var(--secondary-color) 100%);
}

.cv-pdf:hover {
    color: #fff !important;
    z-index: 2;
}

.cv-pdf:hover span {
    width: 225%;
    height: 562.5px;
    z-index: -1;
}


.each-contact{
    display: flex;
    align-items: center;
    gap: 6px;
    /*justify-content: flex-end;*/
}



.each-contact a, .each-contact span{
    color: #fff;
    font-size: 12px;
    display: inline-block;
    direction: ltr;
}

.each-contact:hover a, .each-contact:hover span{
    color: var(--primary-color) !important;
}


/*personal part*/





/*main part*/


.main-part{
    background-color: var(--additional-color);
    padding: 80px 20px;
    border-radius: 25px;
    /*margin-top: 20px;*/
    padding-top: 93px;
    position: relative;
    margin-bottom: 50px;
}

.swiper-brands .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-brands img {
    object-fit: contain;
    width: 100px;
    height: 88px;
}

.tab-box{
    display: flex;
    align-items: center;
    gap: 20px;
    background: #333333;
    padding: 15px 26px;
    border-radius: 0 20px 0 20px;
    width: fit-content;
    position: absolute;
    top: 0;
    right: -15px;
}


.main-title{
    position: relative;
    margin-bottom: 15px;
}

.main-title::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 70px;
    background: #7392DE;
    background: linear-gradient(90deg, rgba(115, 146, 222, 1) 30%, rgba(158, 130, 232, 1) 71%);
}

.main-title h4{
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 7px;
}

.main-text{
    margin-bottom: 40px;
}


.personal-row p{
    margin-bottom: 7px;
}

.main-text p{
    font-size: 14px;
    color: #fff;
}

.main-subtitle{
    position: relative;
    padding-left: 25px;
}

.main-subtitle h5{
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 7px;
}


.main-subtitle::before{
    content: "";
    position: absolute;
    left: 0px;
    height: 2px;
    top: 30%;
    width: 17px;
    background: #7392DE;
    background: linear-gradient(90deg, rgba(115, 146, 222, 1) 30%, rgba(158, 130, 232, 1) 71%);
}


.skill-box{
    margin-bottom: 40px;
}

.each-skill{
    min-height: 230px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
    border-radius: 16px;
    transition: .4s;
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 var(--card-box-shadow-1-y, 3px) var(--card-box-shadow-1-blur, 6px) var(--card-box-shadow-1, rgba(0, 0, 0, 0.05)), 0 var(--card-box-shadow-2-y, 8px) var(--card-box-shadow-2-blur, 15px) var(--card-box-shadow-2, rgba(0, 0, 0, 0.1));
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.each-skill:hover{
    border: 1px solid #453c4b;
    box-shadow: 0px 1px 4px 3px #685c6830;
    transition: .4s;
}

.col-skill{
    margin-bottom: 20px;
}


.skill-icon{
    margin-bottom: 10px;
}

.skill-title{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skill-text{
    font-size: 14px;
}


.each-skill::before, .each-skill::after {
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0.2;
    position: absolute;
    top: 0px;
    transition: opacity 500ms;
    width: 100%;
}

.each-skill::before {
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 3;
}

.each-skill::after {
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(231, 184, 255, 0.4), transparent 40%);
    z-index: 1;
}


.each-tool {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: .5s;
}

.tool-image{
    width: 61px;
    height: 61px;
}

.tool-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.each-tool:hover {
    gap: 1px;
    transition: .5s;
}
.each-tool:hover .tool-image {
    filter: drop-shadow(10px 3px 4px #000000);
    transition: .5s;
}

.col-tool{
    margin-bottom: 30px;
}

.tool-box{
    padding-block: 30px;

}

.each-tab{
    position: relative;
    cursor: pointer;
}

.each-tab::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: transparent;

}

.each-tab.active::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #7392DE;
    background: linear-gradient(90deg, rgba(115, 146, 222, 1) 30%, rgba(158, 130, 232, 1) 71%);

}
.each-tab.active span{
    color: var(--primary-color);
}



.main-content{
    min-height: 500px;
}


/*main part*/



/*cv*/

.experiences{
    margin-bottom: 30px;
}

.each-experience{
    padding-block: 20px;
    border-bottom: 1px solid #777777;
}


.title-experience span{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.experience-info p{
    font-size: 14px;
    color: #fff;
}

/*cv*/




/*portfolio*/


myportfolio{
    padding-inline: 20px;
}

.portfolio{
    height: 37vh;
    position: relative;
    height: 350px;
    min-height: 250px;
    margin-top: 0 0 20px;
    -webkit-transition: background-position 4s ease;
    transition: background-position 4s ease;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(33.333% - 50px);
    flex: 1 0 calc(33.333% - 50px);
    border-radius: 10px;
}

.portfolio:hover{
    background-position: bottom;
}

.cover{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1f1f1fa1;
    border-radius: 10px;
    transition: .5s;
    right: 0;
    top: 0;
}

.portfolio:hover .cover{
    background-color: transparent;
    transition: .5s;
}

.col-portfolio{
    margin-bottom: 20px;
}





/*portfolio*/



/*contact*/

.contact-row{
    align-items: center;
}

.contact-way{
    border: 2px solid var(--secondary-color);
    padding: 23px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: .4s;
}

.contact-way .contact-icon {
    margin-bottom: 10px;
}

.contact-way .contact-icon svg{
    opacity: .4;
    transition: .4s;
}

.contact-way a, .contact-way span{
    font-size: 14px;
}

.contact-way:hover .contact-icon svg{
    opacity: 1;
    transition: .4s;
}

.contact-way:hover{
    box-shadow: 0 0 11px 0px #9e82e878;
    transition: .4s;
}

/*contact*/





















/*responsive*/

@media screen and (max-width: 1399px){
    .posFix {
        width: 302.66px !important;
    }

    .posAbs {
        width: 302.66px !important;
    }

    .aside{
        width: 302.66px;
    }
}


@media screen and (max-width: 1199px){
    .posFix {
        width: 235.66px !important;
    }

    .posAbs {
        width: 235.66px !important;
    }

    .aside{
        width: 235.66px;
    }

    .Dorsa-image {
        width: 140px;
        height: 140px;
    }

    .tab-box {
        border-radius: 0 0 10px 10px;
    }
}



@media screen and (max-width: 992px){

    .aside {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-part {
        position: unset;
    }

    .tab-box {
        position: fixed;
        top: -1px;
        right: 0;
        width: 100%;
        z-index: 4;
    }

    .Personal-info {
        padding-top: 61px;
    }

    .Dorsa-image {
        width: 220px;
        height: 220px;
    }

    .each-contact {
        justify-content: center;
    }

    .col-personal-info{
        order: -1;
    }
}


@media screen and (max-width: 768px){
    .contact-way{
        margin-bottom: 10px;
    }

    .col-contact{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 576px){



    .Personal-info {
        padding: 17px 20px;
        padding-top: 40px;
    }

    .main-part {
        margin-bottom: 20px;
    }


    .Dorsa-image {
        width: 100%;
        height: 170px;
    }

    .my-name h1 {
        font-size: 17px;
    }

    .each-tab span{
        font-size: 14px;
    }


    .tab-box {
        gap: 16px;
    }

    .main-title h4 {
        font-size: 16px;
    }


    .main-text p {
        font-size: 13px;
    }
    .personal-row p {
        margin-bottom: 2px;
    }

    .main-part {
        padding: 30px 20px;
        padding-top: 33px;
    }

    .main-subtitle h5 {
        font-size: 15px;
    }
    .skill-title {
        font-size: 14px;
    }

    .skill-text {
        font-size: 13px;
    }

    .each-skill {
        min-height: 212px;
    }

    .skill-icon svg {
        width: 40px;
        height: 40px;
    }

    .tool-name span{
        font-size: 12px;
        text-align: center;
        line-height: 19px;
    }

    .tool-name{
        text-align: center;
        line-height: 18px;
    }

    .tool-image {
        width: 44px;
        height: 44px;
    }
    .contact-icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-way .contact-icon svg{
        width: 40px;
        height: 40px;
    }

    .contact-way a, .contact-way span {
        font-size: 13px;
    }

    .main-text p {
        font-size: 13px;
        line-height: 25px;
    }

    .title-experience span {
        font-size: 14px;
    }

    .Dorsa-image {
        background-color: #8080df59;
    }

}


@media screen and (max-width: 425px){

    .each-experience {
        padding-block: 9px;
        border-bottom: 1px solid #777777;
    }


    .Dorsa-image {
        width: 100%;
        height: 122px;
    }

    .first-part {
        gap: 10px;
    }

    .my-name h1 {
        margin-bottom: 1px;
    }

    .cv-btn {
        margin-bottom: 10px;
    }


    .tab-box {
        gap: 13px;
        padding: 12px 19px;
    }
    .each-tab span {
        font-size: 13px;
    }

    .swiper-brands img {
        height: 56px;
    }
}


@media screen and (max-width: 320px){
    .each-tab span {
        font-size: 12px;
    }

    .tab-box {
             gap: 9px;
             padding: 10px 12px;
         }

}


/*responsive*/