Project

General

Profile

1
@media only screen and (min-width: 960px) {
2
    .how-first {
3
        background-image: url("/assets/graph-assets/backgrounds/blue_circle.svg"), url("/assets/graph-assets/backgrounds/pink_dots.svg");
4
        background-size: auto;
5
        background-repeat: no-repeat;
6
        background-position: 55% 0, 65% 25%;
7
    }
8

    
9
    .how-second {
10
        background-image: url("/assets/graph-assets/backgrounds/pink_circle.svg"), url("/assets/graph-assets/backgrounds/blue_dots.svg");
11
        background-size: auto;
12
        background-repeat: no-repeat;
13
        background-position: 40% 0, bottom right;
14
    }
15

    
16
    .why {
17
        background-image: url("/assets/graph-assets/home/4.svg");
18
        background-size: 25%;
19
        background-repeat: no-repeat;
20
        background-position: 55% 100%;
21
    }
22

    
23
    .service-slide {
24
        height: 350px !important;
25
    }
26
}
27

    
28
.service-slide {
29
    height: 600px;
30
}
31

    
32
.services {
33
    background: transparent linear-gradient(180deg, #E1E8F2 0%, #F5F5F5 62%, #FAFAFA 100%) 0 0 no-repeat;
34
    /*background: transparent linear-gradient(0deg, #FAFAFA 23%, #E2EEFA 30%) !important;*/
35
}
36

    
37
.services-list a {
38
    opacity: 0.3;
39
}
40

    
41
.services-list a.uk-active, .services-list a:hover {
42
    opacity: 1;
43
}
44

    
45
.uk-card {
46
    border-radius: 36px;
47
    color: #1a1a1a;
48
}
49

    
50
.uk-animation-fade {
51
    animation-duration: 1.5s;
52
}
53

    
54
.fade-out {
55
    visibility: hidden;
56
    opacity: 0;
57
    transition: visibility 0s linear 1s, opacity 1s;
58
}
59
.fade-in {
60
    visibility: visible;
61
    opacity: 1;
62
    transition: visibility 0s linear 0s, opacity 1s;
63
}
64

    
65
.uk-list.target > li:nth-child(n+2) {
66
    margin-top: 10px;
67
}
68

    
69
.case {
70
    background-color: white;
71
    height: 250px;
72
    position: relative;
73
}
74

    
75
.case img {
76
    position: absolute;
77
    left: 50%;
78
    top: 50%;
79
    transform: translate(-50%, -50%);
80
    height: 150px;
81
}
82

    
83
.explore-search {
84
    background-color: #F9DBD1;
85
    --portal-main-color: var(--explore-color);
86
    --portal-dark-color: var(--explore-dark-color);
87
}
(1-1/5)