2022-07-28 11:55:52 +00:00
|
|
|
section#support {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 6rem;
|
2022-09-14 16:05:58 +00:00
|
|
|
//margin-bottom: 6rem;
|
2022-09-23 15:49:15 +00:00
|
|
|
gap: 3rem;
|
2022-10-07 13:37:57 +00:00
|
|
|
//transform: translate(0px,0px);
|
2022-09-02 13:59:11 +00:00
|
|
|
.cols {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 6rem;
|
|
|
|
|
.col {
|
2022-10-18 14:13:05 +00:00
|
|
|
max-width: clamp(min(400px, 90vw), 20rem, 1000px);
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
img {
|
2022-10-18 14:13:05 +00:00
|
|
|
max-height: 20rem;
|
2022-09-14 16:05:58 +00:00
|
|
|
max-width: 100%;
|
|
|
|
|
transform: rotateZ(5deg);
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
|
|
|
.cols{
|
|
|
|
|
flex-direction: column;
|
2022-09-14 16:05:58 +00:00
|
|
|
.col:nth-child(1){
|
|
|
|
|
order: 2;
|
|
|
|
|
}
|
|
|
|
|
.col:nth-child(2){
|
|
|
|
|
order: 1;
|
|
|
|
|
}
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|