Spaces:
Sleeping
Sleeping
File size: 2,144 Bytes
534863f |
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
/** card-section **/
.card-section{
position: relative;
}
.card-block-one .inner-box{
position: relative;
display: block;
padding: 0px 30px 40px 30px;
z-index: 1;
margin-bottom: 30px;
}
.card-block-one .inner-box:before{
position: absolute;
content: '';
background: #fff;
box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1);
width: 100%;
height: calc(100% - 90px);
left: 0px;
bottom: 0px;
z-index: -1;
}
.card-block-one .inner-box .image-box{
position: relative;
display: block;
border-radius: 10px;
}
.card-block-one .inner-box .image-box img{
width: 100%;
border-radius: 10px;
}
.card-block-one .inner-box .lower-content{
position: relative;
display: block;
padding-top: 31px;
}
.card-block-one .inner-box .lower-content h3{
position: relative;
display: block;
font-size: 24px;
line-height: 26px;
margin-bottom: 15px;
}
.card-block-one .inner-box .lower-content h3 a{
display: inline-block;
color: var(--title-color);
}
.card-block-one .inner-box .lower-content h3 a:hover{
color: var(--theme-color);
}
.card-block-one .inner-box .lower-content p{
margin-bottom: 30px;
}
.card-section .pattern-layer .pattern-1{
position: absolute;
top: 250px;
right: -224px;
width: 394px;
height: 394px;
border-radius: 50%;
border: 1px solid #E9E9E9;
}
.card-section .pattern-layer .pattern-1:before{
position: absolute;
content: '';
background: #F2F2F2;
width: 38px;
height: 38px;
left: 29px;
top: 52px;
border-radius: 50%;
}
.card-section .pattern-layer .pattern-2{
position: absolute;
left: -90px;
top: 157px;
width: 200px;
height: 200px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 8s infinite linear;
animation: zoom-fade 8s infinite linear;
}
/** RTL **/
/** responsive-css **/
@media only screen and (max-width: 1200px){
}
@media only screen and (max-width: 991px){
}
@media only screen and (max-width: 767px){
.card-section{
padding: 70px 0px 40px 0px;
}
}
@media only screen and (max-width: 599px){
}
@media only screen and (max-width: 499px){
}
|