#index_main p , #index_main h1 , #index_main h2 , #index_main h3 {
    color: white;
}




#index_main .text_description{
    position: relative;
    padding: 10px;
}
#index_main .text_description > div{
    margin: 10px;
    padding: 8px;
    border-right: 2px solid white;
    background-color: #3c394e85;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    backdrop-filter: blur(1px);
    display: grid;
    grid-template-columns:  50px 100fr;
    grid-template-areas: 'a b' 'c c';
}
#index_main .text_description > div:hover{
    background-color: #3c394ebe;
}
#index_main .text_description > div  svg{
    width:  80%;
    height: 80%;
    align-self: center;
    grid-area: a;
}
#index_main .text_description > div .medium_font{
    display: block;
    text-align: right;
    grid-area: b;
}
#index_main .text_description > div .descript{
    grid-area: c;
    border-radius: 10px;
    text-align: right;
    margin: 10px 0;
}

#index_main .go_design {
    width: 50%;
    position: relative;
    display: grid;
    grid-template-columns: 100fr 100px;
    border: 1px solid white;
    border-radius: 10px;
    margin: auto;
    backdrop-filter: blur(2px);
}
@media screen and (max-width:1200px){
    #index_main .go_design{width: 65%;}
}
@media screen and (max-width:425px){
    #index_main .go_design{width: 90%;}
}
#index_main .go_design p.large_font{
    color: white;
}
#index_main .go_design p.help_string{
    color: rgba(255, 255, 255, 0.548);
    margin: 5px;
}
#index_main .go_design svg{
    width: 100%;
    height: 65px;
}
#index_main .go_register {
    margin: auto 3px;
}
#index_main .go_register > div {
    display: grid;
    height: 60%;
    border-radius: 5px;

    justify-content: center;
    justify-items: center;
    padding: 2px;
    grid-template-columns: 100fr 20px ;
    background-color: var(--green);
    align-items: center;
}
#index_main .go_register p {
    
}
#index_main .go_register svg{
    width: 100%;
    height: 100%;
}






/*  */
/* show all design */
/*  */
.show_all_design{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.show_all_design > .iteam{
    display: grid;
    grid-template-rows: 60px 100fr;
    max-width: 320px;
    height: 420px;
    border: 1px solid white;
    padding: 5px;
    margin: 10px;
    border-radius: 15px;
    backdrop-filter: blur(1px);
}
.show_all_design >  .iteam .intru{
    width: 100%;
    height: 100%;  
    display: grid;
    grid-template-areas: 'a b' 'a c';
    grid-template-columns: 100fr 50px ;
}
.show_all_design >  .iteam .intru .profile{
    grid-row: a;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    align-self: center;    
    border: 1px solid white;
    background-size: 40px !important;
    
}
.show_all_design >  .iteam .intru .no_profile::before{
    content: "";
    background: url('../../assets/images/profile.png') #333333   center no-repeat;
    position: absolute;
    border-radius: 100%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 35px;

}
.show_all_design >  .iteam .intru .user_title_page{
    display: grid;
    direction: ltr;
    grid-template-columns: repeat(3,33fr);
    padding: 0 10px;
}
.show_all_design >  .iteam .intru .column{
    grid-row: b;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 20px 100fr;
    grid-template-rows: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.521);
}
.show_all_design >  .iteam .intru .column svg{
    width: 100%;
    height: 100%;
    margin-left: 2px;
}
.show_all_design >  .iteam .intru .column p{
    text-align: left;
    margin-left: 4px;
}

.show_all_design >  .iteam .intru .visit{
    grid-row: c;
    background-color: var(--green);
    margin: 0 10px;
    border-radius: 5px;
}
.show_all_design >  .iteam iframe{
    width: 100%;
    height: 95%;    
    border-radius: 5px;
    overflow: hidden;
    margin: auto 0;
}
.show_all_design  .next_page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
}

.show_all_design .next_page p{
    margin: 0 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--green);
    cursor: pointer;
}
.show_all_design .next_page p.off{
    opacity: .5;
    cursor: default !important;
}
.show_all_design .next_page .number_page{
    background-color: rgba(0, 0, 0, 0.452);
    cursor: default;
}

