style.css
1.03 KB
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
.call-out-block{
background-color: #0484B8;
min-height: 300px;
position: relative;
overflow: hidden;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
color:#fff;
margin:40px -50% 0px -50%;
padding:0px 50%;
}
@media only screen and (max-width: 768px) {
.call-out-block{
padding: 40px 50%;
}
}
.call-out-block h2{
text-align: center;
color: #fff !important;
font-size: 30px;
line-height: 45px;
}
.call-out-block p{
text-align: center;
color:#fff;
font-size: 20px;
line-height: 30px;
}
.call-out-block a{
border-radius: 0!important;
transition: background-color .2s;
background-color: #E8D44B;
color: #2C2C2C;
border: none;
font-size: 19px;
font-weight: 500;
margin: 10px 0 0px 0;
padding: 12px 30px;
line-height: 26px;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
width: unset;
}
.call-out-block a:hover{
color: #2C2C2C;
background-color:#fff;
}