first commit
@@ -0,0 +1,7 @@
|
||||
import Routes from './Routes';
|
||||
|
||||
function App() {
|
||||
return <Routes />;
|
||||
}
|
||||
|
||||
export default App;
|
||||
@@ -0,0 +1,8 @@
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import App from './App';
|
||||
|
||||
test('renders learn react link', () => {
|
||||
render(<App />);
|
||||
const linkElement = screen.getByText(/learn react/i);
|
||||
expect(linkElement).toBeInTheDocument();
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
import { useState } from 'react';
|
||||
|
||||
function useToggle(initValue = false) {
|
||||
const [value, setValue] = useState(initValue);
|
||||
return [
|
||||
value,
|
||||
{
|
||||
set: setValue,
|
||||
toggle: (e) => {
|
||||
e.preventDefault();
|
||||
setValue((flag) => !flag);
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
export default useToggle;
|
||||
@@ -0,0 +1,64 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
|
||||
import AboutUs from './components/AboutUs';
|
||||
import Contact from './components/Contact';
|
||||
import Error from './components/Error';
|
||||
import Loader from './components/Helper/Loader';
|
||||
import ScrollToTop from './components/Helper/ScrollToTop';
|
||||
import HomeEight from './components/HomeEight';
|
||||
import HomeFive from './components/HomeFive';
|
||||
import HomeFour from './components/HomeFour';
|
||||
import HomeOne from './components/HomeOne';
|
||||
import HomeSeven from './components/HomeSeven';
|
||||
import HomeSix from './components/HomeSix';
|
||||
import HomeThree from './components/HomeThree';
|
||||
import Hometwo from './components/HomeTwo';
|
||||
import News from './components/News';
|
||||
import SingleNews from './components/News/SingleNews';
|
||||
import Service from './components/Service';
|
||||
|
||||
function Routes() {
|
||||
const [loading, setLoading] = useState(true);
|
||||
useEffect(() => {
|
||||
window.scrollTo(0, 0);
|
||||
});
|
||||
useEffect(() => {
|
||||
setTimeout(() => {
|
||||
setLoading(false);
|
||||
}, 2000);
|
||||
});
|
||||
return (
|
||||
<>
|
||||
{loading && (
|
||||
<div className={`appie-loader ${loading ? 'active' : ''}`}>
|
||||
<Loader />
|
||||
</div>
|
||||
)}
|
||||
<div className={`appie-visible ${loading === false ? 'active' : ''}`}>
|
||||
<Router>
|
||||
<ScrollToTop>
|
||||
<Switch>
|
||||
<Route exact path="/" component={HomeOne} />
|
||||
<Route exact path="/home-two" component={Hometwo} />
|
||||
<Route exact path="/home-three" component={HomeThree} />
|
||||
<Route exact path="/home-four" component={HomeFour} />
|
||||
<Route exact path="/home-five" component={HomeFive} />
|
||||
<Route exact path="/home-six" component={HomeSix} />
|
||||
<Route exact path="/home-seven" component={HomeSeven} />
|
||||
<Route exact path="/home-eight" component={HomeEight} />
|
||||
<Route exact path="/news" component={News} />
|
||||
<Route exact path="/news/single-news" component={SingleNews} />
|
||||
<Route exact path="/service" component={Service} />
|
||||
<Route exact path="/about-us" component={AboutUs} />
|
||||
<Route exact path="/contact" component={Contact} />
|
||||
<Route exact path="/error" component={Error} />
|
||||
<Route component={Error} />
|
||||
</Switch>
|
||||
</ScrollToTop>
|
||||
</Router>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default Routes;
|
||||
@@ -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 |