File size: 1,180 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.TextsAndButtons {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: white;
    margin: 0 4% 0 4%;
    height: 100%;
}

.verticalItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 80px;
    height: 200px;
    max-width: 50%;
}

.verticalItem h3 {
    margin: 0;
    font-size: 3.6vw;
}

.verticalItem span {
    font-size: 3.4vw;
}

.verticalItem > * {
    padding: 10px;
}

.horizontalButtonsHolder {
    display: flex;
    align-items: center;
    width: 100%;
    height: 15%;
}

.horizontalButtonsHolder > * {
    margin-right: 4px;
    font-weight: bold;
}

.horizontalButtonsHolder button {
    height: 37px;
    width: 118px;
    font-size: 0.8rem;
}

.Carousels {
    padding-bottom: 10px;
}

@media(min-width: 600px) {
    .horizontalButtonsHolder > * {
        margin-right: 10px;
        font-weight: bold;
    }

    .horizontalButtonsHolder button {
        height:38px;
        width: 138px;
        font-size: 1rem;
    }

    .verticalItem span {
        font-size: 1.4vw;
    }

    .verticalItem h3 {
        font-size: 1.6vw;
    }
}

@media(min-width: 1650px) {

}