summaryrefslogtreecommitdiff
path: root/src/main/resources/static/scss/_slider.scss
blob: 67a96adf0af0a8eb7a201b8177cd7b007350151f (plain)
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
78
79
80
81
82
83
.slider_bg_1{
    background-image: url(../../static/img/banner/banner.png);
}
.slider_bg_2{
    background-image: url(../../static/img/banner/banner2.png);
}
.slider_bg_3{
    background-image: url(../../static/img/banner/banner3.png);
}
.slider_area{
    .single_slider{
        height: 900px;
        background-size: cover;
        background-repeat: no-repeat;

        @media #{$mobile_device} {
            height: 600px;
        }
        @media #{$tablet_device} {
            height: 600px;
        }
        .slider_text{
            h3{
             color: #ffffff;
             font-family: $font1;
             font-size: 65px;
             font-weight: 900;
             margin-bottom: 4px;
             line-height: 75px;
             @media #{$mobile_device} {
               font-size: 33px;
               line-height: 40px;
            }
             @media #{$tablet_device} {
               font-size: 30px;
               line-height: 46px;
            }
             @media #{$mid_device} {
               font-size: 35px;
               line-height: 45px;
            }
            }
            p{
                font-size: 16px;
                font-weight: 400;
                color: #ffffff;
                margin-bottom: 0;
                margin-top: 0;
                line-height: 26px;
                display: inline-block;
                position: relative;
                margin-bottom: 41px;
                margin-top: 22px;
             @media #{$mid_device} {
                font-size: 16px;
             }
             @media #{$mobile_device} {
                font-size: 16px;
             }
            }
        }
    } 

    .owl-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        .owl-dot {
            width: 10px;
            height: 10px;
            background: #000;
            border-radius: 50%;
            display: inline-block;
            background-color: rgba(252, 229, 207,.2);
            margin: 0 6px;
            &.active{
                background: #fff; 
            }
        }
    }
}