first commit
@@ -0,0 +1,602 @@
|
||||
@-webkit-keyframes jump {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 50%, 0);
|
||||
transform: translate3d(0, 50%, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jump {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 50%, 0);
|
||||
transform: translate3d(0, 50%, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotated {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotated {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotatedHalf {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotatedHalf {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotatedHalfTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotatedHalfTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes scale-upOne {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.2);
|
||||
transform: scale(0.2);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-upOne {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.2);
|
||||
transform: scale(0.2);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-right {
|
||||
0% {
|
||||
-webkit-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(50%);
|
||||
transform: translateX(50%);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-right {
|
||||
0% {
|
||||
-webkit-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(50%);
|
||||
transform: translateX(50%);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
40% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
40% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes hvr-ripple-out {
|
||||
0% {
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
top: -6px;
|
||||
right: -6px;
|
||||
bottom: -6px;
|
||||
left: -6px;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hvr-ripple-out-two {
|
||||
0% {
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
top: -12px;
|
||||
right: -12px;
|
||||
bottom: -12px;
|
||||
left: -12px;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-one {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-one {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-two {
|
||||
0% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.8);
|
||||
transform: scale(0.8);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-two {
|
||||
0% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.8);
|
||||
transform: scale(0.8);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-three {
|
||||
0% {
|
||||
-webkit-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.4);
|
||||
transform: scale(0.4);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-three {
|
||||
0% {
|
||||
-webkit-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(0.4);
|
||||
transform: scale(0.4);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(0.7);
|
||||
transform: scale(0.7);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes animationFramesOne {
|
||||
0% {
|
||||
transform: translate(0px, 0px) rotate(0deg);
|
||||
}
|
||||
|
||||
20% {
|
||||
transform: translate(73px, -1px) rotate(36deg);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: translate(141px, 72px) rotate(72deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate(83px, 122px) rotate(108deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translate(-40px, 72px) rotate(144deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(0px, 0px) rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes animationFramesOne {
|
||||
0% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||
}
|
||||
|
||||
20% {
|
||||
-webkit-transform: translate(73px, -1px) rotate(36deg);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate(141px, 72px) rotate(72deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
-webkit-transform: translate(83px, 122px) rotate(108deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translate(-40px, 72px) rotate(144deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animationFramesTwo {
|
||||
0% {
|
||||
transform: translate(0px, 0px) rotate(0deg) scale(1);
|
||||
}
|
||||
|
||||
20% {
|
||||
transform: translate(73px, -1px) rotate(36deg) scale(0.9);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: translate(141px, 72px) rotate(72deg) scale(1);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate(83px, 122px) rotate(108deg) scale(1.2);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(0px, 0px) rotate(0deg) scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes animationFramesTwo {
|
||||
0% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
|
||||
}
|
||||
|
||||
20% {
|
||||
-webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
|
||||
}
|
||||
|
||||
60% {
|
||||
-webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes animationFramesThree {
|
||||
0% {
|
||||
transform: translate(165px, -179px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(-346px, 617px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes animationFramesThree {
|
||||
0% {
|
||||
-webkit-transform: translate(165px, -179px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate(-346px, 617px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes animationFramesFour {
|
||||
0% {
|
||||
transform: translate(-300px, 151px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(251px, -200px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes animationFramesFour {
|
||||
0% {
|
||||
-webkit-transform: translate(-300px, 151px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate(251px, -200px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes animationFramesFive {
|
||||
0% {
|
||||
transform: translate(61px, -99px) rotate(0deg);
|
||||
}
|
||||
|
||||
21% {
|
||||
transform: translate(4px, -190px) rotate(38deg);
|
||||
}
|
||||
|
||||
41% {
|
||||
transform: translate(-139px, -200px) rotate(74deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate(-263px, -164px) rotate(108deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translate(-195px, -49px) rotate(144deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(-1px, 0px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes animationFramesFive {
|
||||
0% {
|
||||
-webkit-transform: translate(61px, -99px) rotate(0deg);
|
||||
}
|
||||
|
||||
21% {
|
||||
-webkit-transform: translate(4px, -190px) rotate(38deg);
|
||||
}
|
||||
|
||||
41% {
|
||||
-webkit-transform: translate(-139px, -200px) rotate(74deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
-webkit-transform: translate(-263px, -164px) rotate(108deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
-webkit-transform: translate(-195px, -49px) rotate(144deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate(-1px, 0px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gradientBG {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 300% 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes gradientBG {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 300% 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes imageBgAnim {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 120% 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes gradientBG {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 120% 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,937 @@
|
||||
/* Deafult Margin & Padding */
|
||||
/*-- Margin Top --*/
|
||||
a {
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
.mt-5 {
|
||||
margin-top: 5px;
|
||||
}
|
||||
.mt-10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.mt-15 {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mt-20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.mt-25 {
|
||||
margin-top: 25px;
|
||||
}
|
||||
.mt-30 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.mt-35 {
|
||||
margin-top: 35px;
|
||||
}
|
||||
.mt-40 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.mt-45 {
|
||||
margin-top: 45px;
|
||||
}
|
||||
.mt-50 {
|
||||
margin-top: 50px;
|
||||
}
|
||||
.mt-55 {
|
||||
margin-top: 55px;
|
||||
}
|
||||
.mt-60 {
|
||||
margin-top: 60px;
|
||||
}
|
||||
.mt-65 {
|
||||
margin-top: 65px;
|
||||
}
|
||||
.mt-70 {
|
||||
margin-top: 70px;
|
||||
}
|
||||
.mt-75 {
|
||||
margin-top: 75px;
|
||||
}
|
||||
.mt-80 {
|
||||
margin-top: 80px;
|
||||
}
|
||||
.mt-85 {
|
||||
margin-top: 85px;
|
||||
}
|
||||
.mt-90 {
|
||||
margin-top: 90px;
|
||||
}
|
||||
.mt-95 {
|
||||
margin-top: 95px;
|
||||
}
|
||||
.mt-100 {
|
||||
margin-top: 100px;
|
||||
}
|
||||
.mt-105 {
|
||||
margin-top: 105px;
|
||||
}
|
||||
.mt-110 {
|
||||
margin-top: 110px;
|
||||
}
|
||||
.mt-115 {
|
||||
margin-top: 115px;
|
||||
}
|
||||
.mt-120 {
|
||||
margin-top: 120px;
|
||||
}
|
||||
.mt-125 {
|
||||
margin-top: 125px;
|
||||
}
|
||||
.mt-130 {
|
||||
margin-top: 130px;
|
||||
}
|
||||
.mt-135 {
|
||||
margin-top: 135px;
|
||||
}
|
||||
.mt-140 {
|
||||
margin-top: 140px;
|
||||
}
|
||||
.mt-145 {
|
||||
margin-top: 145px;
|
||||
}
|
||||
.mt-150 {
|
||||
margin-top: 150px;
|
||||
}
|
||||
.mt-155 {
|
||||
margin-top: 155px;
|
||||
}
|
||||
.mt-160 {
|
||||
margin-top: 160px;
|
||||
}
|
||||
.mt-165 {
|
||||
margin-top: 165px;
|
||||
}
|
||||
.mt-170 {
|
||||
margin-top: 170px;
|
||||
}
|
||||
.mt-175 {
|
||||
margin-top: 175px;
|
||||
}
|
||||
.mt-180 {
|
||||
margin-top: 180px;
|
||||
}
|
||||
.mt-185 {
|
||||
margin-top: 185px;
|
||||
}
|
||||
.mt-190 {
|
||||
margin-top: 190px;
|
||||
}
|
||||
.mt-195 {
|
||||
margin-top: 195px;
|
||||
}
|
||||
.mt-200 {
|
||||
margin-top: 200px;
|
||||
}
|
||||
/*-- Margin Bottom --*/
|
||||
|
||||
.mb-5 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.mb-10 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.mb-15 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.mb-20 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.mb-25 {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
.mb-30 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.mb-35 {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
.mb-40 {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.mb-45 {
|
||||
margin-bottom: 45px;
|
||||
}
|
||||
.mb-50 {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.mb-55 {
|
||||
margin-bottom: 55px;
|
||||
}
|
||||
.mb-60 {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.mb-65 {
|
||||
margin-bottom: 65px;
|
||||
}
|
||||
.mb-70 {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
.mb-75 {
|
||||
margin-bottom: 75px;
|
||||
}
|
||||
.mb-80 {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.mb-85 {
|
||||
margin-bottom: 85px;
|
||||
}
|
||||
.mb-90 {
|
||||
margin-bottom: 90px;
|
||||
}
|
||||
.mb-95 {
|
||||
margin-bottom: 95px;
|
||||
}
|
||||
.mb-100 {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.mb-105 {
|
||||
margin-bottom: 105px;
|
||||
}
|
||||
.mb-110 {
|
||||
margin-bottom: 110px;
|
||||
}
|
||||
.mb-115 {
|
||||
margin-bottom: 115px;
|
||||
}
|
||||
.mb-120 {
|
||||
margin-bottom: 120px;
|
||||
}
|
||||
.mb-125 {
|
||||
margin-bottom: 125px;
|
||||
}
|
||||
.mb-130 {
|
||||
margin-bottom: 130px;
|
||||
}
|
||||
.mb-135 {
|
||||
margin-bottom: 135px;
|
||||
}
|
||||
.mb-140 {
|
||||
margin-bottom: 140px;
|
||||
}
|
||||
.mb-145 {
|
||||
margin-bottom: 145px;
|
||||
}
|
||||
.mb-150 {
|
||||
margin-bottom: 150px;
|
||||
}
|
||||
.mb-155 {
|
||||
margin-bottom: 155px;
|
||||
}
|
||||
.mb-160 {
|
||||
margin-bottom: 160px;
|
||||
}
|
||||
.mb-165 {
|
||||
margin-bottom: 165px;
|
||||
}
|
||||
.mb-170 {
|
||||
margin-bottom: 170px;
|
||||
}
|
||||
.mb-175 {
|
||||
margin-bottom: 175px;
|
||||
}
|
||||
.mb-180 {
|
||||
margin-bottom: 180px;
|
||||
}
|
||||
.mb-185 {
|
||||
margin-bottom: 185px;
|
||||
}
|
||||
.mb-190 {
|
||||
margin-bottom: 190px;
|
||||
}
|
||||
.mb-195 {
|
||||
margin-bottom: 195px;
|
||||
}
|
||||
.mb-200 {
|
||||
margin-bottom: 200px;
|
||||
}
|
||||
/*-- margin left --*/
|
||||
.ml-5 {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.ml-10 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.ml-15 {
|
||||
margin-left: 15px;
|
||||
}
|
||||
.ml-20 {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.ml-25 {
|
||||
margin-left: 25px;
|
||||
}
|
||||
.ml-30 {
|
||||
margin-left: 30px;
|
||||
}
|
||||
.ml-35 {
|
||||
margin-left: 35px;
|
||||
}
|
||||
.ml-40 {
|
||||
margin-left: 40px;
|
||||
}
|
||||
.ml-45 {
|
||||
margin-left: 45px;
|
||||
}
|
||||
.ml-50 {
|
||||
margin-left: 50px;
|
||||
}
|
||||
.ml-55 {
|
||||
margin-left: 55px;
|
||||
}
|
||||
.ml-60 {
|
||||
margin-left: 60px;
|
||||
}
|
||||
.ml-65 {
|
||||
margin-left: 65px;
|
||||
}
|
||||
.ml-70 {
|
||||
margin-left: 70px;
|
||||
}
|
||||
.ml-75 {
|
||||
margin-left: 75px;
|
||||
}
|
||||
.ml-80 {
|
||||
margin-left: 80px;
|
||||
}
|
||||
.ml-85 {
|
||||
margin-left: 85px;
|
||||
}
|
||||
.ml-90 {
|
||||
margin-left: 90px;
|
||||
}
|
||||
.ml-95 {
|
||||
margin-left: 95px;
|
||||
}
|
||||
.ml-100 {
|
||||
margin-left: 100px;
|
||||
}
|
||||
.ml-105 {
|
||||
margin-left: 105px;
|
||||
}
|
||||
.ml-110 {
|
||||
margin-left: 110px;
|
||||
}
|
||||
.ml-115 {
|
||||
margin-left: 115px;
|
||||
}
|
||||
.ml-120 {
|
||||
margin-left: 120px;
|
||||
}
|
||||
.ml-125 {
|
||||
margin-left: 125px;
|
||||
}
|
||||
.ml-130 {
|
||||
margin-left: 130px;
|
||||
}
|
||||
.ml-135 {
|
||||
margin-left: 135px;
|
||||
}
|
||||
.ml-140 {
|
||||
margin-left: 140px;
|
||||
}
|
||||
.ml-145 {
|
||||
margin-left: 145px;
|
||||
}
|
||||
.ml-150 {
|
||||
margin-left: 150px;
|
||||
}
|
||||
.ml-155 {
|
||||
margin-left: 155px;
|
||||
}
|
||||
.ml-160 {
|
||||
margin-left: 160px;
|
||||
}
|
||||
.ml-165 {
|
||||
margin-left: 165px;
|
||||
}
|
||||
.ml-170 {
|
||||
margin-left: 170px;
|
||||
}
|
||||
.ml-175 {
|
||||
margin-left: 175px;
|
||||
}
|
||||
.ml-180 {
|
||||
margin-left: 180px;
|
||||
}
|
||||
.ml-185 {
|
||||
margin-left: 185px;
|
||||
}
|
||||
.ml-190 {
|
||||
margin-left: 190px;
|
||||
}
|
||||
.ml-195 {
|
||||
margin-left: 195px;
|
||||
}
|
||||
.ml-200 {
|
||||
margin-left: 200px;
|
||||
}
|
||||
/*-- margin right --*/
|
||||
.mr-5 {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.mr-10 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.mr-15 {
|
||||
margin-right: 15px;
|
||||
}
|
||||
.mr-20 {
|
||||
margin-right: 20px;
|
||||
}
|
||||
.mr-25 {
|
||||
margin-right: 25px;
|
||||
}
|
||||
.mr-30 {
|
||||
margin-right: 30px;
|
||||
}
|
||||
.mr-35 {
|
||||
margin-right: 35px;
|
||||
}
|
||||
.mr-40 {
|
||||
margin-right: 40px;
|
||||
}
|
||||
.mr-45 {
|
||||
margin-right: 45px;
|
||||
}
|
||||
.mr-50 {
|
||||
margin-right: 50px;
|
||||
}
|
||||
.mr-55 {
|
||||
margin-right: 55px;
|
||||
}
|
||||
.mr-60 {
|
||||
margin-right: 60px;
|
||||
}
|
||||
.mr-65 {
|
||||
margin-right: 65px;
|
||||
}
|
||||
.mr-70 {
|
||||
margin-right: 70px;
|
||||
}
|
||||
.mr-75 {
|
||||
margin-right: 75px;
|
||||
}
|
||||
.mr-80 {
|
||||
margin-right: 80px;
|
||||
}
|
||||
.mr-85 {
|
||||
margin-right: 85px;
|
||||
}
|
||||
.mr-90 {
|
||||
margin-right: 90px;
|
||||
}
|
||||
.mr-95 {
|
||||
margin-right: 95px;
|
||||
}
|
||||
.mr-100 {
|
||||
margin-right: 100px;
|
||||
}
|
||||
.mr-105 {
|
||||
margin-right: 105px;
|
||||
}
|
||||
.mr-110 {
|
||||
margin-right: 110px;
|
||||
}
|
||||
.mr-115 {
|
||||
margin-right: 115px;
|
||||
}
|
||||
.mr-120 {
|
||||
margin-right: 120px;
|
||||
}
|
||||
.mr-125 {
|
||||
margin-right: 125px;
|
||||
}
|
||||
.mr-130 {
|
||||
margin-right: 130px;
|
||||
}
|
||||
.mr-135 {
|
||||
margin-right: 135px;
|
||||
}
|
||||
.mr-140 {
|
||||
margin-right: 140px;
|
||||
}
|
||||
.mr-145 {
|
||||
margin-right: 145px;
|
||||
}
|
||||
.mr-150 {
|
||||
margin-right: 150px;
|
||||
}
|
||||
.mr-155 {
|
||||
margin-right: 155px;
|
||||
}
|
||||
.mr-160 {
|
||||
margin-right: 160px;
|
||||
}
|
||||
.mr-165 {
|
||||
margin-right: 165px;
|
||||
}
|
||||
.mr-170 {
|
||||
margin-right: 170px;
|
||||
}
|
||||
.mr-175 {
|
||||
margin-right: 175px;
|
||||
}
|
||||
.mr-180 {
|
||||
margin-right: 180px;
|
||||
}
|
||||
.mr-185 {
|
||||
margin-right: 185px;
|
||||
}
|
||||
.mr-190 {
|
||||
margin-right: 190px;
|
||||
}
|
||||
.mr-195 {
|
||||
margin-right: 195px;
|
||||
}
|
||||
.mr-200 {
|
||||
margin-right: 200px;
|
||||
}
|
||||
|
||||
|
||||
/*-- Padding Top --*/
|
||||
|
||||
.pt-5 {
|
||||
padding-top: 5px;
|
||||
}
|
||||
.pt-10 {
|
||||
padding-top: 10px;
|
||||
}
|
||||
.pt-15 {
|
||||
padding-top: 15px;
|
||||
}
|
||||
.pt-20 {
|
||||
padding-top: 20px;
|
||||
}
|
||||
.pt-25 {
|
||||
padding-top: 25px;
|
||||
}
|
||||
.pt-30 {
|
||||
padding-top: 30px;
|
||||
}
|
||||
.pt-35 {
|
||||
padding-top: 35px;
|
||||
}
|
||||
.pt-40 {
|
||||
padding-top: 40px;
|
||||
}
|
||||
.pt-45 {
|
||||
padding-top: 45px;
|
||||
}
|
||||
.pt-50 {
|
||||
padding-top: 50px;
|
||||
}
|
||||
.pt-55 {
|
||||
padding-top: 55px;
|
||||
}
|
||||
.pt-60 {
|
||||
padding-top: 60px;
|
||||
}
|
||||
.pt-65 {
|
||||
padding-top: 65px;
|
||||
}
|
||||
.pt-70 {
|
||||
padding-top: 70px;
|
||||
}
|
||||
.pt-75 {
|
||||
padding-top: 75px;
|
||||
}
|
||||
.pt-80 {
|
||||
padding-top: 80px;
|
||||
}
|
||||
.pt-85 {
|
||||
padding-top: 85px;
|
||||
}
|
||||
.pt-90 {
|
||||
padding-top: 90px;
|
||||
}
|
||||
.pt-95 {
|
||||
padding-top: 95px;
|
||||
}
|
||||
.pt-100 {
|
||||
padding-top: 100px;
|
||||
}
|
||||
.pt-105 {
|
||||
padding-top: 105px;
|
||||
}
|
||||
.pt-110 {
|
||||
padding-top: 110px;
|
||||
}
|
||||
.pt-115 {
|
||||
padding-top: 115px;
|
||||
}
|
||||
.pt-120 {
|
||||
padding-top: 120px;
|
||||
}
|
||||
.pt-125 {
|
||||
padding-top: 125px;
|
||||
}
|
||||
.pt-130 {
|
||||
padding-top: 130px;
|
||||
}
|
||||
.pt-135 {
|
||||
padding-top: 135px;
|
||||
}
|
||||
.pt-140 {
|
||||
padding-top: 140px;
|
||||
}
|
||||
.pt-145 {
|
||||
padding-top: 145px;
|
||||
}
|
||||
.pt-150 {
|
||||
padding-top: 150px;
|
||||
}
|
||||
.pt-155 {
|
||||
padding-top: 155px;
|
||||
}
|
||||
.pt-160 {
|
||||
padding-top: 160px;
|
||||
}
|
||||
.pt-165 {
|
||||
padding-top: 165px;
|
||||
}
|
||||
.pt-170 {
|
||||
padding-top: 170px;
|
||||
}
|
||||
.pt-175 {
|
||||
padding-top: 175px;
|
||||
}
|
||||
.pt-180 {
|
||||
padding-top: 180px;
|
||||
}
|
||||
.pt-185 {
|
||||
padding-top: 185px;
|
||||
}
|
||||
.pt-190 {
|
||||
padding-top: 190px;
|
||||
}
|
||||
.pt-195 {
|
||||
padding-top: 195px;
|
||||
}
|
||||
.pt-200 {
|
||||
padding-top: 200px;
|
||||
}
|
||||
/*-- Padding Bottom --*/
|
||||
|
||||
.pb-5 {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
.pb-10 {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.pb-15 {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.pb-20 {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.pb-25 {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
.pb-30 {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.pb-35 {
|
||||
padding-bottom: 35px;
|
||||
}
|
||||
.pb-40 {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.pb-45 {
|
||||
padding-bottom: 45px;
|
||||
}
|
||||
.pb-50 {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
.pb-55 {
|
||||
padding-bottom: 55px;
|
||||
}
|
||||
.pb-60 {
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.pb-65 {
|
||||
padding-bottom: 65px;
|
||||
}
|
||||
.pb-70 {
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
.pb-75 {
|
||||
padding-bottom: 75px;
|
||||
}
|
||||
.pb-80 {
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
.pb-85 {
|
||||
padding-bottom: 85px;
|
||||
}
|
||||
.pb-90 {
|
||||
padding-bottom: 90px;
|
||||
}
|
||||
.pb-95 {
|
||||
padding-bottom: 95px;
|
||||
}
|
||||
.pb-100 {
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
.pb-105 {
|
||||
padding-bottom: 105px;
|
||||
}
|
||||
.pb-110 {
|
||||
padding-bottom: 110px;
|
||||
}
|
||||
.pb-115 {
|
||||
padding-bottom: 115px;
|
||||
}
|
||||
.pb-120 {
|
||||
padding-bottom: 120px;
|
||||
}
|
||||
.pb-125 {
|
||||
padding-bottom: 125px;
|
||||
}
|
||||
.pb-130 {
|
||||
padding-bottom: 130px;
|
||||
}
|
||||
.pb-135 {
|
||||
padding-bottom: 135px;
|
||||
}
|
||||
.pb-140 {
|
||||
padding-bottom: 140px;
|
||||
}
|
||||
.pb-145 {
|
||||
padding-bottom: 145px;
|
||||
}
|
||||
.pb-150 {
|
||||
padding-bottom: 150px;
|
||||
}
|
||||
.pb-155 {
|
||||
padding-bottom: 155px;
|
||||
}
|
||||
.pb-160 {
|
||||
padding-bottom: 160px;
|
||||
}
|
||||
.pb-165 {
|
||||
padding-bottom: 165px;
|
||||
}
|
||||
.pb-170 {
|
||||
padding-bottom: 170px;
|
||||
}
|
||||
.pb-175 {
|
||||
padding-bottom: 175px;
|
||||
}
|
||||
.pb-180 {
|
||||
padding-bottom: 180px;
|
||||
}
|
||||
.pb-185 {
|
||||
padding-bottom: 185px;
|
||||
}
|
||||
.pb-190 {
|
||||
padding-bottom: 190px;
|
||||
}
|
||||
.pb-195 {
|
||||
padding-bottom: 195px;
|
||||
}
|
||||
.pb-200 {
|
||||
padding-bottom: 200px;
|
||||
}
|
||||
|
||||
/*-- Padding left --*/
|
||||
|
||||
.pl-0 {
|
||||
padding-left: 0px;
|
||||
}
|
||||
.pl-5 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
.pl-10 {
|
||||
padding-left: 10px;
|
||||
}
|
||||
.pl-15 {
|
||||
padding-left: 15px;
|
||||
}
|
||||
.pl-20 {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.pl-25 {
|
||||
padding-left: 25px;
|
||||
}
|
||||
.pl-30 {
|
||||
padding-left: 30px;
|
||||
}
|
||||
.pl-35 {
|
||||
padding-left: 35px;
|
||||
}
|
||||
.pl-40 {
|
||||
padding-left: 40px;
|
||||
}
|
||||
.pl-45 {
|
||||
padding-left: 45px;
|
||||
}
|
||||
.pl-50 {
|
||||
padding-left: 50px;
|
||||
}
|
||||
.pl-55 {
|
||||
padding-left: 55px;
|
||||
}
|
||||
.pl-60 {
|
||||
padding-left: 60px;
|
||||
}
|
||||
.pl-65 {
|
||||
padding-left: 65px;
|
||||
}
|
||||
.pl-70 {
|
||||
padding-left: 70px;
|
||||
}
|
||||
.pl-75 {
|
||||
padding-left: 75px;
|
||||
}
|
||||
.pl-80 {
|
||||
padding-left: 80px;
|
||||
}
|
||||
.pl-85 {
|
||||
padding-left: 85px;
|
||||
}
|
||||
.pl-90 {
|
||||
padding-left: 90px;
|
||||
}
|
||||
.pl-100 {
|
||||
padding-left: 100px;
|
||||
}
|
||||
.pl-105 {
|
||||
padding-left: 105px;
|
||||
}
|
||||
.pl-110 {
|
||||
padding-left: 110px;
|
||||
}
|
||||
.pl-115 {
|
||||
padding-left: 115px;
|
||||
}
|
||||
.pl-120 {
|
||||
padding-left: 120px;
|
||||
}
|
||||
.pl-125 {
|
||||
padding-left: 125px;
|
||||
}
|
||||
/*-- Padding right --*/
|
||||
|
||||
.pr-0 {
|
||||
padding-right: 0px;
|
||||
}
|
||||
.pr-5 {
|
||||
padding-right: 5px;
|
||||
}
|
||||
.pr-10 {
|
||||
padding-right: 10px;
|
||||
}
|
||||
.pr-15 {
|
||||
padding-right: 15px;
|
||||
}
|
||||
.pr-20 {
|
||||
padding-right: 20px;
|
||||
}
|
||||
.pr-25 {
|
||||
padding-right: 25px;
|
||||
}
|
||||
.pr-30 {
|
||||
padding-right: 30px;
|
||||
}
|
||||
.pr-35 {
|
||||
padding-right: 35px;
|
||||
}
|
||||
.pr-40 {
|
||||
padding-right: 40px;
|
||||
}
|
||||
.pr-45 {
|
||||
padding-right: 45px;
|
||||
}
|
||||
.pr-50 {
|
||||
padding-right: 50px;
|
||||
}
|
||||
.pr-55 {
|
||||
padding-right: 55px;
|
||||
}
|
||||
.pr-60 {
|
||||
padding-right: 60px;
|
||||
}
|
||||
.pr-65 {
|
||||
padding-right: 65px;
|
||||
}
|
||||
.pr-70 {
|
||||
padding-right: 70px;
|
||||
}
|
||||
.pr-75 {
|
||||
padding-right: 75px;
|
||||
}
|
||||
.pr-80 {
|
||||
padding-right: 80px;
|
||||
}
|
||||
.pr-85 {
|
||||
padding-right: 85px;
|
||||
}
|
||||
.pr-90 {
|
||||
padding-right: 90px;
|
||||
}
|
||||
.pr-95 {
|
||||
padding-right: 95px;
|
||||
}
|
||||
.pr-100 {
|
||||
padding-right: 100px;
|
||||
}
|
||||
.pr-105 {
|
||||
padding-right: 105px;
|
||||
}
|
||||
/* Background Color */
|
||||
|
||||
.gray-bg {
|
||||
background: #f6f6f6;
|
||||
}
|
||||
.white-bg {
|
||||
background: #fff;
|
||||
}
|
||||
.black-bg {
|
||||
background: #222;
|
||||
}
|
||||
/* Color */
|
||||
|
||||
.white {
|
||||
color: #fff;
|
||||
}
|
||||
.black {
|
||||
color: #222;
|
||||
}
|
||||
/* black overlay */
|
||||
|
||||
[data-overlay] {
|
||||
position: relative;
|
||||
}
|
||||
[data-overlay]::before {
|
||||
background: #000 none repeat scroll 0 0;
|
||||
content: "";
|
||||
height: 100%;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
[data-overlay="3"]::before {
|
||||
opacity: 0.3;
|
||||
}
|
||||
[data-overlay="4"]::before {
|
||||
opacity: 0.4;
|
||||
}
|
||||
[data-overlay="5"]::before {
|
||||
opacity: 0.5;
|
||||
}
|
||||
[data-overlay="6"]::before {
|
||||
opacity: 0.6;
|
||||
}
|
||||
[data-overlay="7"]::before {
|
||||
opacity: 0.7;
|
||||
}
|
||||
[data-overlay="8"]::before {
|
||||
opacity: 0.8;
|
||||
}
|
||||
[data-overlay="9"]::before {
|
||||
opacity: 0.9;
|
||||
}
|
||||
@@ -0,0 +1,351 @@
|
||||
/* Magnific Popup CSS */
|
||||
.mfp-bg {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1042;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
background: #0b0b0b;
|
||||
opacity: 0.8; }
|
||||
|
||||
.mfp-wrap {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1043;
|
||||
position: fixed;
|
||||
outline: none !important;
|
||||
-webkit-backface-visibility: hidden; }
|
||||
|
||||
.mfp-container {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
padding: 0 8px;
|
||||
box-sizing: border-box; }
|
||||
|
||||
.mfp-container:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
.mfp-align-top .mfp-container:before {
|
||||
display: none; }
|
||||
|
||||
.mfp-content {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
z-index: 1045; }
|
||||
|
||||
.mfp-inline-holder .mfp-content,
|
||||
.mfp-ajax-holder .mfp-content {
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-ajax-cur {
|
||||
cursor: progress; }
|
||||
|
||||
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||
cursor: -moz-zoom-out;
|
||||
cursor: -webkit-zoom-out;
|
||||
cursor: zoom-out; }
|
||||
|
||||
.mfp-zoom {
|
||||
cursor: pointer;
|
||||
cursor: -webkit-zoom-in;
|
||||
cursor: -moz-zoom-in;
|
||||
cursor: zoom-in; }
|
||||
|
||||
.mfp-auto-cursor .mfp-content {
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-close,
|
||||
.mfp-arrow,
|
||||
.mfp-preloader,
|
||||
.mfp-counter {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none; }
|
||||
|
||||
.mfp-loading.mfp-figure {
|
||||
display: none; }
|
||||
|
||||
.mfp-hide {
|
||||
display: none !important; }
|
||||
|
||||
.mfp-preloader {
|
||||
color: #CCC;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: auto;
|
||||
text-align: center;
|
||||
margin-top: -0.8em;
|
||||
left: 8px;
|
||||
right: 8px;
|
||||
z-index: 1044; }
|
||||
.mfp-preloader a {
|
||||
color: #CCC; }
|
||||
.mfp-preloader a:hover {
|
||||
color: #FFF; }
|
||||
|
||||
.mfp-s-ready .mfp-preloader {
|
||||
display: none; }
|
||||
|
||||
.mfp-s-error .mfp-content {
|
||||
display: none; }
|
||||
|
||||
button.mfp-close,
|
||||
button.mfp-arrow {
|
||||
overflow: visible;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
display: block;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
z-index: 1046;
|
||||
box-shadow: none;
|
||||
touch-action: manipulation; }
|
||||
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
.mfp-close {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
opacity: 0.65;
|
||||
padding: 0 0 18px 10px;
|
||||
color: #FFF;
|
||||
font-style: normal;
|
||||
font-size: 28px;
|
||||
font-family: Arial, Baskerville, monospace; }
|
||||
.mfp-close:hover,
|
||||
.mfp-close:focus {
|
||||
opacity: 1; }
|
||||
.mfp-close:active {
|
||||
top: 1px; }
|
||||
|
||||
.mfp-close-btn-in .mfp-close {
|
||||
color: #333; }
|
||||
|
||||
.mfp-image-holder .mfp-close,
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
color: #FFF;
|
||||
right: -6px;
|
||||
text-align: right;
|
||||
padding-right: 6px;
|
||||
width: 100%; }
|
||||
|
||||
.mfp-counter {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #CCC;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap; }
|
||||
|
||||
.mfp-arrow {
|
||||
position: absolute;
|
||||
opacity: 0.65;
|
||||
margin: 0;
|
||||
top: 50%;
|
||||
margin-top: -55px;
|
||||
padding: 0;
|
||||
width: 90px;
|
||||
height: 110px;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.mfp-arrow:active {
|
||||
margin-top: -54px; }
|
||||
.mfp-arrow:hover,
|
||||
.mfp-arrow:focus {
|
||||
opacity: 1; }
|
||||
.mfp-arrow:before,
|
||||
.mfp-arrow:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
margin-top: 35px;
|
||||
margin-left: 35px;
|
||||
border: medium inset transparent; }
|
||||
.mfp-arrow:after {
|
||||
border-top-width: 13px;
|
||||
border-bottom-width: 13px;
|
||||
top: 8px; }
|
||||
.mfp-arrow:before {
|
||||
border-top-width: 21px;
|
||||
border-bottom-width: 21px;
|
||||
opacity: 0.7; }
|
||||
|
||||
.mfp-arrow-left {
|
||||
left: 0; }
|
||||
.mfp-arrow-left:after {
|
||||
border-right: 17px solid #FFF;
|
||||
margin-left: 31px; }
|
||||
.mfp-arrow-left:before {
|
||||
margin-left: 25px;
|
||||
border-right: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-arrow-right {
|
||||
right: 0; }
|
||||
.mfp-arrow-right:after {
|
||||
border-left: 17px solid #FFF;
|
||||
margin-left: 39px; }
|
||||
.mfp-arrow-right:before {
|
||||
border-left: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-iframe-holder {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px; }
|
||||
.mfp-iframe-holder .mfp-content {
|
||||
line-height: 0;
|
||||
width: 100%;
|
||||
max-width: 900px; }
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
top: -40px; }
|
||||
|
||||
.mfp-iframe-scaler {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
padding-top: 56.25%; }
|
||||
.mfp-iframe-scaler iframe {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #000; }
|
||||
|
||||
/* Main image in popup */
|
||||
img.mfp-img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 40px 0 40px;
|
||||
margin: 0 auto; }
|
||||
|
||||
/* The shadow behind the image */
|
||||
.mfp-figure {
|
||||
line-height: 0; }
|
||||
.mfp-figure:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 40px;
|
||||
bottom: 40px;
|
||||
display: block;
|
||||
right: 0;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #444; }
|
||||
.mfp-figure small {
|
||||
color: #BDBDBD;
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 14px; }
|
||||
.mfp-figure figure {
|
||||
margin: 0; }
|
||||
|
||||
.mfp-bottom-bar {
|
||||
margin-top: -36px;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-title {
|
||||
text-align: left;
|
||||
line-height: 18px;
|
||||
color: #F3F3F3;
|
||||
word-wrap: break-word;
|
||||
padding-right: 36px; }
|
||||
|
||||
.mfp-image-holder .mfp-content {
|
||||
max-width: 100%; }
|
||||
|
||||
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||
cursor: pointer; }
|
||||
|
||||
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
||||
/**
|
||||
* Remove all paddings around the image on small screen
|
||||
*/
|
||||
.mfp-img-mobile .mfp-image-holder {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
.mfp-img-mobile img.mfp-img {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-figure:after {
|
||||
top: 0;
|
||||
bottom: 0; }
|
||||
.mfp-img-mobile .mfp-figure small {
|
||||
display: inline;
|
||||
margin-left: 5px; }
|
||||
.mfp-img-mobile .mfp-bottom-bar {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
top: auto;
|
||||
padding: 3px 5px;
|
||||
position: fixed;
|
||||
box-sizing: border-box; }
|
||||
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-counter {
|
||||
right: 5px;
|
||||
top: 3px; }
|
||||
.mfp-img-mobile .mfp-close {
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
padding: 0; } }
|
||||
|
||||
@media all and (max-width: 900px) {
|
||||
.mfp-arrow {
|
||||
-webkit-transform: scale(0.75);
|
||||
transform: scale(0.75); }
|
||||
.mfp-arrow-left {
|
||||
-webkit-transform-origin: 0;
|
||||
transform-origin: 0; }
|
||||
.mfp-arrow-right {
|
||||
-webkit-transform-origin: 100%;
|
||||
transform-origin: 100%; }
|
||||
.mfp-container {
|
||||
padding-left: 6px;
|
||||
padding-right: 6px; } }
|
||||
@@ -0,0 +1,113 @@
|
||||
.appie-loader {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.appie-loader {
|
||||
opacity: 0;
|
||||
}
|
||||
.appie-loader.active {
|
||||
opacity: 100;
|
||||
}
|
||||
.appie-visible {
|
||||
transition: all 0.5s ease-in-out;
|
||||
}
|
||||
.appie-visible {
|
||||
opacity: 0;
|
||||
}
|
||||
.appie-visible.active {
|
||||
opacity: 100;
|
||||
}
|
||||
/* .appie-home-loader {
|
||||
transition: all 0.5s ease-in-out;
|
||||
} */
|
||||
.offcanvas_main_menu li ul.sub-menu {
|
||||
padding-left: 20 px;
|
||||
overflow: hidden;
|
||||
transition: all linear 0.65s;
|
||||
}
|
||||
.appie-fun-fact-box .appie-fun-fact-content .appie-fun-fact-item .title span {
|
||||
font-size: 30px !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
.home-four-project {
|
||||
background: #eef1f6;
|
||||
}
|
||||
.home-four-footer {
|
||||
background: #ffffff;
|
||||
}
|
||||
.slick-dots li button:before {
|
||||
content: "";
|
||||
}
|
||||
.appie-showcase-item {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@media (min-width: 1400px) {
|
||||
.container-xxl,
|
||||
.container-xl,
|
||||
.container-lg,
|
||||
.container-md,
|
||||
.container-sm,
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
.appie-services-2-area.appie-services-8-area {
|
||||
overflow: hidden;
|
||||
}
|
||||
@media only screen and (min-width: 300px) and (max-width: 1024px) {
|
||||
.appie-services-8-area .service-thumb {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
.save-comment input:checked + label::after {
|
||||
font-family: "Font Awesome 5 Pro";
|
||||
content: "\f00c";
|
||||
}
|
||||
.appie-testimonial-area {
|
||||
overflow: hidden;
|
||||
}
|
||||
.testimonial-about-slider-active .testimonial-parent-item {
|
||||
display: flex !important;
|
||||
justify-content: center;
|
||||
}
|
||||
.testimonial-box {
|
||||
width: 770px !important;
|
||||
}
|
||||
.testimonial-box-about-slider-small-active
|
||||
.slick-center.slick-current
|
||||
.item
|
||||
.thumb
|
||||
img {
|
||||
width: 70px;
|
||||
display: inline-block;
|
||||
}
|
||||
.testimonial-box-about-slider-small-active .item .thumb img {
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
}
|
||||
.testimonial-box-about-slider-small-active .item .thumb {
|
||||
align-items: center;
|
||||
}
|
||||
.testimonial-box-about-slider-small-active .slick-center.slick-current .item {
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 300px) and (max-width: 1024px) {
|
||||
.testimonial-about-slider-active .testimonial-box {
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 770px) and (max-width: 1024px) {
|
||||
.testimonial-about-slider-active .slick-arrow.next {
|
||||
right: 15px;
|
||||
}
|
||||
.testimonial-about-slider-active .slick-arrow.prev {
|
||||
left: 15px;
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 8.9 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 430 B |
|
After Width: | Height: | Size: 430 B |
|
After Width: | Height: | Size: 430 B |
|
After Width: | Height: | Size: 430 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 205 B |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 766 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 219 KiB |
|
After Width: | Height: | Size: 171 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 599 B |
|
After Width: | Height: | Size: 901 B |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 736 B |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="24" viewBox="0 0 28 24">
|
||||
<image id="icon" width="28" height="24" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAYCAYAAADpnJ2CAAACM0lEQVRIic2WTYhOYRTH/2e8WcjM5GssmLIQokwpKUZNyoZYKAsiEgspWRHFethKKbExPhb2NoMosjLMKBsWSmOaedXE0DTD/PTUc3W63a/3svDfvPd9nnP+v3vOe9/nXFMFAWskHZTUJ2m9pKWS5iQ1JQ1JeizptpmNlboBV4FnwPKMvW7gDjBHuWaB68DiIp4Fm3h92MwGHGy/pBuSOuPSrKQXkl5KGpU0T1K3pF5Jm53nuKR9ZvY8r8JER93aWbf+C7gGrCjo0trYiUQzwN5KQOCSWxsFtha1KOW1B/gac38APYVAoN99fw+srApzfr0RFvQKaOQBH7rrkTow53nKeR3PA3rYsrqw6BkexqHo99bv+ac06JukkfhEJpqQdMLMJluEHpB0V9K0pHYz+5lXYZZ21azyELAtXeFNSVskDUuaycgNFV40s+lWof+FKp2lVQXMl7QgJ7xhZs1/CdsEfC95Fj63uYQ24D7wBOiowVxVUF2irj8tBZbEcRN0zsyutFhh8NodR1eicLAfcz/dVDrpUSx9HOhMm7Z4AyddK6fi52Q6aLsLuvcXsNPO5xNwORMYg2+54P4asPMp2GrgTBFwoTsHgwaARRVAHeEQcXkfAizu5QNjQBfwxiU345zckBG7DrgAjLn4d37alAJjUHtqinv4MPAamMjYf5DuCHAk7n0s61QI7gMGK7xIPQV25ng04oDvqXy0hTc4STskbYz/tZD7RVKYd4NmVn73kn4DdkI/JOBbSQsAAAAASUVORK5CYII="/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="30" viewBox="0 0 30 30">
|
||||
<image id="icon" width="30" height="30" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAACuklEQVRIibWXzUtVURTF17molRVWEKGBSQ0jssBBEEIUQiCBRk2iQdDEWY50oETDBhrYxD8gK4KaCg1CqInRJDAjiSBwIIE9zErD8hdHzqXt6V7ffY/nmrx77z57rfO1P55TAQBNknolnZfULumopF3BsyTpo6RpSZOSnjvnfhfhzQXQBowDqxTHAjAINFYjmAADwM8MOT+JWWAKeAV8Av5kjPsMdFUiugeYjEiWgTHgLFCX4dME9ADPgHXj55+Hi4pOR45ecF8FEz8OvIgmPrqVQxKtdKmirdrM5YChSLw/b/BAJHqyGtGIs89wrgEd8YA2c5HWq11pjviIEX/jd9Yax41xrFaigbsemDH8vamhycTpctZFAvYCt4GrOeQN4ahu5tgvGuGp9OONcqsNoilaM+yW40yG3V+2D2bM4SSkwRRPcnbsffhdkPQ1w+5Tpk+T3yTNx0bnHJIem0/nZPZ/NSs5mFm3+jjfwt4CHNjCfmFTXJvbPJvnVAuEiaV4mpgq82U7haMj2p+Yl9xtrhEs/1oS6qlHyzYLHzLPpbpwI30qO+Jj2jm3ZEcDvuh3S0r+58rEiqQHzrkfkbHdPM954vvm0HtiJuAtleNuBo/Njt1JaFdSXM9YwmLBlVpsinXAX+Ar4XVV0pQLsTsfzsAH+gnn3DvjtFtSp6QdFYi+DEkj5bgl6V54feicu5YaBs02+CJeqAksAqAZKBn+U3YrGkOPlGKoRqINUTcykTWoK+qX+mog+sjw+e7zYN7g4ej++iJeX4Voc7TSX0BnOafRSHwm1NOy5+5vr79I0Zl60UtFZ9wfeiQLX0/vhCrjE/7O0JUeAy6HOF2MfBbKrjRDvCP0SNViIvdMC4j7lrc3/GsogpUg+C9kclA4Xn27stE5SKd9XvelzVeZUGTmJL3eyEjOfS9LJukv6MpxdJL6cS0AAAAASUVORK5CYII="/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="25" height="27" viewBox="0 0 25 27">
|
||||
<image id="lock" width="25" height="27" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAbCAYAAACJISRoAAABZElEQVRIie2WvUoDURCFv40SSGFlIf4UPoFNrE0jSBDfQbCzyCvE97AR8ggWYiVoyqTJA4ii0TRCSBMQzZGJg1yi2R+yWkhOs+ydM+fcmbs7uyRBUlHSsaQrSX19ou/3tl5MFImDpLKkW8XD4uU4nWhaQNI2cA2UfOkZuAC6wDpQBVY9NgR2oihqZamgJOk+2H99si3exnrAMX5puup3k1qQfJLAPQm4tSwmTU/qJR2sV9RzfjOLycCTGin5DecPfooXpuQt+fUl5b4eJvJSmWTFaxw/L5NY/InJGJIqkm4kDRPe7rQYul7F9CNJu8DlL1U1AvbMxEaBzZ534Ax4BDaBNaCVdKgOe5dsDD0Bd8AGcAgsAG1r1chbcJpnCabnuqNCMCS7eZoEetH/eYTnJnMTVnLW/tJbBDrAFnAk6S3DhyoOy6bnhI7Nrn3gPO73aAYIOBjnS6pKagdzbFaYjulVAT4AtbS9cZ/NC0QAAAAASUVORK5CYII="/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 764 B |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="25" height="25" viewBox="0 0 25 25">
|
||||
<image id="icon" width="25" height="25" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAB80lEQVRIia2VP2tTYRTGn5sKwQSyKnQoiBQco1QcFTrkA2R0CNlKv0HH7n6PDN06uNatlRpx6hDq4iBIh6hFCdT+5Oh542m4/6j3gXDznvO8z3PPe869V2UAesAImADnwBV/ceXried7pUJ5ADrAPjCnHubO7+TpZasBoC/pQNKDEP4p6a2kM0kLSW1JjyQ9lXQ38D5KGmZZ9r6sgm3gR7j3GTAGugX8rudnYY/t3y4y6K8YvALaNY+37fxo1F8ldbyRCTt1xHPMdoLG+Y0eedOWFdzGIGjFivZTsBemaFb3iEpM2qFH8z/j7XOeMP4fg2A0Dpoj+QOVmpU7Rbcw6YYhmig0/KgJg2B0lAagJWnD42dNmgS9DTNZ88XXhk2++XXtTgjeB577f3t1TLMsW9RV9Kl87K8cw72YLMIFMKxpMHR+LspM8Ff6VoXBVvgE5KIV+B8kvfDfnsesX7sVheyGvu4FjX+DFJxvjDDwrs5oA2+cd7oSP07CreLt+l5RwVLPr5dFhDKTxhBN5g1rL5+7Vij3IgUB+yyv+/K6Qizl131fwuckZw/jVNITSSMnfZL0TNJDJ00rTCxv02T818CJ3+DLZR4YAL8KRvwLkCrKheWdlwfTHaTjMaNT4NqZC+AQ2KyoIu3fdL7tM5iO6Q0k6TeUktts4CGjcQAAAABJRU5ErkJggg=="/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 956 B |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg height="25" width="25" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
||||
</style>
|
||||
<path class="st0" d="M4,3h16c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V5C2,3.9,2.9,3,4,3z"/>
|
||||
<line class="st0" x1="8" y1="21" x2="16" y2="21"/>
|
||||
<line class="st0" x1="12" y1="17" x2="12" y2="21"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 707 B |
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg height="25px" width="25px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
||||
</style>
|
||||
<path class="st0" d="M17,21v-2c0-2.2-1.8-4-4-4H5c-2.2,0-4,1.8-4,4v2"/>
|
||||
<circle class="st0" cx="9" cy="7" r="4"/>
|
||||
<path class="st0" d="M23,21v-2c0-1.8-1.2-3.4-3-3.9"/>
|
||||
<path class="st0" d="M16,3.1c2.1,0.5,3.4,2.7,2.9,4.9c-0.4,1.4-1.5,2.5-2.9,2.9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 751 B |
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg height="25px" width="25px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
||||
</style>
|
||||
<path class="st0" d="M6,2h12c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V4C4,2.9,4.9,2,6,2z"/>
|
||||
<line class="st0" x1="12" y1="18" x2="12" y2="18"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 660 B |
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" enable-background="new 0 0 512 512" height="64px" viewBox="0 0 512 512" width="64px" xmlns="http://www.w3.org/2000/svg"><path id="XMLID_802_" d="m428.842 321.658c0 62.805-50.913 36.579-113.718 36.579s-113.718 26.226-113.718-36.579 50.913-113.718 113.718-113.718 113.718 50.914 113.718 113.718z" fill="#6d81d5"/><g fill="#5169cd"><path id="XMLID_803_" d="m303.168 358.535c-57.189 2.701-101.76 21.884-101.76-36.872 0-32.388 13.545-61.611 35.264-82.33 37.757 27.038 63.27 70.126 66.496 119.202z"/><path id="XMLID_804_" d="m428.843 321.663c0 40.253-20.915 43.933-52.478 41.376 17.781-2.422 28.574-12.452 28.574-41.376 0-58.766-44.572-107.121-101.76-113.089 3.927-.423 7.906-.629 11.947-.629 62.806.001 113.717 50.912 113.717 113.718z"/><path id="XMLID_805_" d="m422.895 285.266c-.32.01-.629.01-.948.01-34.758 0-65.631-16.895-84.866-42.892-6.968 2.072-14.328 3.206-21.956 3.206-21.616 0-41.18-8.968-55.148-23.389 16.328-9.092 35.13-14.256 55.148-14.256 50.076.001 92.597 32.368 107.77 77.321z"/></g><circle id="XMLID_1170_" cx="315.124" cy="168.767" fill="#8897dc" r="61.363"/><path id="XMLID_807_" d="m376.489 168.765c0 29.306-20.544 53.808-48.015 59.9-7.69-14.627-12.04-31.264-12.04-48.901 0-25.388 9.009-48.705 23.997-66.919 21.266 9.637 36.058 31.047 36.058 55.92z" fill="#6d81d5"/><path id="XMLID_809_" d="m288.05 369.088c0 79.543-64.482 46.327-144.025 46.327s-144.025 33.216-144.025-46.327 64.482-144.025 144.025-144.025 144.025 64.482 144.025 144.025z" fill="#64b9fc"/><path id="XMLID_810_" d="m210.097 241.096c-16.884 16.998-40.273 27.533-66.074 27.533s-49.19-10.545-66.064-27.543c19.791-10.236 42.252-16.019 66.064-16.019s46.283 5.783 66.074 16.029z" fill="#31a7fb"/><path id="XMLID_811_" d="m288.046 369.09c0 49.282-24.76 55.282-62.518 52.694 23.956-2.484 38.624-14.771 38.624-52.694 0-75.516-58.127-137.457-132.076-143.528 3.938-.33 7.927-.495 11.947-.495 79.547 0 144.023 64.477 144.023 144.023z" fill="#31a7fb"/><circle id="XMLID_1163_" cx="144.025" cy="175.45" fill="#8dcafc" r="77.717"/><path id="XMLID_813_" d="m221.745 175.455c0 42.912-34.8 77.712-77.722 77.712-4.123 0-8.164-.319-12.112-.938 37.171-5.814 65.61-37.985 65.61-76.774 0-38.799-28.44-70.971-65.61-76.784 3.948-.619 7.989-.938 12.112-.938 42.923 0 77.722 34.8 77.722 77.722z" fill="#64b9fc"/><circle id="XMLID_1158_" cx="421.947" cy="179.761" fill="#ec6264" r="90.053"/><path id="XMLID_815_" d="m511.996 179.756c0 49.736-40.314 90.061-90.05 90.061-4.793 0-9.494-.371-14.081-1.103 43.036-6.752 75.96-44.015 75.96-88.958 0-44.932-32.924-82.196-75.96-88.948 4.587-.732 9.288-1.103 14.081-1.103 49.735 0 90.05 40.325 90.05 90.051z" fill="#e64649"/><path id="XMLID_816_" d="m438.953 212.058h-9.28v-72.321c0-4.267-3.459-7.726-7.726-7.726h-11.728c-4.267 0-7.726 3.459-7.726 7.726s3.459 7.726 7.726 7.726h4.002v64.595h-9.28c-4.267 0-7.726 3.459-7.726 7.726s3.459 7.726 7.726 7.726h34.013c4.267 0 7.726-3.459 7.726-7.726 0-4.266-3.46-7.726-7.727-7.726z" fill="#eff5f6"/></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg height="64px" width="64px" version="1.1" id="Icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 477.1" style="enable-background:new 0 0 512 477.1;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#D6AA49;}
|
||||
.st1{fill:#2783EC;}
|
||||
.st2{fill:#439AF6;}
|
||||
.st3{fill:#F0F2F5;}
|
||||
.st4{fill:#FCCB55;}
|
||||
.st5{fill:#FFD880;}
|
||||
.st6{fill:#1F61A3;}
|
||||
.st7{fill:#FFE7B3;}
|
||||
</style>
|
||||
<path class="st0" d="M358.4,341.5h51.2v93.9h-51.2V341.5z"/>
|
||||
<path class="st1" d="M52.7,349.9h-1.5c-24-0.9-42.9-20.7-42.7-44.7V25.6c0-9.4,7.7-17,17.1-17.1h120.9c4.5,0,8.9,1.8,12.1,5
|
||||
l24.1,24.1c3.2,3.2,7.6,5,12.1,5h103.9c9.4,0,17,7.7,17.1,17.1v34.1l-221.9,256L52.7,349.9z"/>
|
||||
<path class="st2" d="M401.1,110.9v238.9H52.7c23-0.8,41.2-19.7,41.1-42.7V110.9c0-9.4,7.7-17,17.1-17.1H384
|
||||
C393.4,93.9,401,101.5,401.1,110.9z"/>
|
||||
<path class="st3" d="M136.5,128h102.4c4.7,0,8.5,3.8,8.5,8.5v51.2c0,4.7-3.8,8.5-8.5,8.5H136.5c-4.7,0-8.5-3.8-8.5-8.5v-51.2
|
||||
C128,131.8,131.8,128,136.5,128z"/>
|
||||
<path class="st4" d="M349.9,418.3h68.3c18.9,0,34.1,15.3,34.1,34.1v8.5c0,4.7-3.8,8.5-8.5,8.5H324.3c-4.7,0-8.5-3.8-8.5-8.5v-8.5
|
||||
C315.7,433.5,331,418.3,349.9,418.3z"/>
|
||||
<path class="st5" d="M324.3,315.9c-9.4-4.1-17.9-10.2-24.7-17.9c-22.4-22.4-35-52.8-35-84.5c0-4.7,3.8-8.5,8.5-8.5h221.9
|
||||
c4.7,0,8.5,3.8,8.5,8.5c0,31.7-12.6,62.1-35,84.5c-6.9,7.7-15.3,13.8-24.7,17.9H324.3z"/>
|
||||
<path class="st4" d="M324.3,179.3h119.5c4.7,0,8.5,3.8,8.5,8.5v110.9c0,37.7-30.6,68.3-68.3,68.3s-68.3-30.6-68.3-68.3V187.9
|
||||
C315.7,183.2,319.6,179.3,324.3,179.3z"/>
|
||||
<path class="st6" d="M230.4,238.9h-93.9c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5h93.9c4.7,0,8.5,3.8,8.5,8.5
|
||||
S235.1,238.9,230.4,238.9z"/>
|
||||
<path class="st6" d="M196.3,273.1h-59.7c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5h59.7c4.7,0,8.5,3.8,8.5,8.5S201,273.1,196.3,273.1z
|
||||
"/>
|
||||
<g>
|
||||
<path class="st7" d="M349.9,230.5c-4.7,0-8.5-3.8-8.5-8.5v-8.5c0-4.7,3.8-8.5,8.5-8.5c4.7,0,8.5,3.8,8.5,8.5v8.5
|
||||
C358.4,226.7,354.6,230.5,349.9,230.5z"/>
|
||||
<path class="st7" d="M384,341.5c-23.6,0-42.6-19.1-42.7-42.7v-42.7c0-4.7,3.8-8.5,8.5-8.5c4.7,0,8.5,3.8,8.5,8.5v42.7
|
||||
c0,14.1,11.5,25.6,25.6,25.6c4.7,0,8.5,3.8,8.5,8.5S388.7,341.5,384,341.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg id="Capa_1" enable-background="new 0 0 512 512" height="64px" viewBox="0 0 512 512" width="64px" xmlns="http://www.w3.org/2000/svg"><g><g><g><g><path d="m215.008 226.584c5.882-13.617 9.148-28.628 9.148-44.404 0-61.899-50.179-112.078-112.078-112.078s-112.078 50.179-112.078 112.077 50.179 112.078 112.078 112.078c14.765 0 28.86-2.861 41.77-8.049 11.614-27.102 33.709-48.686 61.16-59.624z" fill="#fd4755"/><g><path d="m43.176 182.179c0-54.513 38.922-99.929 90.49-109.992-6.987-1.363-14.202-2.086-21.588-2.086-61.899.001-112.078 50.179-112.078 112.078s50.179 112.078 112.078 112.078c7.386 0 14.601-.722 21.588-2.086-51.568-10.063-90.49-55.478-90.49-109.992z" fill="#fb2b3a"/></g><g><path d="m147.691 245.195c-4.143 0-7.5-3.358-7.5-7.5 0-15.502-12.611-28.114-28.113-28.114s-28.113 12.612-28.113 28.114c0 4.142-3.357 7.5-7.5 7.5s-7.5-3.358-7.5-7.5c0-23.773 19.341-43.114 43.113-43.114s43.113 19.341 43.113 43.114c0 4.142-3.357 7.5-7.5 7.5z" fill="#c41926"/></g><g><g><path d="m82.176 165.588h-24.626c-4.143 0-7.5-3.358-7.5-7.5s3.357-7.5 7.5-7.5h24.626c4.143 0 7.5 3.358 7.5 7.5s-3.358 7.5-7.5 7.5z" fill="#c41926"/></g><g><path d="m166.605 165.588h-24.625c-4.143 0-7.5-3.358-7.5-7.5s3.357-7.5 7.5-7.5h24.625c4.143 0 7.5 3.358 7.5 7.5s-3.357 7.5-7.5 7.5z" fill="#c41926"/></g></g></g></g></g><g><path d="m297.769 225.792c-12.909-5.188-27.004-8.049-41.769-8.049-61.899 0-112.078 50.179-112.078 112.078s50.179 112.077 112.078 112.077 112.078-50.179 112.078-112.078c0-15.776-3.266-30.788-9.148-44.404-27.451-10.938-49.546-32.522-61.161-59.624z" fill="#fed402"/><g><path d="m186.978 329.821c0-54.535 38.952-99.964 90.55-110.004-6.968-1.356-14.163-2.074-21.528-2.074-61.899 0-112.078 50.179-112.078 112.078s50.179 112.078 112.078 112.078c7.364 0 14.56-.718 21.528-2.074-51.598-10.04-90.55-55.47-90.55-110.004z" fill="#fac600"/></g><g><g><path d="m224.576 323.704c-4.143 0-7.5-3.358-7.5-7.5v-21.997c0-4.142 3.357-7.5 7.5-7.5s7.5 3.358 7.5 7.5v21.997c0 4.142-3.357 7.5-7.5 7.5z" fill="#fb8801"/></g><g><path d="m287.424 323.704c-4.143 0-7.5-3.358-7.5-7.5v-21.997c0-4.142 3.357-7.5 7.5-7.5s7.5 3.358 7.5 7.5v21.997c0 4.142-3.358 7.5-7.5 7.5z" fill="#fb8801"/></g></g><g><path d="m293.185 372.934h-74.369c-4.143 0-7.5-3.358-7.5-7.5s3.357-7.5 7.5-7.5h74.369c4.143 0 7.5 3.358 7.5 7.5s-3.358 7.5-7.5 7.5z" fill="#fb8801"/></g></g><g><g><circle cx="399.922" cy="182.179" fill="#97d729" r="112.078"/></g><g><path d="m330.597 182.179c0-54.588 39.028-100.053 90.702-110.033-6.921-1.337-14.065-2.045-21.376-2.045-61.899 0-112.078 50.179-112.078 112.078s50.179 112.078 112.078 112.078c7.311 0 14.456-.708 21.376-2.045-51.674-9.98-90.702-55.445-90.702-110.033z" fill="#8bc727"/></g><g><path d="m399.922 245.195c-23.772 0-43.113-19.341-43.113-43.114 0-4.142 3.357-7.5 7.5-7.5s7.5 3.358 7.5 7.5c0 15.502 12.611 28.114 28.113 28.114s28.113-12.612 28.113-28.114c0-4.142 3.357-7.5 7.5-7.5s7.5 3.358 7.5 7.5c0 23.773-19.341 43.114-43.113 43.114z" fill="#78a91f"/></g><g><g><path d="m376.44 168.995c-4.143 0-7.5-3.358-7.5-7.5 0-5.751-4.679-10.43-10.43-10.43s-10.43 4.679-10.43 10.43c0 4.142-3.357 7.5-7.5 7.5s-7.5-3.358-7.5-7.5c0-14.022 11.407-25.43 25.43-25.43s25.43 11.408 25.43 25.43c0 4.142-3.357 7.5-7.5 7.5z" fill="#78a91f"/></g><g><path d="m459.264 168.995c-4.143 0-7.5-3.358-7.5-7.5 0-5.751-4.679-10.43-10.431-10.43-5.751 0-10.43 4.679-10.43 10.43 0 4.142-3.357 7.5-7.5 7.5s-7.5-3.358-7.5-7.5c0-14.022 11.407-25.43 25.43-25.43s25.431 11.408 25.431 25.43c0 4.142-3.358 7.5-7.5 7.5z" fill="#78a91f"/></g></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.3 KiB |