.d-flex{
display: flex;
}
.d-flex-2{
display: flex;
flex-direction: column;
}
.d-flex-3{
display: flex;
justify-content: space-around;
}
.d-flex-4{
height: 1000px;
display: flex;
flex-direction: column;
justify-content: start;
}
.d-flex-5{
height: 700px;
display: flex;
align-items: center;
}
.d-flex-6{
height: 700px;
display: flex;
flex-direction: column;
align-items: end;
}
.d-flex-7{
height: 700px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-end;
}
.d-flex-8{
display: flex;
}
.d-flex-8 .box{
flex-basis: 200px;
}
.d-flex-9{
display: flex;
justify-content: space-between;
}
.d-flex-9 .box:nth-child(1){
flex-basis: calc(50% - 20px);
}
.d-flex-9 .box:nth-child(2),
.d-flex-9 .box:nth-child(3){
flex-basis: calc(25% - 20px);
}
.d-flex-10{
display: flex;
flex-wrap: wrap;
}
.d-flex-10 .box{
flex-basis: 33.3%;
}
.d-flex-11{
display: flex;
}
.d-flex-11 .box:nth-child(1){
flex-grow: 2;
}
.d-flex-11 .box:nth-child(2),
.d-flex-11 .box:nth-child(3){
flex-grow: 1;
}
.d-flex-12{
display: flex;
}
.d-flex-12 .box{
flex-grow: 1;
flex-basis: 300px;
}
.d-flex-12 .box:nth-child(1),
.d-flex-12 .box:nth-child(3){
flex-shrink: 2;
}
.d-flex-13{
;display: flex;
;gap: 2rem;
}
.d-flex-13 .box{
/** Grow Shrink Basic**/
flex: 1 0 33.3%;
}