/*************************************/
/************WEEDOO STYLES************/
/*************************************/

:root{
    --main-weedoo: #7F04F9;
    --secondary-weedoo: #DB00FF;
    --light-weedoo:#F2F5F8;
    --weedoo-gradient: linear-gradient(90deg, rgba(127,4,249,1) 0%, rgba(175,15,200,1) 100%);
}


.logo-container.weedoo{
    position: fixed;
    width: 70px;
    display: flex;
    justify-content: center;
    padding-top: 64px;
    padding-bottom: 32px;
    background-color: var(--main-weedoo);
    border-radius: 0 0 60px 60px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .2);
    z-index: 10;
    left: 100px;
    top: 0;
}

@media screen and (max-width:1499px){
    .logo-container.weedoo{
        left: 48px;
        top: 0;
    }

}

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

    .logo-container.weedoo{
        position: fixed;
        width: 70px;
        display: flex;
        justify-content: center;
        padding-top: 32px;
        padding-bottom: 28px;
        border-radius: 0 0 60px 60px;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, .2);
        left: 24px;
        top: 0;
    }

    .logo-container img{
        width: 20px;
        height: auto;
    }

}

.social.weedoo{
    mix-blend-mode: normal;
    position: absolute;
}

.email-box.weedoo{
    mix-blend-mode: normal;
    position: absolute;
}

.main-menu.weedoo{
    mix-blend-mode: normal;
    position: absolute;
}

.logo-banner{
    background-image: url(../img/imgWeedoo/logo-purple.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.vertical-scroll-logo{
    height: 100vh;
    width: 100vw;
    overflow-x: scroll;
    position: relative;
    background-color: var(--main-light);
}

.container-100vw{
    width: 100vw;
}

.container-100vh{
    height: 100vh;
}

.container-200vw{
    width: 200vw;
}

.container-200vh{
    height: 200vh;
}

/*logo vertical*/

.logo-vertical{
    width: 100vw;
    position: relative;
    padding-top: 300px;
}   

.logo-vertical img{
    max-width: 461px;
    height: auto;
    position: sticky;
    top: 300px;
    left: calc(50% - 230px);
    margin-bottom: 400px;
    z-index: 100;
}

/*logo horizontal*/

.logo-horizontal{
    width: 100vw;
    position: relative;
    padding-top: 300px;
}

.logo-horizontal img{
    width: 464px;
    height: auto;
    position: sticky;
    top: 300px;
    left: calc(50% - 230px);
    margin-bottom: 300px;
    z-index: 100;
}

.h-700{
    height: 700px;
}

.logo-vertical :nth-child(1), .logo-horizontal :nth-child(1){
    mix-blend-mode: difference;
}

/*ACCORDION PERSONAS*/

.accordion-weedoo {
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-btn-icon-width: 2rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/imgWeedoo/chevron-up-solid.svg);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
    background-image: url(../img/imgWeedoo/chevron-up-solid.svg);
    background-repeat: no-repeat;
}

.pic-name{
    display: inline;
}

.pic-name h3{
    display: inline;
}

.pic-name img{
    width: 160px;
    height: auto;
}

/*progress bars*/

.words-container{
    background: rgb(127,4,249);
    background: var(--weedoo-gradient)
}

.words-container .skill-item{
    padding-top:40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    border-bottom-color: var(--bg-dark);
    border-width: 0.5px;
    border-style: solid;
}

.words-container p{
    font-size: 64px;
    font-weight: 600;
    width: 100%;
    max-width: 1320px;
    position: relative;
    z-index: 3;
    padding-left: 12px;
    padding-right: 12px;
}

@media screen and (max-width:1399px){
    .words-container p{
        font-size: 44px;
        margin-left: 48px;
    }
}

@media screen and (max-width:767px){
    .words-container p{
        font-size: 24px;
        margin-left: 24px;
    }
}

.perc-bar{
    position: absolute;
    top: 0px;
    right: 0px;
    height:100%;
    background: var(--bg-dark);
}

.perc-0{
    width: 0%;
}

.perc-10{
    width: 10%;
}

.perc-20{
    width: 20%;
}

.perc-30{
    width: 30%;
}

.perc-40{
    width: 40%;
}

.perc-50{
    width: 50%;
}

.perc-60{
    width: 60%;
}

.perc-70{
    width: 70%;
}

.perc-80{
    width: 80%;
}

.perc-90{
    width: 90%;
}

.perc-100{
    width: 100%;
}

/*********** DESIGN SYSTEM ***********/

/*color section*/

.primary-color-box{
    padding: 56px 48px;
    border-radius: 150px;
}

.secondary-color-box{
    padding: 56px 32px;
    border-radius: 100px;
}

/* backgrounds */

.bg-secondary-weedoo{
    background-color: var(--secondary-weedoo);
}

.bg-light-weedoo{
    background-color: var(--light-weedoo);
}

.primary-gradient-weedoo{
    background: linear-gradient(90deg, #BC0B94 0%, #F30860 100%);
}

.primary-dark-gradient-weedoo{
    background: linear-gradient(90deg, #1B1B21 0%, #323841 100%);
}

.secondary-gradient-weedo-1{
    background: linear-gradient(90deg, #EC2841 0%, #FF2F6E 100%);
}

.secondary-gradient-weedo-2{
    background: linear-gradient(90deg, #08B4EA 0%, #0798E9 100%);
}

.secondary-gradient-weedo-3{
    background: linear-gradient(90deg, #08F474 0%, #00F09A 100%);
}

.secondary-gradient-weedo-4{
    background: linear-gradient(90deg, #FF8C01 0%, #FFB800 100%);
}

.support-color-weedoo1{
    background-color: #C7C7C7;
}

.support-color-weedoo2{
    background-color: rgba(56, 107, 156, 1);
}

.support-color-weedoo2-56{
    background-color: rgba(56, 107, 156, 0.56);
}

.support-color-weedoo2-32{
    background-color: rgba(56, 107, 156, 0.32);
}

.support-color-weedoo2-20{
    background-color: rgba(56, 107, 156, 0.2);
}

.support-color-weedoo2-16{
    background-color: rgba(56, 107, 156, 0.16);
}

.support-color-weedoo2-12{
    background-color: rgba(56, 107, 156, 0.12);
}

.support-color-weedoo2-8{
    background-color: rgba(56, 107, 156, 0.08);
}

.support-color-weedoo2-4{
    background-color: rgba(56, 107, 156, 0.04);
}

/**/

/**********END WEEDOO STYLES**********/
