diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml new file mode 100644 index 0000000..559bddf --- /dev/null +++ b/.github/workflows/github-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83fa414 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +*.class +*.pyc + +# Folders +build +devel +dist + +# Package Files # +*.jar +*.war +*.ear + +# Scripts +init_setup.sh +repository_recal.sh +push.sh +publish.sh +ros_publish.sh +prerelease_test.sh +errors_fix.sh diff --git a/assets/css/animate.min.css b/assets/css/animate.min.css new file mode 100755 index 0000000..3129b08 --- /dev/null +++ b/assets/css/animate.min.css @@ -0,0 +1,3179 @@ +@charset "UTF-8"; +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both +} + +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite +} + +@-webkit-keyframes bounce { + 0%, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1); + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06); + animation-timing-function: cubic-bezier(.755, .05, .855, .06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0) + } + 70% { + -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06); + animation-timing-function: cubic-bezier(.755, .05, .855, .06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0) + } + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0) + } +} + +@keyframes bounce { + 0%, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1); + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06); + animation-timing-function: cubic-bezier(.755, .05, .855, .06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0) + } + 70% { + -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06); + animation-timing-function: cubic-bezier(.755, .05, .855, .06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0) + } + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0) + } +} + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom +} + +@-webkit-keyframes flash { + 0%, + 50%, + to { + opacity: 1 + } + 25%, + 75% { + opacity: 0 + } +} + +@keyframes flash { + 0%, + 50%, + to { + opacity: 1 + } + 25%, + 75% { + opacity: 0 + } +} + +.flash { + -webkit-animation-name: flash; + animation-name: flash +} + +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +@keyframes pulse { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse +} + +@-webkit-keyframes rubberBand { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 30% { + -webkit-transform: scale3d(1.25, .75, 1); + transform: scale3d(1.25, .75, 1) + } + 40% { + -webkit-transform: scale3d(.75, 1.25, 1); + transform: scale3d(.75, 1.25, 1) + } + 50% { + -webkit-transform: scale3d(1.15, .85, 1); + transform: scale3d(1.15, .85, 1) + } + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1) + } + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +@keyframes rubberBand { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 30% { + -webkit-transform: scale3d(1.25, .75, 1); + transform: scale3d(1.25, .75, 1) + } + 40% { + -webkit-transform: scale3d(.75, 1.25, 1); + transform: scale3d(.75, 1.25, 1) + } + 50% { + -webkit-transform: scale3d(1.15, .85, 1); + transform: scale3d(1.15, .85, 1) + } + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1) + } + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand +} + +@-webkit-keyframes shake { + 0%, + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0) + } + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0) + } +} + +@keyframes shake { + 0%, + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0) + } + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0) + } +} + +.shake { + -webkit-animation-name: shake; + animation-name: shake +} + +@-webkit-keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0) + } + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg) + } + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg) + } + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg) + } + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg) + } + 50% { + -webkit-transform: translateX(0); + transform: translateX(0) + } +} + +@keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0) + } + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg) + } + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg) + } + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg) + } + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg) + } + 50% { + -webkit-transform: translateX(0); + transform: translateX(0) + } +} + +.headShake { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake +} + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg) + } + 40% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg) + } + 60% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg) + } + 80% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg) + } + to { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } +} + +@keyframes swing { + 20% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg) + } + 40% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg) + } + 60% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg) + } + 80% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg) + } + to { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } +} + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing +} + +@-webkit-keyframes tada { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 10%, + 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg); + transform: scale3d(.9, .9, .9) rotate(-3deg) + } + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(3deg) + } + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +@keyframes tada { + 0% { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } + 10%, + 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg); + transform: scale3d(.9, .9, .9) rotate(-3deg) + } + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(3deg) + } + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg) + } + to { + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +.tada { + -webkit-animation-name: tada; + animation-name: tada +} + +@-webkit-keyframes wobble { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); + transform: translate3d(-25%, 0, 0) rotate(-5deg) + } + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); + transform: translate3d(20%, 0, 0) rotate(3deg) + } + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); + transform: translate3d(-15%, 0, 0) rotate(-3deg) + } + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); + transform: translate3d(10%, 0, 0) rotate(2deg) + } + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); + transform: translate3d(-5%, 0, 0) rotate(-1deg) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes wobble { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg); + transform: translate3d(-25%, 0, 0) rotate(-5deg) + } + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate(3deg); + transform: translate3d(20%, 0, 0) rotate(3deg) + } + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg); + transform: translate3d(-15%, 0, 0) rotate(-3deg) + } + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate(2deg); + transform: translate3d(10%, 0, 0) rotate(2deg) + } + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg); + transform: translate3d(-5%, 0, 0) rotate(-1deg) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble +} + +@-webkit-keyframes jello { + 0%, + 11.1%, + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg) + } + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg) + } + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg) + } + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg) + } + 66.6% { + -webkit-transform: skewX(-.78125deg) skewY(-.78125deg); + transform: skewX(-.78125deg) skewY(-.78125deg) + } + 77.7% { + -webkit-transform: skewX(.390625deg) skewY(.390625deg); + transform: skewX(.390625deg) skewY(.390625deg) + } + 88.8% { + -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg); + transform: skewX(-.1953125deg) skewY(-.1953125deg) + } +} + +@keyframes jello { + 0%, + 11.1%, + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg) + } + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg) + } + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg) + } + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg) + } + 66.6% { + -webkit-transform: skewX(-.78125deg) skewY(-.78125deg); + transform: skewX(-.78125deg) skewY(-.78125deg) + } + 77.7% { + -webkit-transform: skewX(.390625deg) skewY(.390625deg); + transform: skewX(.390625deg) skewY(.390625deg) + } + 88.8% { + -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg); + transform: skewX(-.1953125deg) skewY(-.1953125deg) + } +} + +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + transform-origin: center +} + +@-webkit-keyframes bounceIn { + 0%, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1) + } + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03) + } + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97) + } + to { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +@keyframes bounceIn { + 0%, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1) + } + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03) + } + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97) + } + to { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1) + } +} + +.bounceIn { + -webkit-animation-duration: .75s; + animation-duration: .75s; + -webkit-animation-name: bounceIn; + animation-name: bounceIn +} + +@-webkit-keyframes bounceInDown { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0) + } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0) + } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes bounceInDown { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0) + } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0) + } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown +} + +@-webkit-keyframes bounceInLeft { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0) + } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0) + } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes bounceInLeft { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0) + } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0) + } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft +} + +@-webkit-keyframes bounceInRight { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0) + } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0) + } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes bounceInRight { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0) + } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0) + } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight +} + +@-webkit-keyframes bounceInUp { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0) + } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0) + } + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes bounceInUp { + 0%, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1); + animation-timing-function: cubic-bezier(.215, .61, .355, 1) + } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0) + } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0) + } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0) + } + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0) + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp +} + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9) + } + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1) + } + to { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } +} + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9) + } + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1) + } + to { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } +} + +.bounceOut { + -webkit-animation-duration: .75s; + animation-duration: .75s; + -webkit-animation-name: bounceOut; + animation-name: bounceOut +} + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0) + } + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } +} + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0) + } + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } +} + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown +} + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } +} + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft +} + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } +} + +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight +} + +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0) + } + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } +} + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0) + } + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0) + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } +} + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp +} + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0 + } + to { + opacity: 1 + } +} + +@keyframes fadeIn { + 0% { + opacity: 0 + } + to { + opacity: 1 + } +} + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn +} + +@-webkit-keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown +} + +@-webkit-keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig +} + +@-webkit-keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft +} + +@-webkit-keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig +} + +@-webkit-keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight +} + +@-webkit-keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig +} + +@-webkit-keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp +} + +@-webkit-keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig +} + +@-webkit-keyframes fadeOut { + 0% { + opacity: 1 + } + to { + opacity: 0 + } +} + +@keyframes fadeOut { + 0% { + opacity: 1 + } + to { + opacity: 0 + } +} + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut +} + +@-webkit-keyframes fadeOutDown { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } +} + +@keyframes fadeOutDown { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } +} + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown +} + +@-webkit-keyframes fadeOutDownBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } +} + +@keyframes fadeOutDownBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0) + } +} + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig +} + +@-webkit-keyframes fadeOutLeft { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } +} + +@keyframes fadeOutLeft { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } +} + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft +} + +@-webkit-keyframes fadeOutLeftBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } +} + +@keyframes fadeOutLeftBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0) + } +} + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig +} + +@-webkit-keyframes fadeOutRight { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } +} + +@keyframes fadeOutRight { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } +} + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight +} + +@-webkit-keyframes fadeOutRightBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } +} + +@keyframes fadeOutRightBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0) + } +} + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig +} + +@-webkit-keyframes fadeOutUp { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } +} + +@keyframes fadeOutUp { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } +} + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp +} + +@-webkit-keyframes fadeOutUpBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } +} + +@keyframes fadeOutUpBig { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0) + } +} + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig +} + +@-webkit-keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotateY(-1turn); + transform: perspective(400px) rotateY(-1turn); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); + transform: perspective(400px) translateZ(150px) rotateY(-190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); + transform: perspective(400px) translateZ(150px) rotateY(-170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } +} + +@keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotateY(-1turn); + transform: perspective(400px) rotateY(-1turn); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg); + transform: perspective(400px) translateZ(150px) rotateY(-190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg); + transform: perspective(400px) translateZ(150px) rotateY(-170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } +} + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip +} + +@-webkit-keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0 + } + 40% { + -webkit-transform: perspective(400px) rotateX(-20deg); + transform: perspective(400px) rotateX(-20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 60% { + -webkit-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); + opacity: 1 + } + 80% { + -webkit-transform: perspective(400px) rotateX(-5deg); + transform: perspective(400px) rotateX(-5deg) + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } +} + +@keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0 + } + 40% { + -webkit-transform: perspective(400px) rotateX(-20deg); + transform: perspective(400px) rotateX(-20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 60% { + -webkit-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); + opacity: 1 + } + 80% { + -webkit-transform: perspective(400px) rotateX(-5deg); + transform: perspective(400px) rotateX(-5deg) + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } +} + +.flipInX { + -webkit-backface-visibility: visible!important; + backface-visibility: visible!important; + -webkit-animation-name: flipInX; + animation-name: flipInX +} + +@-webkit-keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0 + } + 40% { + -webkit-transform: perspective(400px) rotateY(-20deg); + transform: perspective(400px) rotateY(-20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 60% { + -webkit-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); + opacity: 1 + } + 80% { + -webkit-transform: perspective(400px) rotateY(-5deg); + transform: perspective(400px) rotateY(-5deg) + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } +} + +@keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0 + } + 40% { + -webkit-transform: perspective(400px) rotateY(-20deg); + transform: perspective(400px) rotateY(-20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in + } + 60% { + -webkit-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); + opacity: 1 + } + 80% { + -webkit-transform: perspective(400px) rotateY(-5deg); + transform: perspective(400px) rotateY(-5deg) + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } +} + +.flipInY { + -webkit-backface-visibility: visible!important; + backface-visibility: visible!important; + -webkit-animation-name: flipInY; + animation-name: flipInY +} + +@-webkit-keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } + 30% { + -webkit-transform: perspective(400px) rotateX(-20deg); + transform: perspective(400px) rotateX(-20deg); + opacity: 1 + } + to { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0 + } +} + +@keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } + 30% { + -webkit-transform: perspective(400px) rotateX(-20deg); + transform: perspective(400px) rotateX(-20deg); + opacity: 1 + } + to { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + opacity: 0 + } +} + +.flipOutX { + -webkit-animation-duration: .75s; + animation-duration: .75s; + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible!important; + backface-visibility: visible!important +} + +@-webkit-keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } + 30% { + -webkit-transform: perspective(400px) rotateY(-15deg); + transform: perspective(400px) rotateY(-15deg); + opacity: 1 + } + to { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0 + } +} + +@keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px) + } + 30% { + -webkit-transform: perspective(400px) rotateY(-15deg); + transform: perspective(400px) rotateY(-15deg); + opacity: 1 + } + to { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0 + } +} + +.flipOutY { + -webkit-animation-duration: .75s; + animation-duration: .75s; + -webkit-backface-visibility: visible!important; + backface-visibility: visible!important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY +} + +@-webkit-keyframes lightSpeedIn { + 0% { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0 + } + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1 + } + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1 + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes lightSpeedIn { + 0% { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0 + } + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1 + } + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1 + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out +} + +@-webkit-keyframes lightSpeedOut { + 0% { + opacity: 1 + } + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0 + } +} + +@keyframes lightSpeedOut { + 0% { + opacity: 1 + } + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0 + } +} + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in +} + +@-webkit-keyframes rotateIn { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0 + } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes rotateIn { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0 + } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn +} + +@-webkit-keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft +} + +@-webkit-keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight +} + +@-webkit-keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft +} + +@-webkit-keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +@keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translateZ(0); + transform: translateZ(0); + opacity: 1 + } +} + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight +} + +@-webkit-keyframes rotateOut { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1 + } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0 + } +} + +@keyframes rotateOut { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1 + } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0 + } +} + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut +} + +@-webkit-keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } +} + +@keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + opacity: 0 + } +} + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft +} + +@-webkit-keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } +} + +@keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } +} + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight +} + +@-webkit-keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } +} + +@keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1 + } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + opacity: 0 + } +} + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft +} + +@-webkit-keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0 + } +} + +@keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1 + } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0 + } +} + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight +} + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 20%, + 60% { + -webkit-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 40%, + 80% { + -webkit-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1 + } + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0 + } +} + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 20%, + 60% { + -webkit-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 40%, + 80% { + -webkit-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1 + } + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0 + } +} + +.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-name: hinge; + animation-name: hinge +} + +@-webkit-keyframes jackInTheBox { + 0% { + opacity: 0; + -webkit-transform: scale(.1) rotate(30deg); + transform: scale(.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom + } + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg) + } + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg) + } + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1) + } +} + +@keyframes jackInTheBox { + 0% { + opacity: 0; + -webkit-transform: scale(.1) rotate(30deg); + transform: scale(.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom + } + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg) + } + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg) + } + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1) + } +} + +.jackInTheBox { + -webkit-animation-name: jackInTheBox; + animation-name: jackInTheBox +} + +@-webkit-keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); + transform: translate3d(-100%, 0, 0) rotate(-120deg) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg); + transform: translate3d(-100%, 0, 0) rotate(-120deg) + } + to { + opacity: 1; + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn +} + +@-webkit-keyframes rollOut { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); + transform: translate3d(100%, 0, 0) rotate(120deg) + } +} + +@keyframes rollOut { + 0% { + opacity: 1 + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate(120deg); + transform: translate3d(100%, 0, 0) rotate(120deg) + } +} + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut +} + +@-webkit-keyframes zoomIn { + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + 50% { + opacity: 1 + } +} + +@keyframes zoomIn { + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + 50% { + opacity: 1 + } +} + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn +} + +@-webkit-keyframes zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown +} + +@-webkit-keyframes zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft +} + +@-webkit-keyframes zoomInRight { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomInRight { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight +} + +@-webkit-keyframes zoomInUp { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomInUp { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp +} + +@-webkit-keyframes zoomOut { + 0% { + opacity: 1 + } + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + to { + opacity: 0 + } +} + +@keyframes zoomOut { + 0% { + opacity: 1 + } + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3) + } + to { + opacity: 0 + } +} + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut +} + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown +} + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center + } +} + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center + } +} + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft +} + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center + } +} + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0) + } + to { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center + } +} + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight +} + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19); + animation-timing-function: cubic-bezier(.55, .055, .675, .19) + } + to { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1); + animation-timing-function: cubic-bezier(.175, .885, .32, 1) + } +} + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp +} + +@-webkit-keyframes slideInDown { + 0% { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes slideInDown { + 0% { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown +} + +@-webkit-keyframes slideInLeft { + 0% { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes slideInLeft { + 0% { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft +} + +@-webkit-keyframes slideInRight { + 0% { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes slideInRight { + 0% { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight +} + +@-webkit-keyframes slideInUp { + 0% { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +@keyframes slideInUp { + 0% { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible + } + to { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } +} + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp +} + +@-webkit-keyframes slideOutDown { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } +} + +@keyframes slideOutDown { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) + } +} + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown +} + +@-webkit-keyframes slideOutLeft { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } +} + +@keyframes slideOutLeft { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft +} + +@-webkit-keyframes slideOutRight { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } +} + +@keyframes slideOutRight { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight +} + +@-webkit-keyframes slideOutUp { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } +} + +@keyframes slideOutUp { + 0% { + -webkit-transform: translateZ(0); + transform: translateZ(0) + } + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp +} diff --git a/assets/css/bootstrap.min.css b/assets/css/bootstrap.min.css new file mode 100755 index 0000000..06e8677 --- /dev/null +++ b/assets/css/bootstrap.min.css @@ -0,0 +1,9308 @@ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace +} + +*, +::after, +::before { + box-sizing: border-box +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent +} + +@-ms-viewport { + width: device-width +} + +article, +aside, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff +} + +[tabindex="-1"]:focus { + outline: 0!important +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: .5rem +} + +p { + margin-top: 0; + margin-bottom: 1rem +} + +abbr[data-original-title], +abbr[title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0 +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit +} + +dl, +ol, +ul { + margin-top: 0; + margin-bottom: 1rem +} + +ol ol, +ol ul, +ul ol, +ul ul { + margin-bottom: 0 +} + +dt { + font-weight: 700 +} + +dd { + margin-bottom: .5rem; + margin-left: 0 +} + +blockquote { + margin: 0 0 1rem +} + +dfn { + font-style: italic +} + +b, +strong { + font-weight: bolder +} + +small { + font-size: 80% +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline +} + +sub { + bottom: -.25em +} + +sup { + top: -.5em +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects +} + +a:hover { + color: #0056b3; + text-decoration: underline +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none +} + +a:not([href]):not([tabindex]):focus, +a:not([href]):not([tabindex]):hover { + color: inherit; + text-decoration: none +} + +a:not([href]):not([tabindex]):focus { + outline: 0 +} + +code, +kbd, +pre, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar +} + +figure { + margin: 0 0 1rem +} + +img { + vertical-align: middle; + border-style: none +} + +svg { + overflow: hidden; + vertical-align: middle +} + +table { + border-collapse: collapse +} + +caption { + padding-top: .75rem; + padding-bottom: .75rem; + color: #6c757d; + text-align: left; + caption-side: bottom +} + +th { + text-align: inherit +} + +label { + display: inline-block; + margin-bottom: .5rem +} + +button { + border-radius: 0 +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color +} + +button, +input, +optgroup, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +button, +input { + overflow: visible +} + +button, +select { + text-transform: none +} + +[type=reset], +[type=submit], +button, +html [type=button] { + -webkit-appearance: button +} + +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner, +button::-moz-focus-inner { + padding: 0; + border-style: none +} + +input[type=checkbox], +input[type=radio] { + box-sizing: border-box; + padding: 0 +} + +input[type=date], +input[type=datetime-local], +input[type=month], +input[type=time] { + -webkit-appearance: listbox +} + +textarea { + overflow: auto; + resize: vertical +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0 +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal +} + +progress { + vertical-align: baseline +} + +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto +} + +[type=search] { + outline-offset: -2px; + -webkit-appearance: none +} + +[type=search]::-webkit-search-cancel-button, +[type=search]::-webkit-search-decoration { + -webkit-appearance: none +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button +} + +output { + display: inline-block +} + +summary { + display: list-item; + cursor: pointer +} + +template { + display: none +} + +[hidden] { + display: none!important +} + +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + margin-bottom: .5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit +} + +.h1, +h1 { + font-size: 2.5rem +} + +.h2, +h2 { + font-size: 2rem +} + +.h3, +h3 { + font-size: 1.75rem +} + +.h4, +h4 { + font-size: 1.5rem +} + +.h5, +h5 { + font-size: 1.25rem +} + +.h6, +h6 { + font-size: 1rem +} + +.lead { + font-size: 1.25rem; + font-weight: 300 +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2 +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2 +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2 +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2 +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, .1) +} + +.small, +small { + font-size: 80%; + font-weight: 400 +} + +.mark, +mark { + padding: .2em; + background-color: #fcf8e3 +} + +.list-unstyled { + padding-left: 0; + list-style: none +} + +.list-inline { + padding-left: 0; + list-style: none +} + +.list-inline-item { + display: inline-block +} + +.list-inline-item:not(:last-child) { + margin-right: .5rem +} + +.initialism { + font-size: 90%; + text-transform: uppercase +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d +} + +.blockquote-footer::before { + content: "\2014 \00A0" +} + +.img-fluid { + max-width: 100%; + height: auto +} + +.img-thumbnail { + padding: .25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: .25rem; + max-width: 100%; + height: auto +} + +.figure { + display: inline-block +} + +.figure-img { + margin-bottom: .5rem; + line-height: 1 +} + +.figure-caption { + font-size: 90%; + color: #6c757d +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word +} + +a>code { + color: inherit +} + +kbd { + padding: .2rem .4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: .2rem +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700 +} + +pre { + display: block; + font-size: 87.5%; + color: #212529 +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto +} + +@media (min-width:576px) { + .container { + max-width: 540px + } +} + +@media (min-width:768px) { + .container { + max-width: 720px + } +} + +@media (min-width:992px) { + .container { + max-width: 960px + } +} + +@media (min-width:1200px) { + .container { + max-width: 1200px + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto +} + +.row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px +} + +.no-gutters { + margin-right: 0; + margin-left: 0 +} + +.no-gutters>.col, +.no-gutters>[class*=col-] { + padding-right: 0; + padding-left: 0 +} + +.col, +.col-1, +.col-10, +.col-11, +.col-12, +.col-2, +.col-3, +.col-4, +.col-5, +.col-6, +.col-7, +.col-8, +.col-9, +.col-auto, +.col-lg, +.col-lg-1, +.col-lg-10, +.col-lg-11, +.col-lg-12, +.col-lg-2, +.col-lg-3, +.col-lg-4, +.col-lg-5, +.col-lg-6, +.col-lg-7, +.col-lg-8, +.col-lg-9, +.col-lg-auto, +.col-md, +.col-md-1, +.col-md-10, +.col-md-11, +.col-md-12, +.col-md-2, +.col-md-3, +.col-md-4, +.col-md-5, +.col-md-6, +.col-md-7, +.col-md-8, +.col-md-9, +.col-md-auto, +.col-sm, +.col-sm-1, +.col-sm-10, +.col-sm-11, +.col-sm-12, +.col-sm-2, +.col-sm-3, +.col-sm-4, +.col-sm-5, +.col-sm-6, +.col-sm-7, +.col-sm-8, +.col-sm-9, +.col-sm-auto, +.col-xl, +.col-xl-1, +.col-xl-10, +.col-xl-11, +.col-xl-12, +.col-xl-2, +.col-xl-3, +.col-xl-4, +.col-xl-5, +.col-xl-6, +.col-xl-7, +.col-xl-8, +.col-xl-9, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% +} + +.col-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none +} + +.col-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% +} + +.col-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% +} + +.col-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% +} + +.col-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% +} + +.col-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% +} + +.col-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% +} + +.col-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% +} + +.col-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% +} + +.col-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% +} + +.col-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% +} + +.col-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% +} + +.col-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% +} + +.order-first { + -ms-flex-order: -1; + order: -1 +} + +.order-last { + -ms-flex-order: 13; + order: 13 +} + +.order-0 { + -ms-flex-order: 0; + order: 0 +} + +.order-1 { + -ms-flex-order: 1; + order: 1 +} + +.order-2 { + -ms-flex-order: 2; + order: 2 +} + +.order-3 { + -ms-flex-order: 3; + order: 3 +} + +.order-4 { + -ms-flex-order: 4; + order: 4 +} + +.order-5 { + -ms-flex-order: 5; + order: 5 +} + +.order-6 { + -ms-flex-order: 6; + order: 6 +} + +.order-7 { + -ms-flex-order: 7; + order: 7 +} + +.order-8 { + -ms-flex-order: 8; + order: 8 +} + +.order-9 { + -ms-flex-order: 9; + order: 9 +} + +.order-10 { + -ms-flex-order: 10; + order: 10 +} + +.order-11 { + -ms-flex-order: 11; + order: 11 +} + +.order-12 { + -ms-flex-order: 12; + order: 12 +} + +.offset-1 { + margin-left: 8.333333% +} + +.offset-2 { + margin-left: 16.666667% +} + +.offset-3 { + margin-left: 25% +} + +.offset-4 { + margin-left: 33.333333% +} + +.offset-5 { + margin-left: 41.666667% +} + +.offset-6 { + margin-left: 50% +} + +.offset-7 { + margin-left: 58.333333% +} + +.offset-8 { + margin-left: 66.666667% +} + +.offset-9 { + margin-left: 75% +} + +.offset-10 { + margin-left: 83.333333% +} + +.offset-11 { + margin-left: 91.666667% +} + +@media (min-width:576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + .col-sm-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none + } + .col-sm-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + .col-sm-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + .col-sm-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + .col-sm-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + .col-sm-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + .col-sm-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + .col-sm-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + .col-sm-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + .col-sm-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + .col-sm-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + .col-sm-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + .col-sm-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + .order-sm-first { + -ms-flex-order: -1; + order: -1 + } + .order-sm-last { + -ms-flex-order: 13; + order: 13 + } + .order-sm-0 { + -ms-flex-order: 0; + order: 0 + } + .order-sm-1 { + -ms-flex-order: 1; + order: 1 + } + .order-sm-2 { + -ms-flex-order: 2; + order: 2 + } + .order-sm-3 { + -ms-flex-order: 3; + order: 3 + } + .order-sm-4 { + -ms-flex-order: 4; + order: 4 + } + .order-sm-5 { + -ms-flex-order: 5; + order: 5 + } + .order-sm-6 { + -ms-flex-order: 6; + order: 6 + } + .order-sm-7 { + -ms-flex-order: 7; + order: 7 + } + .order-sm-8 { + -ms-flex-order: 8; + order: 8 + } + .order-sm-9 { + -ms-flex-order: 9; + order: 9 + } + .order-sm-10 { + -ms-flex-order: 10; + order: 10 + } + .order-sm-11 { + -ms-flex-order: 11; + order: 11 + } + .order-sm-12 { + -ms-flex-order: 12; + order: 12 + } + .offset-sm-0 { + margin-left: 0 + } + .offset-sm-1 { + margin-left: 8.333333% + } + .offset-sm-2 { + margin-left: 16.666667% + } + .offset-sm-3 { + margin-left: 25% + } + .offset-sm-4 { + margin-left: 33.333333% + } + .offset-sm-5 { + margin-left: 41.666667% + } + .offset-sm-6 { + margin-left: 50% + } + .offset-sm-7 { + margin-left: 58.333333% + } + .offset-sm-8 { + margin-left: 66.666667% + } + .offset-sm-9 { + margin-left: 75% + } + .offset-sm-10 { + margin-left: 83.333333% + } + .offset-sm-11 { + margin-left: 91.666667% + } +} + +@media (min-width:768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + .col-md-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none + } + .col-md-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + .col-md-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + .col-md-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + .col-md-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + .col-md-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + .col-md-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + .col-md-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + .col-md-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + .col-md-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + .col-md-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + .col-md-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + .col-md-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + .order-md-first { + -ms-flex-order: -1; + order: -1 + } + .order-md-last { + -ms-flex-order: 13; + order: 13 + } + .order-md-0 { + -ms-flex-order: 0; + order: 0 + } + .order-md-1 { + -ms-flex-order: 1; + order: 1 + } + .order-md-2 { + -ms-flex-order: 2; + order: 2 + } + .order-md-3 { + -ms-flex-order: 3; + order: 3 + } + .order-md-4 { + -ms-flex-order: 4; + order: 4 + } + .order-md-5 { + -ms-flex-order: 5; + order: 5 + } + .order-md-6 { + -ms-flex-order: 6; + order: 6 + } + .order-md-7 { + -ms-flex-order: 7; + order: 7 + } + .order-md-8 { + -ms-flex-order: 8; + order: 8 + } + .order-md-9 { + -ms-flex-order: 9; + order: 9 + } + .order-md-10 { + -ms-flex-order: 10; + order: 10 + } + .order-md-11 { + -ms-flex-order: 11; + order: 11 + } + .order-md-12 { + -ms-flex-order: 12; + order: 12 + } + .offset-md-0 { + margin-left: 0 + } + .offset-md-1 { + margin-left: 8.333333% + } + .offset-md-2 { + margin-left: 16.666667% + } + .offset-md-3 { + margin-left: 25% + } + .offset-md-4 { + margin-left: 33.333333% + } + .offset-md-5 { + margin-left: 41.666667% + } + .offset-md-6 { + margin-left: 50% + } + .offset-md-7 { + margin-left: 58.333333% + } + .offset-md-8 { + margin-left: 66.666667% + } + .offset-md-9 { + margin-left: 75% + } + .offset-md-10 { + margin-left: 83.333333% + } + .offset-md-11 { + margin-left: 91.666667% + } +} + +@media (min-width:992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + .col-lg-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none + } + .col-lg-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + .col-lg-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + .col-lg-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + .col-lg-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + .col-lg-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + .col-lg-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + .col-lg-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + .col-lg-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + .col-lg-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + .col-lg-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + .col-lg-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + .col-lg-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + .order-lg-first { + -ms-flex-order: -1; + order: -1 + } + .order-lg-last { + -ms-flex-order: 13; + order: 13 + } + .order-lg-0 { + -ms-flex-order: 0; + order: 0 + } + .order-lg-1 { + -ms-flex-order: 1; + order: 1 + } + .order-lg-2 { + -ms-flex-order: 2; + order: 2 + } + .order-lg-3 { + -ms-flex-order: 3; + order: 3 + } + .order-lg-4 { + -ms-flex-order: 4; + order: 4 + } + .order-lg-5 { + -ms-flex-order: 5; + order: 5 + } + .order-lg-6 { + -ms-flex-order: 6; + order: 6 + } + .order-lg-7 { + -ms-flex-order: 7; + order: 7 + } + .order-lg-8 { + -ms-flex-order: 8; + order: 8 + } + .order-lg-9 { + -ms-flex-order: 9; + order: 9 + } + .order-lg-10 { + -ms-flex-order: 10; + order: 10 + } + .order-lg-11 { + -ms-flex-order: 11; + order: 11 + } + .order-lg-12 { + -ms-flex-order: 12; + order: 12 + } + .offset-lg-0 { + margin-left: 0 + } + .offset-lg-1 { + margin-left: 8.333333% + } + .offset-lg-2 { + margin-left: 16.666667% + } + .offset-lg-3 { + margin-left: 25% + } + .offset-lg-4 { + margin-left: 33.333333% + } + .offset-lg-5 { + margin-left: 41.666667% + } + .offset-lg-6 { + margin-left: 50% + } + .offset-lg-7 { + margin-left: 58.333333% + } + .offset-lg-8 { + margin-left: 66.666667% + } + .offset-lg-9 { + margin-left: 75% + } + .offset-lg-10 { + margin-left: 83.333333% + } + .offset-lg-11 { + margin-left: 91.666667% + } +} + +@media (min-width:1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + .col-xl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none + } + .col-xl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + .col-xl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + .col-xl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + .col-xl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + .col-xl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + .col-xl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + .col-xl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + .col-xl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + .col-xl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + .col-xl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + .col-xl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + .col-xl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + .order-xl-first { + -ms-flex-order: -1; + order: -1 + } + .order-xl-last { + -ms-flex-order: 13; + order: 13 + } + .order-xl-0 { + -ms-flex-order: 0; + order: 0 + } + .order-xl-1 { + -ms-flex-order: 1; + order: 1 + } + .order-xl-2 { + -ms-flex-order: 2; + order: 2 + } + .order-xl-3 { + -ms-flex-order: 3; + order: 3 + } + .order-xl-4 { + -ms-flex-order: 4; + order: 4 + } + .order-xl-5 { + -ms-flex-order: 5; + order: 5 + } + .order-xl-6 { + -ms-flex-order: 6; + order: 6 + } + .order-xl-7 { + -ms-flex-order: 7; + order: 7 + } + .order-xl-8 { + -ms-flex-order: 8; + order: 8 + } + .order-xl-9 { + -ms-flex-order: 9; + order: 9 + } + .order-xl-10 { + -ms-flex-order: 10; + order: 10 + } + .order-xl-11 { + -ms-flex-order: 11; + order: 11 + } + .order-xl-12 { + -ms-flex-order: 12; + order: 12 + } + .offset-xl-0 { + margin-left: 0 + } + .offset-xl-1 { + margin-left: 8.333333% + } + .offset-xl-2 { + margin-left: 16.666667% + } + .offset-xl-3 { + margin-left: 25% + } + .offset-xl-4 { + margin-left: 33.333333% + } + .offset-xl-5 { + margin-left: 41.666667% + } + .offset-xl-6 { + margin-left: 50% + } + .offset-xl-7 { + margin-left: 58.333333% + } + .offset-xl-8 { + margin-left: 66.666667% + } + .offset-xl-9 { + margin-left: 75% + } + .offset-xl-10 { + margin-left: 83.333333% + } + .offset-xl-11 { + margin-left: 91.666667% + } +} + +.table { + width: 100%; + margin-bottom: 1rem; + background-color: transparent +} + +.table td, +.table th { + padding: .75rem; + vertical-align: top; + border-top: 1px solid #dee2e6 +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6 +} + +.table tbody+tbody { + border-top: 2px solid #dee2e6 +} + +.table .table { + background-color: #fff +} + +.table-sm td, +.table-sm th { + padding: .3rem +} + +.table-bordered { + border: 1px solid #dee2e6 +} + +.table-bordered td, +.table-bordered th { + border: 1px solid #dee2e6 +} + +.table-bordered thead td, +.table-bordered thead th { + border-bottom-width: 2px +} + +.table-borderless tbody+tbody, +.table-borderless td, +.table-borderless th, +.table-borderless thead th { + border: 0 +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, .05) +} + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, .075) +} + +.table-primary, +.table-primary>td, +.table-primary>th { + background-color: #b8daff +} + +.table-hover .table-primary:hover { + background-color: #9fcdff +} + +.table-hover .table-primary:hover>td, +.table-hover .table-primary:hover>th { + background-color: #9fcdff +} + +.table-secondary, +.table-secondary>td, +.table-secondary>th { + background-color: #d6d8db +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf +} + +.table-hover .table-secondary:hover>td, +.table-hover .table-secondary:hover>th { + background-color: #c8cbcf +} + +.table-success, +.table-success>td, +.table-success>th { + background-color: #c3e6cb +} + +.table-hover .table-success:hover { + background-color: #b1dfbb +} + +.table-hover .table-success:hover>td, +.table-hover .table-success:hover>th { + background-color: #b1dfbb +} + +.table-info, +.table-info>td, +.table-info>th { + background-color: #bee5eb +} + +.table-hover .table-info:hover { + background-color: #abdde5 +} + +.table-hover .table-info:hover>td, +.table-hover .table-info:hover>th { + background-color: #abdde5 +} + +.table-warning, +.table-warning>td, +.table-warning>th { + background-color: #ffeeba +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1 +} + +.table-hover .table-warning:hover>td, +.table-hover .table-warning:hover>th { + background-color: #ffe8a1 +} + +.table-danger, +.table-danger>td, +.table-danger>th { + background-color: #f5c6cb +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7 +} + +.table-hover .table-danger:hover>td, +.table-hover .table-danger:hover>th { + background-color: #f1b0b7 +} + +.table-light, +.table-light>td, +.table-light>th { + background-color: #fdfdfe +} + +.table-hover .table-light:hover { + background-color: #ececf6 +} + +.table-hover .table-light:hover>td, +.table-hover .table-light:hover>th { + background-color: #ececf6 +} + +.table-dark, +.table-dark>td, +.table-dark>th { + background-color: #c6c8ca +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe +} + +.table-hover .table-dark:hover>td, +.table-hover .table-dark:hover>th { + background-color: #b9bbbe +} + +.table-active, +.table-active>td, +.table-active>th { + background-color: rgba(0, 0, 0, .075) +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, .075) +} + +.table-hover .table-active:hover>td, +.table-hover .table-active:hover>th { + background-color: rgba(0, 0, 0, .075) +} + +.table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6 +} + +.table-dark { + color: #fff; + background-color: #212529 +} + +.table-dark td, +.table-dark th, +.table-dark thead th { + border-color: #32383e +} + +.table-dark.table-bordered { + border: 0 +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, .05) +} + +.table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, .075) +} + +@media (max-width:575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + .table-responsive-sm>.table-bordered { + border: 0 + } +} + +@media (max-width:767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + .table-responsive-md>.table-bordered { + border: 0 + } +} + +@media (max-width:991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + .table-responsive-lg>.table-bordered { + border: 0 + } +} + +@media (max-width:1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + .table-responsive-xl>.table-bordered { + border: 0 + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar +} + +.table-responsive>.table-bordered { + border: 0 +} + +.form-control { + display: block; + width: 100%; + height: calc(2.25rem + 2px); + padding: .375rem .75rem; + font-size: 1rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .form-control { + transition: none + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0 +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control:disabled, +.form-control[readonly] { + background-color: #e9ecef; + opacity: 1 +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff +} + +.form-control-file, +.form-control-range { + display: block; + width: 100% +} + +.col-form-label { + padding-top: calc(.375rem + 1px); + padding-bottom: calc(.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5 +} + +.col-form-label-lg { + padding-top: calc(.5rem + 1px); + padding-bottom: calc(.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5 +} + +.col-form-label-sm { + padding-top: calc(.25rem + 1px); + padding-bottom: calc(.25rem + 1px); + font-size: .875rem; + line-height: 1.5 +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: .375rem; + padding-bottom: .375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0 +} + +.form-control-plaintext.form-control-lg, +.form-control-plaintext.form-control-sm { + padding-right: 0; + padding-left: 0 +} + +.form-control-sm { + height: calc(1.8125rem + 2px); + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.form-control-lg { + height: calc(2.875rem + 2px); + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +select.form-control[multiple], +select.form-control[size] { + height: auto +} + +textarea.form-control { + height: auto +} + +.form-group { + margin-bottom: 1rem +} + +.form-text { + display: block; + margin-top: .25rem +} + +.form-row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px +} + +.form-row>.col, +.form-row>[class*=col-] { + padding-right: 5px; + padding-left: 5px +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem +} + +.form-check-input { + position: absolute; + margin-top: .3rem; + margin-left: -1.25rem +} + +.form-check-input:disabled~.form-check-label { + color: #6c757d +} + +.form-check-label { + margin-bottom: 0 +} + +.form-check-inline { + display: -ms-inline-flexbox; + display: inline-flex; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: .75rem +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: .3125rem; + margin-left: 0 +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: .25rem; + font-size: 80%; + color: #28a745 +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .25rem .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, .9); + border-radius: .25rem +} + +.custom-select.is-valid, +.form-control.is-valid, +.was-validated .custom-select:valid, +.was-validated .form-control:valid { + border-color: #28a745 +} + +.custom-select.is-valid:focus, +.form-control.is-valid:focus, +.was-validated .custom-select:valid:focus, +.was-validated .form-control:valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.custom-select.is-valid~.valid-feedback, +.custom-select.is-valid~.valid-tooltip, +.form-control.is-valid~.valid-feedback, +.form-control.is-valid~.valid-tooltip, +.was-validated .custom-select:valid~.valid-feedback, +.was-validated .custom-select:valid~.valid-tooltip, +.was-validated .form-control:valid~.valid-feedback, +.was-validated .form-control:valid~.valid-tooltip { + display: block +} + +.form-control-file.is-valid~.valid-feedback, +.form-control-file.is-valid~.valid-tooltip, +.was-validated .form-control-file:valid~.valid-feedback, +.was-validated .form-control-file:valid~.valid-tooltip { + display: block +} + +.form-check-input.is-valid~.form-check-label, +.was-validated .form-check-input:valid~.form-check-label { + color: #28a745 +} + +.form-check-input.is-valid~.valid-feedback, +.form-check-input.is-valid~.valid-tooltip, +.was-validated .form-check-input:valid~.valid-feedback, +.was-validated .form-check-input:valid~.valid-tooltip { + display: block +} + +.custom-control-input.is-valid~.custom-control-label, +.was-validated .custom-control-input:valid~.custom-control-label { + color: #28a745 +} + +.custom-control-input.is-valid~.custom-control-label::before, +.was-validated .custom-control-input:valid~.custom-control-label::before { + background-color: #71dd8a +} + +.custom-control-input.is-valid~.valid-feedback, +.custom-control-input.is-valid~.valid-tooltip, +.was-validated .custom-control-input:valid~.valid-feedback, +.was-validated .custom-control-input:valid~.valid-tooltip { + display: block +} + +.custom-control-input.is-valid:checked~.custom-control-label::before, +.was-validated .custom-control-input:valid:checked~.custom-control-label::before { + background-color: #34ce57 +} + +.custom-control-input.is-valid:focus~.custom-control-label::before, +.was-validated .custom-control-input:valid:focus~.custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.custom-file-input.is-valid~.custom-file-label, +.was-validated .custom-file-input:valid~.custom-file-label { + border-color: #28a745 +} + +.custom-file-input.is-valid~.custom-file-label::after, +.was-validated .custom-file-input:valid~.custom-file-label::after { + border-color: inherit +} + +.custom-file-input.is-valid~.valid-feedback, +.custom-file-input.is-valid~.valid-tooltip, +.was-validated .custom-file-input:valid~.valid-feedback, +.was-validated .custom-file-input:valid~.valid-tooltip { + display: block +} + +.custom-file-input.is-valid:focus~.custom-file-label, +.was-validated .custom-file-input:valid:focus~.custom-file-label { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: .25rem; + font-size: 80%; + color: #dc3545 +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .25rem .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, .9); + border-radius: .25rem +} + +.custom-select.is-invalid, +.form-control.is-invalid, +.was-validated .custom-select:invalid, +.was-validated .form-control:invalid { + border-color: #dc3545 +} + +.custom-select.is-invalid:focus, +.form-control.is-invalid:focus, +.was-validated .custom-select:invalid:focus, +.was-validated .form-control:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.custom-select.is-invalid~.invalid-feedback, +.custom-select.is-invalid~.invalid-tooltip, +.form-control.is-invalid~.invalid-feedback, +.form-control.is-invalid~.invalid-tooltip, +.was-validated .custom-select:invalid~.invalid-feedback, +.was-validated .custom-select:invalid~.invalid-tooltip, +.was-validated .form-control:invalid~.invalid-feedback, +.was-validated .form-control:invalid~.invalid-tooltip { + display: block +} + +.form-control-file.is-invalid~.invalid-feedback, +.form-control-file.is-invalid~.invalid-tooltip, +.was-validated .form-control-file:invalid~.invalid-feedback, +.was-validated .form-control-file:invalid~.invalid-tooltip { + display: block +} + +.form-check-input.is-invalid~.form-check-label, +.was-validated .form-check-input:invalid~.form-check-label { + color: #dc3545 +} + +.form-check-input.is-invalid~.invalid-feedback, +.form-check-input.is-invalid~.invalid-tooltip, +.was-validated .form-check-input:invalid~.invalid-feedback, +.was-validated .form-check-input:invalid~.invalid-tooltip { + display: block +} + +.custom-control-input.is-invalid~.custom-control-label, +.was-validated .custom-control-input:invalid~.custom-control-label { + color: #dc3545 +} + +.custom-control-input.is-invalid~.custom-control-label::before, +.was-validated .custom-control-input:invalid~.custom-control-label::before { + background-color: #efa2a9 +} + +.custom-control-input.is-invalid~.invalid-feedback, +.custom-control-input.is-invalid~.invalid-tooltip, +.was-validated .custom-control-input:invalid~.invalid-feedback, +.was-validated .custom-control-input:invalid~.invalid-tooltip { + display: block +} + +.custom-control-input.is-invalid:checked~.custom-control-label::before, +.was-validated .custom-control-input:invalid:checked~.custom-control-label::before { + background-color: #e4606d +} + +.custom-control-input.is-invalid:focus~.custom-control-label::before, +.was-validated .custom-control-input:invalid:focus~.custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.custom-file-input.is-invalid~.custom-file-label, +.was-validated .custom-file-input:invalid~.custom-file-label { + border-color: #dc3545 +} + +.custom-file-input.is-invalid~.custom-file-label::after, +.was-validated .custom-file-input:invalid~.custom-file-label::after { + border-color: inherit +} + +.custom-file-input.is-invalid~.invalid-feedback, +.custom-file-input.is-invalid~.invalid-tooltip, +.was-validated .custom-file-input:invalid~.invalid-feedback, +.was-validated .custom-file-input:invalid~.invalid-tooltip { + display: block +} + +.custom-file-input.is-invalid:focus~.custom-file-label, +.was-validated .custom-file-input:invalid:focus~.custom-file-label { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.form-inline { + display: -ms-flexbox; + display: flex; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center +} + +.form-inline .form-check { + width: 100% +} + +@media (min-width:576px) { + .form-inline label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0 + } + .form-inline .form-group { + display: -ms-flexbox; + display: flex; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0 + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + .form-inline .form-control-plaintext { + display: inline-block + } + .form-inline .custom-select, + .form-inline .input-group { + width: auto + } + .form-inline .form-check { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0 + } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: .25rem; + margin-left: 0 + } + .form-inline .custom-control { + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center + } + .form-inline .custom-control-label { + margin-bottom: 0 + } +} + +.btn { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px solid transparent; + padding: .375rem .75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: .25rem; + transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .btn { + transition: none + } +} + +.btn:focus, +.btn:hover { + text-decoration: none +} + +.btn.focus, +.btn:focus { + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.btn.disabled, +.btn:disabled { + opacity: .65 +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc +} + +.btn-primary.focus, +.btn-primary:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-primary.disabled, +.btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-primary:not(:disabled):not(.disabled).active, +.btn-primary:not(:disabled):not(.disabled):active, +.show>.btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf +} + +.btn-primary:not(:disabled):not(.disabled).active:focus, +.btn-primary:not(:disabled):not(.disabled):active:focus, +.show>.btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62 +} + +.btn-secondary.focus, +.btn-secondary:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-secondary:not(:disabled):not(.disabled).active, +.btn-secondary:not(:disabled):not(.disabled):active, +.show>.btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b +} + +.btn-secondary:not(:disabled):not(.disabled).active:focus, +.btn-secondary:not(:disabled):not(.disabled):active:focus, +.show>.btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34 +} + +.btn-success.focus, +.btn-success:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-success.disabled, +.btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-success:not(:disabled):not(.disabled).active, +.btn-success:not(:disabled):not(.disabled):active, +.show>.btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430 +} + +.btn-success:not(:disabled):not(.disabled).active:focus, +.btn-success:not(:disabled):not(.disabled):active:focus, +.show>.btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b +} + +.btn-info.focus, +.btn-info:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-info.disabled, +.btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-info:not(:disabled):not(.disabled).active, +.btn-info:not(:disabled):not(.disabled):active, +.show>.btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f +} + +.btn-info:not(:disabled):not(.disabled).active:focus, +.btn-info:not(:disabled):not(.disabled):active:focus, +.show>.btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00 +} + +.btn-warning.focus, +.btn-warning:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-warning.disabled, +.btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-warning:not(:disabled):not(.disabled).active, +.btn-warning:not(:disabled):not(.disabled):active, +.show>.btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500 +} + +.btn-warning:not(:disabled):not(.disabled).active:focus, +.btn-warning:not(:disabled):not(.disabled):active:focus, +.show>.btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130 +} + +.btn-danger.focus, +.btn-danger:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-danger.disabled, +.btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-danger:not(:disabled):not(.disabled).active, +.btn-danger:not(:disabled):not(.disabled):active, +.show>.btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d +} + +.btn-danger:not(:disabled):not(.disabled).active:focus, +.btn-danger:not(:disabled):not(.disabled):active:focus, +.show>.btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5 +} + +.btn-light.focus, +.btn-light:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-light.disabled, +.btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-light:not(:disabled):not(.disabled).active, +.btn-light:not(:disabled):not(.disabled):active, +.show>.btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df +} + +.btn-light:not(:disabled):not(.disabled).active:focus, +.btn-light:not(:disabled):not(.disabled):active:focus, +.show>.btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124 +} + +.btn-dark.focus, +.btn-dark:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-dark:not(:disabled):not(.disabled).active, +.btn-dark:not(:disabled):not(.disabled):active, +.show>.btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d +} + +.btn-dark:not(:disabled):not(.disabled).active:focus, +.btn-dark:not(:disabled):not(.disabled):active:focus, +.show>.btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-outline-primary { + color: #007bff; + background-color: transparent; + background-image: none; + border-color: #007bff +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-outline-primary.focus, +.btn-outline-primary:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #007bff; + background-color: transparent +} + +.btn-outline-primary:not(:disabled):not(.disabled).active, +.btn-outline-primary:not(:disabled):not(.disabled):active, +.show>.btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-outline-secondary { + color: #6c757d; + background-color: transparent; + background-image: none; + border-color: #6c757d +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-outline-secondary.focus, +.btn-outline-secondary:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent +} + +.btn-outline-secondary:not(:disabled):not(.disabled).active, +.btn-outline-secondary:not(:disabled):not(.disabled):active, +.show>.btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-outline-success { + color: #28a745; + background-color: transparent; + background-image: none; + border-color: #28a745 +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-outline-success.focus, +.btn-outline-success:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #28a745; + background-color: transparent +} + +.btn-outline-success:not(:disabled):not(.disabled).active, +.btn-outline-success:not(:disabled):not(.disabled):active, +.show>.btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-outline-success:not(:disabled):not(.disabled).active:focus, +.btn-outline-success:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-outline-info { + color: #17a2b8; + background-color: transparent; + background-image: none; + border-color: #17a2b8 +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-outline-info.focus, +.btn-outline-info:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent +} + +.btn-outline-info:not(:disabled):not(.disabled).active, +.btn-outline-info:not(:disabled):not(.disabled):active, +.show>.btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-outline-info:not(:disabled):not(.disabled).active:focus, +.btn-outline-info:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-outline-warning { + color: #ffc107; + background-color: transparent; + background-image: none; + border-color: #ffc107 +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-outline-warning.focus, +.btn-outline-warning:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent +} + +.btn-outline-warning:not(:disabled):not(.disabled).active, +.btn-outline-warning:not(:disabled):not(.disabled):active, +.show>.btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-outline-danger { + color: #dc3545; + background-color: transparent; + background-image: none; + border-color: #dc3545 +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-outline-danger.focus, +.btn-outline-danger:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent +} + +.btn-outline-danger:not(:disabled):not(.disabled).active, +.btn-outline-danger:not(:disabled):not(.disabled):active, +.show>.btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-outline-light { + color: #f8f9fa; + background-color: transparent; + background-image: none; + border-color: #f8f9fa +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-outline-light.focus, +.btn-outline-light:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent +} + +.btn-outline-light:not(:disabled):not(.disabled).active, +.btn-outline-light:not(:disabled):not(.disabled):active, +.show>.btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-outline-light:not(:disabled):not(.disabled).active:focus, +.btn-outline-light:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-outline-dark { + color: #343a40; + background-color: transparent; + background-image: none; + border-color: #343a40 +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-outline-dark.focus, +.btn-outline-dark:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #343a40; + background-color: transparent +} + +.btn-outline-dark:not(:disabled):not(.disabled).active, +.btn-outline-dark:not(:disabled):not(.disabled):active, +.show>.btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-link { + font-weight: 400; + color: #007bff; + background-color: transparent +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; + background-color: transparent; + border-color: transparent +} + +.btn-link.focus, +.btn-link:focus { + text-decoration: underline; + border-color: transparent; + box-shadow: none +} + +.btn-link.disabled, +.btn-link:disabled { + color: #6c757d; + pointer-events: none +} + +.btn-group-lg>.btn, +.btn-lg { + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +.btn-group-sm>.btn, +.btn-sm { + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.btn-block { + display: block; + width: 100% +} + +.btn-block+.btn-block { + margin-top: .5rem +} + +input[type=button].btn-block, +input[type=reset].btn-block, +input[type=submit].btn-block { + width: 100% +} + +.fade { + transition: opacity .15s linear +} + +@media screen and (prefers-reduced-motion:reduce) { + .fade { + transition: none + } +} + +.fade:not(.show) { + opacity: 0 +} + +.collapse:not(.show) { + display: none +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height .35s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .collapsing { + transition: none + } +} + +.dropdown, +.dropleft, +.dropright, +.dropup { + position: relative +} + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid; + border-right: .3em solid transparent; + border-bottom: 0; + border-left: .3em solid transparent +} + +.dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: .5rem 0; + margin: .125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: .25rem +} + +.dropdown-menu-right { + right: 0; + left: auto +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: .125rem +} + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: .255em; + vertical-align: .255em; + content: ""; + border-top: 0; + border-right: .3em solid transparent; + border-bottom: .3em solid; + border-left: .3em solid transparent +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: .125rem +} + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid transparent; + border-right: 0; + border-bottom: .3em solid transparent; + border-left: .3em solid +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropright .dropdown-toggle::after { + vertical-align: 0 +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: .125rem +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: .255em; + vertical-align: .255em; + content: "" +} + +.dropleft .dropdown-toggle::after { + display: none +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid transparent; + border-right: .3em solid; + border-bottom: .3em solid transparent +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0 +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0 +} + +.dropdown-menu[x-placement^=bottom], +.dropdown-menu[x-placement^=left], +.dropdown-menu[x-placement^=right], +.dropdown-menu[x-placement^=top] { + right: auto; + bottom: auto +} + +.dropdown-divider { + height: 0; + margin: .5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef +} + +.dropdown-item { + display: block; + width: 100%; + padding: .25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0 +} + +.dropdown-item:focus, +.dropdown-item:hover { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa +} + +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff +} + +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #6c757d; + background-color: transparent +} + +.dropdown-menu.show { + display: block +} + +.dropdown-header { + display: block; + padding: .5rem 1.5rem; + margin-bottom: 0; + font-size: .875rem; + color: #6c757d; + white-space: nowrap +} + +.dropdown-item-text { + display: block; + padding: .25rem 1.5rem; + color: #212529 +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle +} + +.btn-group-vertical>.btn, +.btn-group>.btn { + position: relative; + -ms-flex: 0 1 auto; + flex: 0 1 auto +} + +.btn-group-vertical>.btn:hover, +.btn-group>.btn:hover { + z-index: 1 +} + +.btn-group-vertical>.btn.active, +.btn-group-vertical>.btn:active, +.btn-group-vertical>.btn:focus, +.btn-group>.btn.active, +.btn-group>.btn:active, +.btn-group>.btn:focus { + z-index: 1 +} + +.btn-group .btn+.btn, +.btn-group .btn+.btn-group, +.btn-group .btn-group+.btn, +.btn-group .btn-group+.btn-group, +.btn-group-vertical .btn+.btn, +.btn-group-vertical .btn+.btn-group, +.btn-group-vertical .btn-group+.btn, +.btn-group-vertical .btn-group+.btn-group { + margin-left: -1px +} + +.btn-toolbar { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-pack: start; + justify-content: flex-start +} + +.btn-toolbar .input-group { + width: auto +} + +.btn-group>.btn:first-child { + margin-left: 0 +} + +.btn-group>.btn-group:not(:last-child)>.btn, +.btn-group>.btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.btn-group>.btn-group:not(:first-child)>.btn, +.btn-group>.btn:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.dropdown-toggle-split { + padding-right: .5625rem; + padding-left: .5625rem +} + +.dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after { + margin-left: 0 +} + +.dropleft .dropdown-toggle-split::before { + margin-right: 0 +} + +.btn-group-sm>.btn+.dropdown-toggle-split, +.btn-sm+.dropdown-toggle-split { + padding-right: .375rem; + padding-left: .375rem +} + +.btn-group-lg>.btn+.dropdown-toggle-split, +.btn-lg+.dropdown-toggle-split { + padding-right: .75rem; + padding-left: .75rem +} + +.btn-group-vertical { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: center; + justify-content: center +} + +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { + width: 100% +} + +.btn-group-vertical>.btn+.btn, +.btn-group-vertical>.btn+.btn-group, +.btn-group-vertical>.btn-group+.btn, +.btn-group-vertical>.btn-group+.btn-group { + margin-top: -1px; + margin-left: 0 +} + +.btn-group-vertical>.btn-group:not(:last-child)>.btn, +.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn-group:not(:first-child)>.btn, +.btn-group-vertical>.btn:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.btn-group-toggle>.btn, +.btn-group-toggle>.btn-group>.btn { + margin-bottom: 0 +} + +.btn-group-toggle>.btn input[type=checkbox], +.btn-group-toggle>.btn input[type=radio], +.btn-group-toggle>.btn-group>.btn input[type=checkbox], +.btn-group-toggle>.btn-group>.btn input[type=radio] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.input-group { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: stretch; + align-items: stretch; + width: 100% +} + +.input-group>.custom-file, +.input-group>.custom-select, +.input-group>.form-control { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0 +} + +.input-group>.custom-file+.custom-file, +.input-group>.custom-file+.custom-select, +.input-group>.custom-file+.form-control, +.input-group>.custom-select+.custom-file, +.input-group>.custom-select+.custom-select, +.input-group>.custom-select+.form-control, +.input-group>.form-control+.custom-file, +.input-group>.form-control+.custom-select, +.input-group>.form-control+.form-control { + margin-left: -1px +} + +.input-group>.custom-file .custom-file-input:focus~.custom-file-label, +.input-group>.custom-select:focus, +.input-group>.form-control:focus { + z-index: 3 +} + +.input-group>.custom-file .custom-file-input:focus { + z-index: 4 +} + +.input-group>.custom-select:not(:last-child), +.input-group>.form-control:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group>.custom-select:not(:first-child), +.input-group>.form-control:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group>.custom-file { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center +} + +.input-group>.custom-file:not(:last-child) .custom-file-label, +.input-group>.custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group>.custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group-append, +.input-group-prepend { + display: -ms-flexbox; + display: flex +} + +.input-group-append .btn, +.input-group-prepend .btn { + position: relative; + z-index: 2 +} + +.input-group-append .btn+.btn, +.input-group-append .btn+.input-group-text, +.input-group-append .input-group-text+.btn, +.input-group-append .input-group-text+.input-group-text, +.input-group-prepend .btn+.btn, +.input-group-prepend .btn+.input-group-text, +.input-group-prepend .input-group-text+.btn, +.input-group-prepend .input-group-text+.input-group-text { + margin-left: -1px +} + +.input-group-prepend { + margin-right: -1px +} + +.input-group-append { + margin-left: -1px +} + +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: .375rem .75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: .25rem +} + +.input-group-text input[type=checkbox], +.input-group-text input[type=radio] { + margin-top: 0 +} + +.input-group-lg>.form-control, +.input-group-lg>.input-group-append>.btn, +.input-group-lg>.input-group-append>.input-group-text, +.input-group-lg>.input-group-prepend>.btn, +.input-group-lg>.input-group-prepend>.input-group-text { + height: calc(2.875rem + 2px); + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +.input-group-sm>.form-control, +.input-group-sm>.input-group-append>.btn, +.input-group-sm>.input-group-append>.input-group-text, +.input-group-sm>.input-group-prepend>.btn, +.input-group-sm>.input-group-prepend>.input-group-text { + height: calc(1.8125rem + 2px); + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), +.input-group>.input-group-append:last-child>.input-group-text:not(:last-child), +.input-group>.input-group-append:not(:last-child)>.btn, +.input-group>.input-group-append:not(:last-child)>.input-group-text, +.input-group>.input-group-prepend>.btn, +.input-group>.input-group-prepend>.input-group-text { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group>.input-group-append>.btn, +.input-group>.input-group-append>.input-group-text, +.input-group>.input-group-prepend:first-child>.btn:not(:first-child), +.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), +.input-group>.input-group-prepend:not(:first-child)>.btn, +.input-group>.input-group-prepend:not(:first-child)>.input-group-text { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem +} + +.custom-control-inline { + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0 +} + +.custom-control-input:checked~.custom-control-label::before { + color: #fff; + background-color: #007bff +} + +.custom-control-input:focus~.custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-control-input:active~.custom-control-label::before { + color: #fff; + background-color: #b3d7ff +} + +.custom-control-input:disabled~.custom-control-label { + color: #6c757d +} + +.custom-control-input:disabled~.custom-control-label::before { + background-color: #e9ecef +} + +.custom-control-label { + position: relative; + margin-bottom: 0 +} + +.custom-control-label::before { + position: absolute; + top: .25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #dee2e6 +} + +.custom-control-label::after { + position: absolute; + top: .25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50% +} + +.custom-checkbox .custom-control-label::before { + border-radius: .25rem +} + +.custom-checkbox .custom-control-input:checked~.custom-control-label::before { + background-color: #007bff +} + +.custom-checkbox .custom-control-input:checked~.custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") +} + +.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before { + background-color: #007bff +} + +.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E") +} + +.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-radio .custom-control-label::before { + border-radius: 50% +} + +.custom-radio .custom-control-input:checked~.custom-control-label::before { + background-color: #007bff +} + +.custom-radio .custom-control-input:checked~.custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E") +} + +.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: .375rem 1.75rem .375rem .75rem; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center; + background-size: 8px 10px; + border: 1px solid #ced4da; + border-radius: .25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(128, 189, 255, .5) +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff +} + +.custom-select[multiple], +.custom-select[size]:not([size="1"]) { + height: auto; + padding-right: .75rem; + background-image: none +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef +} + +.custom-select::-ms-expand { + opacity: 0 +} + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: .375rem; + padding-bottom: .375rem; + font-size: 75% +} + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: .375rem; + padding-bottom: .375rem; + font-size: 125% +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0 +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0 +} + +.custom-file-input:focus~.custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-file-input:focus~.custom-file-label::after { + border-color: #80bdff +} + +.custom-file-input:disabled~.custom-file-label { + background-color: #e9ecef +} + +.custom-file-input:lang(en)~.custom-file-label::after { + content: "Browse" +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: .375rem .75rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: .25rem +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: 2.25rem; + padding: .375rem .75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: 1px solid #ced4da; + border-radius: 0 .25rem .25rem 0 +} + +.custom-range { + width: 100%; + padding-left: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +.custom-range:focus { + outline: 0 +} + +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range::-moz-focus-outer { + border: 0 +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + -webkit-appearance: none; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-webkit-slider-thumb { + transition: none + } +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + -moz-appearance: none; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-moz-range-thumb { + transition: none + } +} + +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-moz-range-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: .2rem; + margin-left: .2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-ms-thumb { + transition: none + } +} + +.custom-range::-ms-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-ms-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: .5rem +} + +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem +} + +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none + } +} + +.nav { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none +} + +.nav-link { + display: block; + padding: .5rem 1rem +} + +.nav-link:focus, +.nav-link:hover { + text-decoration: none +} + +.nav-link.disabled { + color: #6c757d +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6 +} + +.nav-tabs .nav-item { + margin-bottom: -1px +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: .25rem; + border-top-right-radius: .25rem +} + +.nav-tabs .nav-link:focus, +.nav-tabs .nav-link:hover { + border-color: #e9ecef #e9ecef #dee2e6 +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent +} + +.nav-tabs .nav-item.show .nav-link, +.nav-tabs .nav-link.active { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.nav-pills .nav-link { + border-radius: .25rem +} + +.nav-pills .nav-link.active, +.nav-pills .show>.nav-link { + color: #fff; + background-color: #007bff +} + +.nav-fill .nav-item { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center +} + +.tab-content>.tab-pane { + display: none +} + +.tab-content>.active { + display: block +} + +.navbar { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; + padding: .5rem 1rem +} + +.navbar>.container, +.navbar>.container-fluid { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between +} + +.navbar-brand { + display: inline-block; + padding-top: .3125rem; + padding-bottom: .3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap +} + +.navbar-brand:focus, +.navbar-brand:hover { + text-decoration: none +} + +.navbar-nav { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0 +} + +.navbar-nav .dropdown-menu { + position: static; + float: none +} + +.navbar-text { + display: inline-block; + padding-top: .5rem; + padding-bottom: .5rem +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-align: center; + align-items: center +} + +.navbar-toggler { + padding: .25rem .75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: .25rem +} + +.navbar-toggler:focus, +.navbar-toggler:hover { + text-decoration: none +} + +.navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100% +} + +@media (max-width:575.98px) { + .navbar-expand-sm>.container, + .navbar-expand-sm>.container-fluid { + padding-right: 0; + padding-left: 0 + } +} + +@media (min-width:576px) { + .navbar-expand-sm { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + .navbar-expand-sm .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem + } + .navbar-expand-sm>.container, + .navbar-expand-sm>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + .navbar-expand-sm .navbar-collapse { + display: -ms-flexbox!important; + display: flex!important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + .navbar-expand-sm .navbar-toggler { + display: none + } +} + +@media (max-width:767.98px) { + .navbar-expand-md>.container, + .navbar-expand-md>.container-fluid { + padding-right: 0; + padding-left: 0 + } +} + +@media (min-width:768px) { + .navbar-expand-md { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + .navbar-expand-md .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem + } + .navbar-expand-md>.container, + .navbar-expand-md>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + .navbar-expand-md .navbar-collapse { + display: -ms-flexbox!important; + display: flex!important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + .navbar-expand-md .navbar-toggler { + display: none + } +} + +@media (max-width:991.98px) { + .navbar-expand-lg>.container, + .navbar-expand-lg>.container-fluid { + padding-right: 0; + padding-left: 0 + } +} + +@media (min-width:992px) { + .navbar-expand-lg { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + .navbar-expand-lg .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem + } + .navbar-expand-lg>.container, + .navbar-expand-lg>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + .navbar-expand-lg .navbar-collapse { + display: -ms-flexbox!important; + display: flex!important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + .navbar-expand-lg .navbar-toggler { + display: none + } +} + +@media (max-width:1199.98px) { + .navbar-expand-xl>.container, + .navbar-expand-xl>.container-fluid { + padding-right: 0; + padding-left: 0 + } +} + +@media (min-width:1200px) { + .navbar-expand-xl { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + .navbar-expand-xl .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem + } + .navbar-expand-xl>.container, + .navbar-expand-xl>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + .navbar-expand-xl .navbar-collapse { + display: -ms-flexbox!important; + display: flex!important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + .navbar-expand-xl .navbar-toggler { + display: none + } +} + +.navbar-expand { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start +} + +.navbar-expand>.container, +.navbar-expand>.container-fluid { + padding-right: 0; + padding-left: 0 +} + +.navbar-expand .navbar-nav { + -ms-flex-direction: row; + flex-direction: row +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: .5rem; + padding-left: .5rem +} + +.navbar-expand>.container, +.navbar-expand>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap +} + +.navbar-expand .navbar-collapse { + display: -ms-flexbox!important; + display: flex!important; + -ms-flex-preferred-size: auto; + flex-basis: auto +} + +.navbar-expand .navbar-toggler { + display: none +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-brand:focus, +.navbar-light .navbar-brand:hover { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, .5) +} + +.navbar-light .navbar-nav .nav-link:focus, +.navbar-light .navbar-nav .nav-link:hover { + color: rgba(0, 0, 0, .7) +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, .3) +} + +.navbar-light .navbar-nav .active>.nav-link, +.navbar-light .navbar-nav .nav-link.active, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .show>.nav-link { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, .5); + border-color: rgba(0, 0, 0, .1) +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, .5) +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-text a:focus, +.navbar-light .navbar-text a:hover { + color: rgba(0, 0, 0, .9) +} + +.navbar-dark .navbar-brand { + color: #fff +} + +.navbar-dark .navbar-brand:focus, +.navbar-dark .navbar-brand:hover { + color: #fff +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, .5) +} + +.navbar-dark .navbar-nav .nav-link:focus, +.navbar-dark .navbar-nav .nav-link:hover { + color: rgba(255, 255, 255, .75) +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, .25) +} + +.navbar-dark .navbar-nav .active>.nav-link, +.navbar-dark .navbar-nav .nav-link.active, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .show>.nav-link { + color: #fff +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, .5); + border-color: rgba(255, 255, 255, .1) +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, .5) +} + +.navbar-dark .navbar-text a { + color: #fff +} + +.navbar-dark .navbar-text a:focus, +.navbar-dark .navbar-text a:hover { + color: #fff +} + +.card { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, .125); + border-radius: .25rem +} + +.card>hr { + margin-right: 0; + margin-left: 0 +} + +.card>.list-group:first-child .list-group-item:first-child { + border-top-left-radius: .25rem; + border-top-right-radius: .25rem +} + +.card>.list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: .25rem; + border-bottom-left-radius: .25rem +} + +.card-body { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem +} + +.card-title { + margin-bottom: .75rem +} + +.card-subtitle { + margin-top: -.375rem; + margin-bottom: 0 +} + +.card-text:last-child { + margin-bottom: 0 +} + +.card-link:hover { + text-decoration: none +} + +.card-link+.card-link { + margin-left: 1.25rem +} + +.card-header { + padding: .75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, .03); + border-bottom: 1px solid rgba(0, 0, 0, .125) +} + +.card-header:first-child { + border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 +} + +.card-header+.list-group .list-group-item:first-child { + border-top: 0 +} + +.card-footer { + padding: .75rem 1.25rem; + background-color: rgba(0, 0, 0, .03); + border-top: 1px solid rgba(0, 0, 0, .125) +} + +.card-footer:last-child { + border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) +} + +.card-header-tabs { + margin-right: -.625rem; + margin-bottom: -.75rem; + margin-left: -.625rem; + border-bottom: 0 +} + +.card-header-pills { + margin-right: -.625rem; + margin-left: -.625rem +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem +} + +.card-img { + width: 100%; + border-radius: calc(.25rem - 1px) +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(.25rem - 1px); + border-top-right-radius: calc(.25rem - 1px) +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(.25rem - 1px); + border-bottom-left-radius: calc(.25rem - 1px) +} + +.card-deck { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column +} + +.card-deck .card { + margin-bottom: 15px +} + +@media (min-width:576px) { + .card-deck { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px + } + .card-deck .card { + display: -ms-flexbox; + display: flex; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px + } +} + +.card-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column +} + +.card-group>.card { + margin-bottom: 15px +} + +@media (min-width:576px) { + .card-group { + -ms-flex-flow: row wrap; + flex-flow: row wrap + } + .card-group>.card { + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0 + } + .card-group>.card+.card { + margin-left: 0; + border-left: 0 + } + .card-group>.card:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0 + } + .card-group>.card:first-child .card-header, + .card-group>.card:first-child .card-img-top { + border-top-right-radius: 0 + } + .card-group>.card:first-child .card-footer, + .card-group>.card:first-child .card-img-bottom { + border-bottom-right-radius: 0 + } + .card-group>.card:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0 + } + .card-group>.card:last-child .card-header, + .card-group>.card:last-child .card-img-top { + border-top-left-radius: 0 + } + .card-group>.card:last-child .card-footer, + .card-group>.card:last-child .card-img-bottom { + border-bottom-left-radius: 0 + } + .card-group>.card:only-child { + border-radius: .25rem + } + .card-group>.card:only-child .card-header, + .card-group>.card:only-child .card-img-top { + border-top-left-radius: .25rem; + border-top-right-radius: .25rem + } + .card-group>.card:only-child .card-footer, + .card-group>.card:only-child .card-img-bottom { + border-bottom-right-radius: .25rem; + border-bottom-left-radius: .25rem + } + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0 + } + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top { + border-radius: 0 + } +} + +.card-columns .card { + margin-bottom: .75rem +} + +@media (min-width:576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1 + } + .card-columns .card { + display: inline-block; + width: 100% + } +} + +.accordion .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0 +} + +.accordion .card:not(:first-of-type) .card-header:first-child { + border-radius: 0 +} + +.accordion .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.accordion .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: .75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: .25rem +} + +.breadcrumb-item+.breadcrumb-item { + padding-left: .5rem +} + +.breadcrumb-item+.breadcrumb-item::before { + display: inline-block; + padding-right: .5rem; + color: #6c757d; + content: "/" +} + +.breadcrumb-item+.breadcrumb-item:hover::before { + text-decoration: underline +} + +.breadcrumb-item+.breadcrumb-item:hover::before { + text-decoration: none +} + +.breadcrumb-item.active { + color: #6c757d +} + +.pagination { + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: .25rem +} + +.page-link { + position: relative; + display: block; + padding: .5rem .75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6 +} + +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6 +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.page-link:not(:disabled):not(.disabled) { + cursor: pointer +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: .25rem; + border-bottom-left-radius: .25rem +} + +.page-item:last-child .page-link { + border-top-right-radius: .25rem; + border-bottom-right-radius: .25rem +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6 +} + +.pagination-lg .page-link { + padding: .75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5 +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: .3rem; + border-bottom-left-radius: .3rem +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: .3rem; + border-bottom-right-radius: .3rem +} + +.pagination-sm .page-link { + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5 +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: .2rem; + border-bottom-left-radius: .2rem +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: .2rem; + border-bottom-right-radius: .2rem +} + +.badge { + display: inline-block; + padding: .25em .4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25rem +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.badge-pill { + padding-right: .6em; + padding-left: .6em; + border-radius: 10rem +} + +.badge-primary { + color: #fff; + background-color: #007bff +} + +.badge-primary[href]:focus, +.badge-primary[href]:hover { + color: #fff; + text-decoration: none; + background-color: #0062cc +} + +.badge-secondary { + color: #fff; + background-color: #6c757d +} + +.badge-secondary[href]:focus, +.badge-secondary[href]:hover { + color: #fff; + text-decoration: none; + background-color: #545b62 +} + +.badge-success { + color: #fff; + background-color: #28a745 +} + +.badge-success[href]:focus, +.badge-success[href]:hover { + color: #fff; + text-decoration: none; + background-color: #1e7e34 +} + +.badge-info { + color: #fff; + background-color: #17a2b8 +} + +.badge-info[href]:focus, +.badge-info[href]:hover { + color: #fff; + text-decoration: none; + background-color: #117a8b +} + +.badge-warning { + color: #212529; + background-color: #ffc107 +} + +.badge-warning[href]:focus, +.badge-warning[href]:hover { + color: #212529; + text-decoration: none; + background-color: #d39e00 +} + +.badge-danger { + color: #fff; + background-color: #dc3545 +} + +.badge-danger[href]:focus, +.badge-danger[href]:hover { + color: #fff; + text-decoration: none; + background-color: #bd2130 +} + +.badge-light { + color: #212529; + background-color: #f8f9fa +} + +.badge-light[href]:focus, +.badge-light[href]:hover { + color: #212529; + text-decoration: none; + background-color: #dae0e5 +} + +.badge-dark { + color: #fff; + background-color: #343a40 +} + +.badge-dark[href]:focus, +.badge-dark[href]:hover { + color: #fff; + text-decoration: none; + background-color: #1d2124 +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: .3rem +} + +@media (min-width:576px) { + .jumbotron { + padding: 4rem 2rem + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0 +} + +.alert { + position: relative; + padding: .75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: .25rem +} + +.alert-heading { + color: inherit +} + +.alert-link { + font-weight: 700 +} + +.alert-dismissible { + padding-right: 4rem +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: .75rem 1.25rem; + color: inherit +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff +} + +.alert-primary hr { + border-top-color: #9fcdff +} + +.alert-primary .alert-link { + color: #002752 +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db +} + +.alert-secondary hr { + border-top-color: #c8cbcf +} + +.alert-secondary .alert-link { + color: #202326 +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb +} + +.alert-success hr { + border-top-color: #b1dfbb +} + +.alert-success .alert-link { + color: #0b2e13 +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb +} + +.alert-info hr { + border-top-color: #abdde5 +} + +.alert-info .alert-link { + color: #062c33 +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba +} + +.alert-warning hr { + border-top-color: #ffe8a1 +} + +.alert-warning .alert-link { + color: #533f03 +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb +} + +.alert-danger hr { + border-top-color: #f1b0b7 +} + +.alert-danger .alert-link { + color: #491217 +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe +} + +.alert-light hr { + border-top-color: #ececf6 +} + +.alert-light .alert-link { + color: #686868 +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca +} + +.alert-dark hr { + border-top-color: #b9bbbe +} + +.alert-dark .alert-link { + color: #040505 +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0 + } + to { + background-position: 0 0 + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0 + } + to { + background-position: 0 0 + } +} + +.progress { + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: .75rem; + background-color: #e9ecef; + border-radius: .25rem +} + +.progress-bar { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + transition: width .6s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .progress-bar { + transition: none + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite +} + +.media { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start +} + +.media-body { + -ms-flex: 1; + flex: 1 +} + +.list-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0 +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit +} + +.list-group-item-action:focus, +.list-group-item-action:hover { + color: #495057; + text-decoration: none; + background-color: #f8f9fa +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef +} + +.list-group-item { + position: relative; + display: block; + padding: .75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, .125) +} + +.list-group-item:first-child { + border-top-left-radius: .25rem; + border-top-right-radius: .25rem +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: .25rem; + border-bottom-left-radius: .25rem +} + +.list-group-item:focus, +.list-group-item:hover { + z-index: 1; + text-decoration: none +} + +.list-group-item.disabled, +.list-group-item:disabled { + color: #6c757d; + background-color: #fff +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0 +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0 +} + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0 +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff +} + +.list-group-item-primary.list-group-item-action:focus, +.list-group-item-primary.list-group-item-action:hover { + color: #004085; + background-color: #9fcdff +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085 +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db +} + +.list-group-item-secondary.list-group-item-action:focus, +.list-group-item-secondary.list-group-item-action:hover { + color: #383d41; + background-color: #c8cbcf +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41 +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb +} + +.list-group-item-success.list-group-item-action:focus, +.list-group-item-success.list-group-item-action:hover { + color: #155724; + background-color: #b1dfbb +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724 +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb +} + +.list-group-item-info.list-group-item-action:focus, +.list-group-item-info.list-group-item-action:hover { + color: #0c5460; + background-color: #abdde5 +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460 +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba +} + +.list-group-item-warning.list-group-item-action:focus, +.list-group-item-warning.list-group-item-action:hover { + color: #856404; + background-color: #ffe8a1 +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404 +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb +} + +.list-group-item-danger.list-group-item-action:focus, +.list-group-item-danger.list-group-item-action:hover { + color: #721c24; + background-color: #f1b0b7 +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24 +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe +} + +.list-group-item-light.list-group-item-action:focus, +.list-group-item-light.list-group-item-action:hover { + color: #818182; + background-color: #ececf6 +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182 +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca +} + +.list-group-item-dark.list-group-item-action:focus, +.list-group-item-dark.list-group-item-action:hover { + color: #1b1e21; + background-color: #b9bbbe +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21 +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5 +} + +.close:not(:disabled):not(.disabled) { + cursor: pointer +} + +.close:not(:disabled):not(.disabled):focus, +.close:not(:disabled):not(.disabled):hover { + color: #000; + text-decoration: none; + opacity: .75 +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none +} + +.modal-open { + overflow: hidden +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0 +} + +.modal-dialog { + position: relative; + width: auto; + margin: .5rem; + pointer-events: none +} + +.modal.fade .modal-dialog { + transition: -webkit-transform .3s ease-out; + transition: transform .3s ease-out; + transition: transform .3s ease-out, -webkit-transform .3s ease-out; + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%) +} + +@media screen and (prefers-reduced-motion:reduce) { + .modal.fade .modal-dialog { + transition: none + } +} + +.modal.show .modal-dialog { + -webkit-transform: translate(0, 0); + transform: translate(0, 0) +} + +.modal-dialog-centered { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (.5rem * 2)) +} + +.modal-dialog-centered::before { + display: block; + height: calc(100vh - (.5rem * 2)); + content: "" +} + +.modal-content { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: .3rem; + outline: 0 +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000 +} + +.modal-backdrop.fade { + opacity: 0 +} + +.modal-backdrop.show { + opacity: .5 +} + +.modal-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #e9ecef; + border-top-left-radius: .3rem; + border-top-right-radius: .3rem +} + +.modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5 +} + +.modal-body { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem +} + +.modal-footer { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #e9ecef +} + +.modal-footer>:not(:first-child) { + margin-left: .25rem +} + +.modal-footer>:not(:last-child) { + margin-right: .25rem +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll +} + +@media (min-width:576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto + } + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)) + } + .modal-dialog-centered::before { + height: calc(100vh - (1.75rem * 2)) + } + .modal-sm { + max-width: 300px + } +} + +@media (min-width:992px) { + .modal-lg { + max-width: 800px + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: .875rem; + word-wrap: break-word; + opacity: 0 +} + +.tooltip.show { + opacity: .9 +} + +.tooltip .arrow { + position: absolute; + display: block; + width: .8rem; + height: .4rem +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-tooltip-auto[x-placement^=top], +.bs-tooltip-top { + padding: .4rem 0 +} + +.bs-tooltip-auto[x-placement^=top] .arrow, +.bs-tooltip-top .arrow { + bottom: 0 +} + +.bs-tooltip-auto[x-placement^=top] .arrow::before, +.bs-tooltip-top .arrow::before { + top: 0; + border-width: .4rem .4rem 0; + border-top-color: #000 +} + +.bs-tooltip-auto[x-placement^=right], +.bs-tooltip-right { + padding: 0 .4rem +} + +.bs-tooltip-auto[x-placement^=right] .arrow, +.bs-tooltip-right .arrow { + left: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[x-placement^=right] .arrow::before, +.bs-tooltip-right .arrow::before { + right: 0; + border-width: .4rem .4rem .4rem 0; + border-right-color: #000 +} + +.bs-tooltip-auto[x-placement^=bottom], +.bs-tooltip-bottom { + padding: .4rem 0 +} + +.bs-tooltip-auto[x-placement^=bottom] .arrow, +.bs-tooltip-bottom .arrow { + top: 0 +} + +.bs-tooltip-auto[x-placement^=bottom] .arrow::before, +.bs-tooltip-bottom .arrow::before { + bottom: 0; + border-width: 0 .4rem .4rem; + border-bottom-color: #000 +} + +.bs-tooltip-auto[x-placement^=left], +.bs-tooltip-left { + padding: 0 .4rem +} + +.bs-tooltip-auto[x-placement^=left] .arrow, +.bs-tooltip-left .arrow { + right: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[x-placement^=left] .arrow::before, +.bs-tooltip-left .arrow::before { + left: 0; + border-width: .4rem 0 .4rem .4rem; + border-left-color: #000 +} + +.tooltip-inner { + max-width: 200px; + padding: .25rem .5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: .25rem +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: .875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: .3rem +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: .5rem; + margin: 0 .3rem +} + +.popover .arrow::after, +.popover .arrow::before { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-popover-auto[x-placement^=top], +.bs-popover-top { + margin-bottom: .5rem +} + +.bs-popover-auto[x-placement^=top] .arrow, +.bs-popover-top .arrow { + bottom: calc((.5rem + 1px) * -1) +} + +.bs-popover-auto[x-placement^=top] .arrow::after, +.bs-popover-auto[x-placement^=top] .arrow::before, +.bs-popover-top .arrow::after, +.bs-popover-top .arrow::before { + border-width: .5rem .5rem 0 +} + +.bs-popover-auto[x-placement^=top] .arrow::before, +.bs-popover-top .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=top] .arrow::after, +.bs-popover-top .arrow::after { + bottom: 1px; + border-top-color: #fff +} + +.bs-popover-auto[x-placement^=right], +.bs-popover-right { + margin-left: .5rem +} + +.bs-popover-auto[x-placement^=right] .arrow, +.bs-popover-right .arrow { + left: calc((.5rem + 1px) * -1); + width: .5rem; + height: 1rem; + margin: .3rem 0 +} + +.bs-popover-auto[x-placement^=right] .arrow::after, +.bs-popover-auto[x-placement^=right] .arrow::before, +.bs-popover-right .arrow::after, +.bs-popover-right .arrow::before { + border-width: .5rem .5rem .5rem 0 +} + +.bs-popover-auto[x-placement^=right] .arrow::before, +.bs-popover-right .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=right] .arrow::after, +.bs-popover-right .arrow::after { + left: 1px; + border-right-color: #fff +} + +.bs-popover-auto[x-placement^=bottom], +.bs-popover-bottom { + margin-top: .5rem +} + +.bs-popover-auto[x-placement^=bottom] .arrow, +.bs-popover-bottom .arrow { + top: calc((.5rem + 1px) * -1) +} + +.bs-popover-auto[x-placement^=bottom] .arrow::after, +.bs-popover-auto[x-placement^=bottom] .arrow::before, +.bs-popover-bottom .arrow::after, +.bs-popover-bottom .arrow::before { + border-width: 0 .5rem .5rem .5rem +} + +.bs-popover-auto[x-placement^=bottom] .arrow::before, +.bs-popover-bottom .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=bottom] .arrow::after, +.bs-popover-bottom .arrow::after { + top: 1px; + border-bottom-color: #fff +} + +.bs-popover-auto[x-placement^=bottom] .popover-header::before, +.bs-popover-bottom .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7 +} + +.bs-popover-auto[x-placement^=left], +.bs-popover-left { + margin-right: .5rem +} + +.bs-popover-auto[x-placement^=left] .arrow, +.bs-popover-left .arrow { + right: calc((.5rem + 1px) * -1); + width: .5rem; + height: 1rem; + margin: .3rem 0 +} + +.bs-popover-auto[x-placement^=left] .arrow::after, +.bs-popover-auto[x-placement^=left] .arrow::before, +.bs-popover-left .arrow::after, +.bs-popover-left .arrow::before { + border-width: .5rem 0 .5rem .5rem +} + +.bs-popover-auto[x-placement^=left] .arrow::before, +.bs-popover-left .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=left] .arrow::after, +.bs-popover-left .arrow::after { + right: 1px; + border-left-color: #fff +} + +.popover-header { + padding: .5rem .75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(.3rem - 1px); + border-top-right-radius: calc(.3rem - 1px) +} + +.popover-header:empty { + display: none +} + +.popover-body { + padding: .5rem .75rem; + color: #212529 +} + +.carousel { + position: relative +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden +} + +.carousel-item { + position: relative; + display: none; + -ms-flex-align: center; + align-items: center; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px +} + +.carousel-item-next, +.carousel-item-prev, +.carousel-item.active { + display: block; + transition: -webkit-transform .6s ease; + transition: transform .6s ease; + transition: transform .6s ease, -webkit-transform .6s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .carousel-item-next, + .carousel-item-prev, + .carousel-item.active { + transition: none + } +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0 +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0) +} + +@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0) + } +} + +.active.carousel-item-right, +.carousel-item-next { + -webkit-transform: translateX(100%); + transform: translateX(100%) +} + +@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) { + .active.carousel-item-right, + .carousel-item-next { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } +} + +.active.carousel-item-left, +.carousel-item-prev { + -webkit-transform: translateX(-100%); + transform: translateX(-100%) +} + +@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) { + .active.carousel-item-left, + .carousel-item-prev { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-duration: .6s; + transition-property: opacity +} + +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right, +.carousel-fade .carousel-item.active { + opacity: 1 +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + opacity: 0 +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev, +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active { + -webkit-transform: translateX(0); + transform: translateX(0) +} + +@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-prev, + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0) + } +} + +.carousel-control-next, +.carousel-control-prev { + position: absolute; + top: 0; + bottom: 0; + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: .5 +} + +.carousel-control-next:focus, +.carousel-control-next:hover, +.carousel-control-prev:focus, +.carousel-control-prev:hover { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9 +} + +.carousel-control-prev { + left: 0 +} + +.carousel-control-next { + right: 0 +} + +.carousel-control-next-icon, +.carousel-control-prev-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100% +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none +} + +.carousel-indicators li { + position: relative; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: rgba(255, 255, 255, .5) +} + +.carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: "" +} + +.carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: "" +} + +.carousel-indicators .active { + background-color: #fff +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center +} + +.align-baseline { + vertical-align: baseline!important +} + +.align-top { + vertical-align: top!important +} + +.align-middle { + vertical-align: middle!important +} + +.align-bottom { + vertical-align: bottom!important +} + +.align-text-bottom { + vertical-align: text-bottom!important +} + +.align-text-top { + vertical-align: text-top!important +} + +.bg-primary { + background-color: #007bff!important +} + +a.bg-primary:focus, +a.bg-primary:hover, +button.bg-primary:focus, +button.bg-primary:hover { + background-color: #0062cc!important +} + +.bg-secondary { + background-color: #6c757d!important +} + +a.bg-secondary:focus, +a.bg-secondary:hover, +button.bg-secondary:focus, +button.bg-secondary:hover { + background-color: #545b62!important +} + +.bg-success { + background-color: #28a745!important +} + +a.bg-success:focus, +a.bg-success:hover, +button.bg-success:focus, +button.bg-success:hover { + background-color: #1e7e34!important +} + +.bg-info { + background-color: #17a2b8!important +} + +a.bg-info:focus, +a.bg-info:hover, +button.bg-info:focus, +button.bg-info:hover { + background-color: #117a8b!important +} + +.bg-warning { + background-color: #ffc107!important +} + +a.bg-warning:focus, +a.bg-warning:hover, +button.bg-warning:focus, +button.bg-warning:hover { + background-color: #d39e00!important +} + +.bg-danger { + background-color: #dc3545!important +} + +a.bg-danger:focus, +a.bg-danger:hover, +button.bg-danger:focus, +button.bg-danger:hover { + background-color: #bd2130!important +} + +.bg-light { + background-color: #f8f9fa!important +} + +a.bg-light:focus, +a.bg-light:hover, +button.bg-light:focus, +button.bg-light:hover { + background-color: #dae0e5!important +} + +.bg-dark { + background-color: #343a40!important +} + +a.bg-dark:focus, +a.bg-dark:hover, +button.bg-dark:focus, +button.bg-dark:hover { + background-color: #1d2124!important +} + +.bg-white { + background-color: #fff!important +} + +.bg-transparent { + background-color: transparent!important +} + +.border { + border: 1px solid #dee2e6!important +} + +.border-top { + border-top: 1px solid #dee2e6!important +} + +.border-right { + border-right: 1px solid #dee2e6!important +} + +.border-bottom { + border-bottom: 1px solid #dee2e6!important +} + +.border-left { + border-left: 1px solid #dee2e6!important +} + +.border-0 { + border: 0!important +} + +.border-top-0 { + border-top: 0!important +} + +.border-right-0 { + border-right: 0!important +} + +.border-bottom-0 { + border-bottom: 0!important +} + +.border-left-0 { + border-left: 0!important +} + +.border-primary { + border-color: #007bff!important +} + +.border-secondary { + border-color: #6c757d!important +} + +.border-success { + border-color: #28a745!important +} + +.border-info { + border-color: #17a2b8!important +} + +.border-warning { + border-color: #ffc107!important +} + +.border-danger { + border-color: #dc3545!important +} + +.border-light { + border-color: #f8f9fa!important +} + +.border-dark { + border-color: #343a40!important +} + +.border-white { + border-color: #fff!important +} + +.rounded { + border-radius: .25rem!important +} + +.rounded-top { + border-top-left-radius: .25rem!important; + border-top-right-radius: .25rem!important +} + +.rounded-right { + border-top-right-radius: .25rem!important; + border-bottom-right-radius: .25rem!important +} + +.rounded-bottom { + border-bottom-right-radius: .25rem!important; + border-bottom-left-radius: .25rem!important +} + +.rounded-left { + border-top-left-radius: .25rem!important; + border-bottom-left-radius: .25rem!important +} + +.rounded-circle { + border-radius: 50%!important +} + +.rounded-0 { + border-radius: 0!important +} + +.clearfix::after { + display: block; + clear: both; + content: "" +} + +.d-none { + display: none!important +} + +.d-inline { + display: inline!important +} + +.d-inline-block { + display: inline-block!important +} + +.d-block { + display: block!important +} + +.d-table { + display: table!important +} + +.d-table-row { + display: table-row!important +} + +.d-table-cell { + display: table-cell!important +} + +.d-flex { + display: -ms-flexbox!important; + display: flex!important +} + +.d-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important +} + +@media (min-width:576px) { + .d-sm-none { + display: none!important + } + .d-sm-inline { + display: inline!important + } + .d-sm-inline-block { + display: inline-block!important + } + .d-sm-block { + display: block!important + } + .d-sm-table { + display: table!important + } + .d-sm-table-row { + display: table-row!important + } + .d-sm-table-cell { + display: table-cell!important + } + .d-sm-flex { + display: -ms-flexbox!important; + display: flex!important + } + .d-sm-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important + } +} + +@media (min-width:768px) { + .d-md-none { + display: none!important + } + .d-md-inline { + display: inline!important + } + .d-md-inline-block { + display: inline-block!important + } + .d-md-block { + display: block!important + } + .d-md-table { + display: table!important + } + .d-md-table-row { + display: table-row!important + } + .d-md-table-cell { + display: table-cell!important + } + .d-md-flex { + display: -ms-flexbox!important; + display: flex!important + } + .d-md-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important + } +} + +@media (min-width:992px) { + .d-lg-none { + display: none!important + } + .d-lg-inline { + display: inline!important + } + .d-lg-inline-block { + display: inline-block!important + } + .d-lg-block { + display: block!important + } + .d-lg-table { + display: table!important + } + .d-lg-table-row { + display: table-row!important + } + .d-lg-table-cell { + display: table-cell!important + } + .d-lg-flex { + display: -ms-flexbox!important; + display: flex!important + } + .d-lg-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important + } +} + +@media (min-width:1200px) { + .d-xl-none { + display: none!important + } + .d-xl-inline { + display: inline!important + } + .d-xl-inline-block { + display: inline-block!important + } + .d-xl-block { + display: block!important + } + .d-xl-table { + display: table!important + } + .d-xl-table-row { + display: table-row!important + } + .d-xl-table-cell { + display: table-cell!important + } + .d-xl-flex { + display: -ms-flexbox!important; + display: flex!important + } + .d-xl-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important + } +} + +@media print { + .d-print-none { + display: none!important + } + .d-print-inline { + display: inline!important + } + .d-print-inline-block { + display: inline-block!important + } + .d-print-block { + display: block!important + } + .d-print-table { + display: table!important + } + .d-print-table-row { + display: table-row!important + } + .d-print-table-cell { + display: table-cell!important + } + .d-print-flex { + display: -ms-flexbox!important; + display: flex!important + } + .d-print-inline-flex { + display: -ms-inline-flexbox!important; + display: inline-flex!important + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden +} + +.embed-responsive::before { + display: block; + content: "" +} + +.embed-responsive .embed-responsive-item, +.embed-responsive embed, +.embed-responsive iframe, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0 +} + +.embed-responsive-21by9::before { + padding-top: 42.857143% +} + +.embed-responsive-16by9::before { + padding-top: 56.25% +} + +.embed-responsive-4by3::before { + padding-top: 75% +} + +.embed-responsive-1by1::before { + padding-top: 100% +} + +.flex-row { + -ms-flex-direction: row!important; + flex-direction: row!important +} + +.flex-column { + -ms-flex-direction: column!important; + flex-direction: column!important +} + +.flex-row-reverse { + -ms-flex-direction: row-reverse!important; + flex-direction: row-reverse!important +} + +.flex-column-reverse { + -ms-flex-direction: column-reverse!important; + flex-direction: column-reverse!important +} + +.flex-wrap { + -ms-flex-wrap: wrap!important; + flex-wrap: wrap!important +} + +.flex-nowrap { + -ms-flex-wrap: nowrap!important; + flex-wrap: nowrap!important +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse!important; + flex-wrap: wrap-reverse!important +} + +.flex-fill { + -ms-flex: 1 1 auto!important; + flex: 1 1 auto!important +} + +.flex-grow-0 { + -ms-flex-positive: 0!important; + flex-grow: 0!important +} + +.flex-grow-1 { + -ms-flex-positive: 1!important; + flex-grow: 1!important +} + +.flex-shrink-0 { + -ms-flex-negative: 0!important; + flex-shrink: 0!important +} + +.flex-shrink-1 { + -ms-flex-negative: 1!important; + flex-shrink: 1!important +} + +.justify-content-start { + -ms-flex-pack: start!important; + justify-content: flex-start!important +} + +.justify-content-end { + -ms-flex-pack: end!important; + justify-content: flex-end!important +} + +.justify-content-center { + -ms-flex-pack: center!important; + justify-content: center!important +} + +.justify-content-between { + -ms-flex-pack: justify!important; + justify-content: space-between!important +} + +.justify-content-around { + -ms-flex-pack: distribute!important; + justify-content: space-around!important +} + +.align-items-start { + -ms-flex-align: start!important; + align-items: flex-start!important +} + +.align-items-end { + -ms-flex-align: end!important; + align-items: flex-end!important +} + +.align-items-center { + -ms-flex-align: center!important; + align-items: center!important +} + +.align-items-baseline { + -ms-flex-align: baseline!important; + align-items: baseline!important +} + +.align-items-stretch { + -ms-flex-align: stretch!important; + align-items: stretch!important +} + +.align-content-start { + -ms-flex-line-pack: start!important; + align-content: flex-start!important +} + +.align-content-end { + -ms-flex-line-pack: end!important; + align-content: flex-end!important +} + +.align-content-center { + -ms-flex-line-pack: center!important; + align-content: center!important +} + +.align-content-between { + -ms-flex-line-pack: justify!important; + align-content: space-between!important +} + +.align-content-around { + -ms-flex-line-pack: distribute!important; + align-content: space-around!important +} + +.align-content-stretch { + -ms-flex-line-pack: stretch!important; + align-content: stretch!important +} + +.align-self-auto { + -ms-flex-item-align: auto!important; + align-self: auto!important +} + +.align-self-start { + -ms-flex-item-align: start!important; + align-self: flex-start!important +} + +.align-self-end { + -ms-flex-item-align: end!important; + align-self: flex-end!important +} + +.align-self-center { + -ms-flex-item-align: center!important; + align-self: center!important +} + +.align-self-baseline { + -ms-flex-item-align: baseline!important; + align-self: baseline!important +} + +.align-self-stretch { + -ms-flex-item-align: stretch!important; + align-self: stretch!important +} + +@media (min-width:576px) { + .flex-sm-row { + -ms-flex-direction: row!important; + flex-direction: row!important + } + .flex-sm-column { + -ms-flex-direction: column!important; + flex-direction: column!important + } + .flex-sm-row-reverse { + -ms-flex-direction: row-reverse!important; + flex-direction: row-reverse!important + } + .flex-sm-column-reverse { + -ms-flex-direction: column-reverse!important; + flex-direction: column-reverse!important + } + .flex-sm-wrap { + -ms-flex-wrap: wrap!important; + flex-wrap: wrap!important + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap!important; + flex-wrap: nowrap!important + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse!important; + flex-wrap: wrap-reverse!important + } + .flex-sm-fill { + -ms-flex: 1 1 auto!important; + flex: 1 1 auto!important + } + .flex-sm-grow-0 { + -ms-flex-positive: 0!important; + flex-grow: 0!important + } + .flex-sm-grow-1 { + -ms-flex-positive: 1!important; + flex-grow: 1!important + } + .flex-sm-shrink-0 { + -ms-flex-negative: 0!important; + flex-shrink: 0!important + } + .flex-sm-shrink-1 { + -ms-flex-negative: 1!important; + flex-shrink: 1!important + } + .justify-content-sm-start { + -ms-flex-pack: start!important; + justify-content: flex-start!important + } + .justify-content-sm-end { + -ms-flex-pack: end!important; + justify-content: flex-end!important + } + .justify-content-sm-center { + -ms-flex-pack: center!important; + justify-content: center!important + } + .justify-content-sm-between { + -ms-flex-pack: justify!important; + justify-content: space-between!important + } + .justify-content-sm-around { + -ms-flex-pack: distribute!important; + justify-content: space-around!important + } + .align-items-sm-start { + -ms-flex-align: start!important; + align-items: flex-start!important + } + .align-items-sm-end { + -ms-flex-align: end!important; + align-items: flex-end!important + } + .align-items-sm-center { + -ms-flex-align: center!important; + align-items: center!important + } + .align-items-sm-baseline { + -ms-flex-align: baseline!important; + align-items: baseline!important + } + .align-items-sm-stretch { + -ms-flex-align: stretch!important; + align-items: stretch!important + } + .align-content-sm-start { + -ms-flex-line-pack: start!important; + align-content: flex-start!important + } + .align-content-sm-end { + -ms-flex-line-pack: end!important; + align-content: flex-end!important + } + .align-content-sm-center { + -ms-flex-line-pack: center!important; + align-content: center!important + } + .align-content-sm-between { + -ms-flex-line-pack: justify!important; + align-content: space-between!important + } + .align-content-sm-around { + -ms-flex-line-pack: distribute!important; + align-content: space-around!important + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch!important; + align-content: stretch!important + } + .align-self-sm-auto { + -ms-flex-item-align: auto!important; + align-self: auto!important + } + .align-self-sm-start { + -ms-flex-item-align: start!important; + align-self: flex-start!important + } + .align-self-sm-end { + -ms-flex-item-align: end!important; + align-self: flex-end!important + } + .align-self-sm-center { + -ms-flex-item-align: center!important; + align-self: center!important + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline!important; + align-self: baseline!important + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch!important; + align-self: stretch!important + } +} + +@media (min-width:768px) { + .flex-md-row { + -ms-flex-direction: row!important; + flex-direction: row!important + } + .flex-md-column { + -ms-flex-direction: column!important; + flex-direction: column!important + } + .flex-md-row-reverse { + -ms-flex-direction: row-reverse!important; + flex-direction: row-reverse!important + } + .flex-md-column-reverse { + -ms-flex-direction: column-reverse!important; + flex-direction: column-reverse!important + } + .flex-md-wrap { + -ms-flex-wrap: wrap!important; + flex-wrap: wrap!important + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap!important; + flex-wrap: nowrap!important + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse!important; + flex-wrap: wrap-reverse!important + } + .flex-md-fill { + -ms-flex: 1 1 auto!important; + flex: 1 1 auto!important + } + .flex-md-grow-0 { + -ms-flex-positive: 0!important; + flex-grow: 0!important + } + .flex-md-grow-1 { + -ms-flex-positive: 1!important; + flex-grow: 1!important + } + .flex-md-shrink-0 { + -ms-flex-negative: 0!important; + flex-shrink: 0!important + } + .flex-md-shrink-1 { + -ms-flex-negative: 1!important; + flex-shrink: 1!important + } + .justify-content-md-start { + -ms-flex-pack: start!important; + justify-content: flex-start!important + } + .justify-content-md-end { + -ms-flex-pack: end!important; + justify-content: flex-end!important + } + .justify-content-md-center { + -ms-flex-pack: center!important; + justify-content: center!important + } + .justify-content-md-between { + -ms-flex-pack: justify!important; + justify-content: space-between!important + } + .justify-content-md-around { + -ms-flex-pack: distribute!important; + justify-content: space-around!important + } + .align-items-md-start { + -ms-flex-align: start!important; + align-items: flex-start!important + } + .align-items-md-end { + -ms-flex-align: end!important; + align-items: flex-end!important + } + .align-items-md-center { + -ms-flex-align: center!important; + align-items: center!important + } + .align-items-md-baseline { + -ms-flex-align: baseline!important; + align-items: baseline!important + } + .align-items-md-stretch { + -ms-flex-align: stretch!important; + align-items: stretch!important + } + .align-content-md-start { + -ms-flex-line-pack: start!important; + align-content: flex-start!important + } + .align-content-md-end { + -ms-flex-line-pack: end!important; + align-content: flex-end!important + } + .align-content-md-center { + -ms-flex-line-pack: center!important; + align-content: center!important + } + .align-content-md-between { + -ms-flex-line-pack: justify!important; + align-content: space-between!important + } + .align-content-md-around { + -ms-flex-line-pack: distribute!important; + align-content: space-around!important + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch!important; + align-content: stretch!important + } + .align-self-md-auto { + -ms-flex-item-align: auto!important; + align-self: auto!important + } + .align-self-md-start { + -ms-flex-item-align: start!important; + align-self: flex-start!important + } + .align-self-md-end { + -ms-flex-item-align: end!important; + align-self: flex-end!important + } + .align-self-md-center { + -ms-flex-item-align: center!important; + align-self: center!important + } + .align-self-md-baseline { + -ms-flex-item-align: baseline!important; + align-self: baseline!important + } + .align-self-md-stretch { + -ms-flex-item-align: stretch!important; + align-self: stretch!important + } +} + +@media (min-width:992px) { + .flex-lg-row { + -ms-flex-direction: row!important; + flex-direction: row!important + } + .flex-lg-column { + -ms-flex-direction: column!important; + flex-direction: column!important + } + .flex-lg-row-reverse { + -ms-flex-direction: row-reverse!important; + flex-direction: row-reverse!important + } + .flex-lg-column-reverse { + -ms-flex-direction: column-reverse!important; + flex-direction: column-reverse!important + } + .flex-lg-wrap { + -ms-flex-wrap: wrap!important; + flex-wrap: wrap!important + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap!important; + flex-wrap: nowrap!important + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse!important; + flex-wrap: wrap-reverse!important + } + .flex-lg-fill { + -ms-flex: 1 1 auto!important; + flex: 1 1 auto!important + } + .flex-lg-grow-0 { + -ms-flex-positive: 0!important; + flex-grow: 0!important + } + .flex-lg-grow-1 { + -ms-flex-positive: 1!important; + flex-grow: 1!important + } + .flex-lg-shrink-0 { + -ms-flex-negative: 0!important; + flex-shrink: 0!important + } + .flex-lg-shrink-1 { + -ms-flex-negative: 1!important; + flex-shrink: 1!important + } + .justify-content-lg-start { + -ms-flex-pack: start!important; + justify-content: flex-start!important + } + .justify-content-lg-end { + -ms-flex-pack: end!important; + justify-content: flex-end!important + } + .justify-content-lg-center { + -ms-flex-pack: center!important; + justify-content: center!important + } + .justify-content-lg-between { + -ms-flex-pack: justify!important; + justify-content: space-between!important + } + .justify-content-lg-around { + -ms-flex-pack: distribute!important; + justify-content: space-around!important + } + .align-items-lg-start { + -ms-flex-align: start!important; + align-items: flex-start!important + } + .align-items-lg-end { + -ms-flex-align: end!important; + align-items: flex-end!important + } + .align-items-lg-center { + -ms-flex-align: center!important; + align-items: center!important + } + .align-items-lg-baseline { + -ms-flex-align: baseline!important; + align-items: baseline!important + } + .align-items-lg-stretch { + -ms-flex-align: stretch!important; + align-items: stretch!important + } + .align-content-lg-start { + -ms-flex-line-pack: start!important; + align-content: flex-start!important + } + .align-content-lg-end { + -ms-flex-line-pack: end!important; + align-content: flex-end!important + } + .align-content-lg-center { + -ms-flex-line-pack: center!important; + align-content: center!important + } + .align-content-lg-between { + -ms-flex-line-pack: justify!important; + align-content: space-between!important + } + .align-content-lg-around { + -ms-flex-line-pack: distribute!important; + align-content: space-around!important + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch!important; + align-content: stretch!important + } + .align-self-lg-auto { + -ms-flex-item-align: auto!important; + align-self: auto!important + } + .align-self-lg-start { + -ms-flex-item-align: start!important; + align-self: flex-start!important + } + .align-self-lg-end { + -ms-flex-item-align: end!important; + align-self: flex-end!important + } + .align-self-lg-center { + -ms-flex-item-align: center!important; + align-self: center!important + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline!important; + align-self: baseline!important + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch!important; + align-self: stretch!important + } +} + +@media (min-width:1200px) { + .flex-xl-row { + -ms-flex-direction: row!important; + flex-direction: row!important + } + .flex-xl-column { + -ms-flex-direction: column!important; + flex-direction: column!important + } + .flex-xl-row-reverse { + -ms-flex-direction: row-reverse!important; + flex-direction: row-reverse!important + } + .flex-xl-column-reverse { + -ms-flex-direction: column-reverse!important; + flex-direction: column-reverse!important + } + .flex-xl-wrap { + -ms-flex-wrap: wrap!important; + flex-wrap: wrap!important + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap!important; + flex-wrap: nowrap!important + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse!important; + flex-wrap: wrap-reverse!important + } + .flex-xl-fill { + -ms-flex: 1 1 auto!important; + flex: 1 1 auto!important + } + .flex-xl-grow-0 { + -ms-flex-positive: 0!important; + flex-grow: 0!important + } + .flex-xl-grow-1 { + -ms-flex-positive: 1!important; + flex-grow: 1!important + } + .flex-xl-shrink-0 { + -ms-flex-negative: 0!important; + flex-shrink: 0!important + } + .flex-xl-shrink-1 { + -ms-flex-negative: 1!important; + flex-shrink: 1!important + } + .justify-content-xl-start { + -ms-flex-pack: start!important; + justify-content: flex-start!important + } + .justify-content-xl-end { + -ms-flex-pack: end!important; + justify-content: flex-end!important + } + .justify-content-xl-center { + -ms-flex-pack: center!important; + justify-content: center!important + } + .justify-content-xl-between { + -ms-flex-pack: justify!important; + justify-content: space-between!important + } + .justify-content-xl-around { + -ms-flex-pack: distribute!important; + justify-content: space-around!important + } + .align-items-xl-start { + -ms-flex-align: start!important; + align-items: flex-start!important + } + .align-items-xl-end { + -ms-flex-align: end!important; + align-items: flex-end!important + } + .align-items-xl-center { + -ms-flex-align: center!important; + align-items: center!important + } + .align-items-xl-baseline { + -ms-flex-align: baseline!important; + align-items: baseline!important + } + .align-items-xl-stretch { + -ms-flex-align: stretch!important; + align-items: stretch!important + } + .align-content-xl-start { + -ms-flex-line-pack: start!important; + align-content: flex-start!important + } + .align-content-xl-end { + -ms-flex-line-pack: end!important; + align-content: flex-end!important + } + .align-content-xl-center { + -ms-flex-line-pack: center!important; + align-content: center!important + } + .align-content-xl-between { + -ms-flex-line-pack: justify!important; + align-content: space-between!important + } + .align-content-xl-around { + -ms-flex-line-pack: distribute!important; + align-content: space-around!important + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch!important; + align-content: stretch!important + } + .align-self-xl-auto { + -ms-flex-item-align: auto!important; + align-self: auto!important + } + .align-self-xl-start { + -ms-flex-item-align: start!important; + align-self: flex-start!important + } + .align-self-xl-end { + -ms-flex-item-align: end!important; + align-self: flex-end!important + } + .align-self-xl-center { + -ms-flex-item-align: center!important; + align-self: center!important + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline!important; + align-self: baseline!important + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch!important; + align-self: stretch!important + } +} + +.float-left { + float: left!important +} + +.float-right { + float: right!important +} + +.float-none { + float: none!important +} + +@media (min-width:576px) { + .float-sm-left { + float: left!important + } + .float-sm-right { + float: right!important + } + .float-sm-none { + float: none!important + } +} + +@media (min-width:768px) { + .float-md-left { + float: left!important + } + .float-md-right { + float: right!important + } + .float-md-none { + float: none!important + } +} + +@media (min-width:992px) { + .float-lg-left { + float: left!important + } + .float-lg-right { + float: right!important + } + .float-lg-none { + float: none!important + } +} + +@media (min-width:1200px) { + .float-xl-left { + float: left!important + } + .float-xl-right { + float: right!important + } + .float-xl-none { + float: none!important + } +} + +.position-static { + position: static!important +} + +.position-relative { + position: relative!important +} + +.position-absolute { + position: absolute!important +} + +.position-fixed { + position: fixed!important +} + +.position-sticky { + position: -webkit-sticky!important; + position: sticky!important +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030 +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030 +} + +@supports ((position:-webkit-sticky) or (position:sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020 + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0 +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal +} + +.shadow-sm { + box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important +} + +.shadow { + box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)!important +} + +.shadow-none { + box-shadow: none!important +} + +.w-25 { + width: 25%!important +} + +.w-50 { + width: 50%!important +} + +.w-75 { + width: 75%!important +} + +.w-100 { + width: 100%!important +} + +.w-auto { + width: auto!important +} + +.h-25 { + height: 25%!important +} + +.h-50 { + height: 50%!important +} + +.h-75 { + height: 75%!important +} + +.h-100 { + height: 100%!important +} + +.h-auto { + height: auto!important +} + +.mw-100 { + max-width: 100%!important +} + +.mh-100 { + max-height: 100%!important +} + +.m-0 { + margin: 0!important +} + +.mt-0, +.my-0 { + margin-top: 0!important +} + +.mr-0, +.mx-0 { + margin-right: 0!important +} + +.mb-0, +.my-0 { + margin-bottom: 0!important +} + +.ml-0, +.mx-0 { + margin-left: 0!important +} + +.m-1 { + margin: .25rem!important +} + +.mt-1, +.my-1 { + margin-top: .25rem!important +} + +.mr-1, +.mx-1 { + margin-right: .25rem!important +} + +.mb-1, +.my-1 { + margin-bottom: .25rem!important +} + +.ml-1, +.mx-1 { + margin-left: .25rem!important +} + +.m-2 { + margin: .5rem!important +} + +.mt-2, +.my-2 { + margin-top: .5rem!important +} + +.mr-2, +.mx-2 { + margin-right: .5rem!important +} + +.mb-2, +.my-2 { + margin-bottom: .5rem!important +} + +.ml-2, +.mx-2 { + margin-left: .5rem!important +} + +.m-3 { + margin: 1rem!important +} + +.mt-3, +.my-3 { + margin-top: 1rem!important +} + +.mr-3, +.mx-3 { + margin-right: 1rem!important +} + +.mb-3, +.my-3 { + margin-bottom: 1rem!important +} + +.ml-3, +.mx-3 { + margin-left: 1rem!important +} + +.m-4 { + margin: 1.5rem!important +} + +.mt-4, +.my-4 { + margin-top: 1.5rem!important +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem!important +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem!important +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem!important +} + +.m-5 { + margin: 3rem!important +} + +.mt-5, +.my-5 { + margin-top: 3rem!important +} + +.mr-5, +.mx-5 { + margin-right: 3rem!important +} + +.mb-5, +.my-5 { + margin-bottom: 3rem!important +} + +.ml-5, +.mx-5 { + margin-left: 3rem!important +} + +.p-0 { + padding: 0!important +} + +.pt-0, +.py-0 { + padding-top: 0!important +} + +.pr-0, +.px-0 { + padding-right: 0!important +} + +.pb-0, +.py-0 { + padding-bottom: 0!important +} + +.pl-0, +.px-0 { + padding-left: 0!important +} + +.p-1 { + padding: .25rem!important +} + +.pt-1, +.py-1 { + padding-top: .25rem!important +} + +.pr-1, +.px-1 { + padding-right: .25rem!important +} + +.pb-1, +.py-1 { + padding-bottom: .25rem!important +} + +.pl-1, +.px-1 { + padding-left: .25rem!important +} + +.p-2 { + padding: .5rem!important +} + +.pt-2, +.py-2 { + padding-top: .5rem!important +} + +.pr-2, +.px-2 { + padding-right: .5rem!important +} + +.pb-2, +.py-2 { + padding-bottom: .5rem!important +} + +.pl-2, +.px-2 { + padding-left: .5rem!important +} + +.p-3 { + padding: 1rem!important +} + +.pt-3, +.py-3 { + padding-top: 1rem!important +} + +.pr-3, +.px-3 { + padding-right: 1rem!important +} + +.pb-3, +.py-3 { + padding-bottom: 1rem!important +} + +.pl-3, +.px-3 { + padding-left: 1rem!important +} + +.p-4 { + padding: 1.5rem!important +} + +.pt-4, +.py-4 { + padding-top: 1.5rem!important +} + +.pr-4, +.px-4 { + padding-right: 1.5rem!important +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem!important +} + +.pl-4, +.px-4 { + padding-left: 1.5rem!important +} + +.p-5 { + padding: 3rem!important +} + +.pt-5, +.py-5 { + padding-top: 3rem!important +} + +.pr-5, +.px-5 { + padding-right: 3rem!important +} + +.pb-5, +.py-5 { + padding-bottom: 3rem!important +} + +.pl-5, +.px-5 { + padding-left: 3rem!important +} + +.m-auto { + margin: auto!important +} + +.mt-auto, +.my-auto { + margin-top: auto!important +} + +.mr-auto, +.mx-auto { + margin-right: auto!important +} + +.mb-auto, +.my-auto { + margin-bottom: auto!important +} + +.ml-auto, +.mx-auto { + margin-left: auto!important +} + +@media (min-width:576px) { + .m-sm-0 { + margin: 0!important + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0!important + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0!important + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0!important + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0!important + } + .m-sm-1 { + margin: .25rem!important + } + .mt-sm-1, + .my-sm-1 { + margin-top: .25rem!important + } + .mr-sm-1, + .mx-sm-1 { + margin-right: .25rem!important + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: .25rem!important + } + .ml-sm-1, + .mx-sm-1 { + margin-left: .25rem!important + } + .m-sm-2 { + margin: .5rem!important + } + .mt-sm-2, + .my-sm-2 { + margin-top: .5rem!important + } + .mr-sm-2, + .mx-sm-2 { + margin-right: .5rem!important + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: .5rem!important + } + .ml-sm-2, + .mx-sm-2 { + margin-left: .5rem!important + } + .m-sm-3 { + margin: 1rem!important + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem!important + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem!important + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem!important + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem!important + } + .m-sm-4 { + margin: 1.5rem!important + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem!important + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem!important + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem!important + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem!important + } + .m-sm-5 { + margin: 3rem!important + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem!important + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem!important + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem!important + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem!important + } + .p-sm-0 { + padding: 0!important + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0!important + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0!important + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0!important + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0!important + } + .p-sm-1 { + padding: .25rem!important + } + .pt-sm-1, + .py-sm-1 { + padding-top: .25rem!important + } + .pr-sm-1, + .px-sm-1 { + padding-right: .25rem!important + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: .25rem!important + } + .pl-sm-1, + .px-sm-1 { + padding-left: .25rem!important + } + .p-sm-2 { + padding: .5rem!important + } + .pt-sm-2, + .py-sm-2 { + padding-top: .5rem!important + } + .pr-sm-2, + .px-sm-2 { + padding-right: .5rem!important + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: .5rem!important + } + .pl-sm-2, + .px-sm-2 { + padding-left: .5rem!important + } + .p-sm-3 { + padding: 1rem!important + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem!important + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem!important + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem!important + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem!important + } + .p-sm-4 { + padding: 1.5rem!important + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem!important + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem!important + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem!important + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem!important + } + .p-sm-5 { + padding: 3rem!important + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem!important + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem!important + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem!important + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem!important + } + .m-sm-auto { + margin: auto!important + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto!important + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto!important + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto!important + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto!important + } +} + +@media (min-width:768px) { + .m-md-0 { + margin: 0!important + } + .mt-md-0, + .my-md-0 { + margin-top: 0!important + } + .mr-md-0, + .mx-md-0 { + margin-right: 0!important + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0!important + } + .ml-md-0, + .mx-md-0 { + margin-left: 0!important + } + .m-md-1 { + margin: .25rem!important + } + .mt-md-1, + .my-md-1 { + margin-top: .25rem!important + } + .mr-md-1, + .mx-md-1 { + margin-right: .25rem!important + } + .mb-md-1, + .my-md-1 { + margin-bottom: .25rem!important + } + .ml-md-1, + .mx-md-1 { + margin-left: .25rem!important + } + .m-md-2 { + margin: .5rem!important + } + .mt-md-2, + .my-md-2 { + margin-top: .5rem!important + } + .mr-md-2, + .mx-md-2 { + margin-right: .5rem!important + } + .mb-md-2, + .my-md-2 { + margin-bottom: .5rem!important + } + .ml-md-2, + .mx-md-2 { + margin-left: .5rem!important + } + .m-md-3 { + margin: 1rem!important + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem!important + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem!important + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem!important + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem!important + } + .m-md-4 { + margin: 1.5rem!important + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem!important + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem!important + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem!important + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem!important + } + .m-md-5 { + margin: 3rem!important + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem!important + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem!important + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem!important + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem!important + } + .p-md-0 { + padding: 0!important + } + .pt-md-0, + .py-md-0 { + padding-top: 0!important + } + .pr-md-0, + .px-md-0 { + padding-right: 0!important + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0!important + } + .pl-md-0, + .px-md-0 { + padding-left: 0!important + } + .p-md-1 { + padding: .25rem!important + } + .pt-md-1, + .py-md-1 { + padding-top: .25rem!important + } + .pr-md-1, + .px-md-1 { + padding-right: .25rem!important + } + .pb-md-1, + .py-md-1 { + padding-bottom: .25rem!important + } + .pl-md-1, + .px-md-1 { + padding-left: .25rem!important + } + .p-md-2 { + padding: .5rem!important + } + .pt-md-2, + .py-md-2 { + padding-top: .5rem!important + } + .pr-md-2, + .px-md-2 { + padding-right: .5rem!important + } + .pb-md-2, + .py-md-2 { + padding-bottom: .5rem!important + } + .pl-md-2, + .px-md-2 { + padding-left: .5rem!important + } + .p-md-3 { + padding: 1rem!important + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem!important + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem!important + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem!important + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem!important + } + .p-md-4 { + padding: 1.5rem!important + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem!important + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem!important + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem!important + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem!important + } + .p-md-5 { + padding: 3rem!important + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem!important + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem!important + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem!important + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem!important + } + .m-md-auto { + margin: auto!important + } + .mt-md-auto, + .my-md-auto { + margin-top: auto!important + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto!important + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto!important + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto!important + } +} + +@media (min-width:992px) { + .m-lg-0 { + margin: 0!important + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0!important + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0!important + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0!important + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0!important + } + .m-lg-1 { + margin: .25rem!important + } + .mt-lg-1, + .my-lg-1 { + margin-top: .25rem!important + } + .mr-lg-1, + .mx-lg-1 { + margin-right: .25rem!important + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: .25rem!important + } + .ml-lg-1, + .mx-lg-1 { + margin-left: .25rem!important + } + .m-lg-2 { + margin: .5rem!important + } + .mt-lg-2, + .my-lg-2 { + margin-top: .5rem!important + } + .mr-lg-2, + .mx-lg-2 { + margin-right: .5rem!important + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: .5rem!important + } + .ml-lg-2, + .mx-lg-2 { + margin-left: .5rem!important + } + .m-lg-3 { + margin: 1rem!important + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem!important + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem!important + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem!important + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem!important + } + .m-lg-4 { + margin: 1.5rem!important + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem!important + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem!important + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem!important + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem!important + } + .m-lg-5 { + margin: 3rem!important + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem!important + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem!important + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem!important + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem!important + } + .p-lg-0 { + padding: 0!important + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0!important + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0!important + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0!important + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0!important + } + .p-lg-1 { + padding: .25rem!important + } + .pt-lg-1, + .py-lg-1 { + padding-top: .25rem!important + } + .pr-lg-1, + .px-lg-1 { + padding-right: .25rem!important + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: .25rem!important + } + .pl-lg-1, + .px-lg-1 { + padding-left: .25rem!important + } + .p-lg-2 { + padding: .5rem!important + } + .pt-lg-2, + .py-lg-2 { + padding-top: .5rem!important + } + .pr-lg-2, + .px-lg-2 { + padding-right: .5rem!important + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: .5rem!important + } + .pl-lg-2, + .px-lg-2 { + padding-left: .5rem!important + } + .p-lg-3 { + padding: 1rem!important + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem!important + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem!important + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem!important + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem!important + } + .p-lg-4 { + padding: 1.5rem!important + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem!important + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem!important + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem!important + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem!important + } + .p-lg-5 { + padding: 3rem!important + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem!important + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem!important + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem!important + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem!important + } + .m-lg-auto { + margin: auto!important + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto!important + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto!important + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto!important + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto!important + } +} + +@media (min-width:1200px) { + .m-xl-0 { + margin: 0!important + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0!important + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0!important + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0!important + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0!important + } + .m-xl-1 { + margin: .25rem!important + } + .mt-xl-1, + .my-xl-1 { + margin-top: .25rem!important + } + .mr-xl-1, + .mx-xl-1 { + margin-right: .25rem!important + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: .25rem!important + } + .ml-xl-1, + .mx-xl-1 { + margin-left: .25rem!important + } + .m-xl-2 { + margin: .5rem!important + } + .mt-xl-2, + .my-xl-2 { + margin-top: .5rem!important + } + .mr-xl-2, + .mx-xl-2 { + margin-right: .5rem!important + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: .5rem!important + } + .ml-xl-2, + .mx-xl-2 { + margin-left: .5rem!important + } + .m-xl-3 { + margin: 1rem!important + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem!important + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem!important + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem!important + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem!important + } + .m-xl-4 { + margin: 1.5rem!important + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem!important + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem!important + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem!important + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem!important + } + .m-xl-5 { + margin: 3rem!important + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem!important + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem!important + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem!important + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem!important + } + .p-xl-0 { + padding: 0!important + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0!important + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0!important + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0!important + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0!important + } + .p-xl-1 { + padding: .25rem!important + } + .pt-xl-1, + .py-xl-1 { + padding-top: .25rem!important + } + .pr-xl-1, + .px-xl-1 { + padding-right: .25rem!important + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: .25rem!important + } + .pl-xl-1, + .px-xl-1 { + padding-left: .25rem!important + } + .p-xl-2 { + padding: .5rem!important + } + .pt-xl-2, + .py-xl-2 { + padding-top: .5rem!important + } + .pr-xl-2, + .px-xl-2 { + padding-right: .5rem!important + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: .5rem!important + } + .pl-xl-2, + .px-xl-2 { + padding-left: .5rem!important + } + .p-xl-3 { + padding: 1rem!important + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem!important + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem!important + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem!important + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem!important + } + .p-xl-4 { + padding: 1.5rem!important + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem!important + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem!important + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem!important + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem!important + } + .p-xl-5 { + padding: 3rem!important + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem!important + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem!important + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem!important + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem!important + } + .m-xl-auto { + margin: auto!important + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto!important + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto!important + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto!important + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto!important + } +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace +} + +.text-justify { + text-align: justify!important +} + +.text-nowrap { + white-space: nowrap!important +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap +} + +.text-left { + text-align: left!important +} + +.text-right { + text-align: right!important +} + +.text-center { + text-align: center!important +} + +@media (min-width:576px) { + .text-sm-left { + text-align: left!important + } + .text-sm-right { + text-align: right!important + } + .text-sm-center { + text-align: center!important + } +} + +@media (min-width:768px) { + .text-md-left { + text-align: left!important + } + .text-md-right { + text-align: right!important + } + .text-md-center { + text-align: center!important + } +} + +@media (min-width:992px) { + .text-lg-left { + text-align: left!important + } + .text-lg-right { + text-align: right!important + } + .text-lg-center { + text-align: center!important + } +} + +@media (min-width:1200px) { + .text-xl-left { + text-align: left!important + } + .text-xl-right { + text-align: right!important + } + .text-xl-center { + text-align: center!important + } +} + +.text-lowercase { + text-transform: lowercase!important +} + +.text-uppercase { + text-transform: uppercase!important +} + +.text-capitalize { + text-transform: capitalize!important +} + +.font-weight-light { + font-weight: 300!important +} + +.font-weight-normal { + font-weight: 400!important +} + +.font-weight-bold { + font-weight: 700!important +} + +.font-italic { + font-style: italic!important +} + +.text-white { + color: #fff!important +} + +.text-primary { + color: #007bff!important +} + +a.text-primary:focus, +a.text-primary:hover { + color: #0062cc!important +} + +.text-secondary { + color: #6c757d!important +} + +a.text-secondary:focus, +a.text-secondary:hover { + color: #545b62!important +} + +.text-success { + color: #28a745!important +} + +a.text-success:focus, +a.text-success:hover { + color: #1e7e34!important +} + +.text-info { + color: #17a2b8!important +} + +a.text-info:focus, +a.text-info:hover { + color: #117a8b!important +} + +.text-warning { + color: #ffc107!important +} + +a.text-warning:focus, +a.text-warning:hover { + color: #d39e00!important +} + +.text-danger { + color: #dc3545!important +} + +a.text-danger:focus, +a.text-danger:hover { + color: #bd2130!important +} + +.text-light { + color: #f8f9fa!important +} + +a.text-light:focus, +a.text-light:hover { + color: #dae0e5!important +} + +.text-dark { + color: #343a40!important +} + +a.text-dark:focus, +a.text-dark:hover { + color: #1d2124!important +} + +.text-body { + color: #212529!important +} + +.text-muted { + color: #6c757d!important +} + +.text-black-50 { + color: rgba(0, 0, 0, .5)!important +} + +.text-white-50 { + color: rgba(255, 255, 255, .5)!important +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 +} + +.visible { + visibility: visible!important +} + +.invisible { + visibility: hidden!important +} + +@media print { + *, + ::after, + ::before { + text-shadow: none!important; + box-shadow: none!important + } + a:not(.btn) { + text-decoration: underline + } + abbr[title]::after { + content: " (" attr(title) ")" + } + pre { + white-space: pre-wrap!important + } + blockquote, + pre { + border: 1px solid #adb5bd; + page-break-inside: avoid + } + thead { + display: table-header-group + } + img, + tr { + page-break-inside: avoid + } + h2, + h3, + p { + orphans: 3; + widows: 3 + } + h2, + h3 { + page-break-after: avoid + } + @page { + size: a3 + } + body { + min-width: 992px!important + } + .container { + min-width: 992px!important + } + .navbar { + display: none + } + .badge { + border: 1px solid #000 + } + .table { + border-collapse: collapse!important + } + .table td, + .table th { + background-color: #fff!important + } + .table-bordered td, + .table-bordered th { + border: 1px solid #dee2e6!important + } + .table-dark { + color: inherit + } + .table-dark tbody+tbody, + .table-dark td, + .table-dark th, + .table-dark thead th { + border-color: #dee2e6 + } + .table .thead-dark th { + color: inherit; + border-color: #dee2e6 + } +} + + +/*# sourceMappingURL=bootstrap.min.css.map */ diff --git a/assets/css/flaticon.css b/assets/css/flaticon.css new file mode 100755 index 0000000..e2a8a23 --- /dev/null +++ b/assets/css/flaticon.css @@ -0,0 +1,28 @@ +@font-face { + font-family: "Flaticon"; + src: url("../fonts/Flaticon.eot"); + src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), + url("../fonts/Flaticon.woff2") format("woff2"), + url("../fonts/Flaticon.woff") format("woff"), + url("../fonts/Flaticon.ttf") format("truetype"), + url("../fonts/Flaticon.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("../fonts/Flaticon.svg#Flaticon") format("svg"); + } +} + +[class^="flaticon-"]:before, [class*=" flaticon-"]:before, +[class^="flaticon-"]:after, [class*=" flaticon-"]:after { + font-family: Flaticon; +font-style: normal; +} + +.flaticon-pen:before { content: "\f100"; } +.flaticon-speaker:before { content: "\f101"; } +.flaticon-portfolio:before { content: "\f102"; } diff --git a/assets/css/font-awesome.min.css b/assets/css/font-awesome.min.css new file mode 100755 index 0000000..9b6a792 --- /dev/null +++ b/assets/css/font-awesome.min.css @@ -0,0 +1,2036 @@ +/*! + * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) +*/ + +*/@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.1.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal +} + +.fa { + display: inline-block; + font-family: FontAwesome; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.fa-lg { + font-size: 1.33333333em; + line-height: .75em; + vertical-align: -15% +} + +.fa-2x { + font-size: 2em +} + +.fa-3x { + font-size: 3em +} + +.fa-4x { + font-size: 4em +} + +.fa-5x { + font-size: 5em +} + +.fa-fw { + width: 1.28571429em; + text-align: center +} + +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none +} + +.fa-ul>li { + position: relative +} + +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: .14285714em; + text-align: center +} + +.fa-li.fa-lg { + left: -1.85714286em +} + +.fa-border { + padding: .2em .25em .15em; + border: solid .08em #eee; + border-radius: .1em +} + +.pull-right { + float: right +} + +.pull-left { + float: left +} + +.fa.pull-left { + margin-right: .3em +} + +.fa.pull-right { + margin-left: .3em +} + +.fa-spin { + -webkit-animation: spin 2s infinite linear; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + animation: spin 2s infinite linear +} + +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg) + } + + 100% { + -moz-transform: rotate(359deg) + } +} + +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg) + } + + 100% { + -webkit-transform: rotate(359deg) + } +} + +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg) + } + + 100% { + -o-transform: rotate(359deg) + } +} + +@keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg) + } +} + +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg) +} + +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg) +} + +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg) +} + +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1) +} + +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1) +} + +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle +} + +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center +} + +.fa-stack-1x { + line-height: inherit +} + +.fa-stack-2x { + font-size: 2em +} + +.fa-inverse { + color: #fff +} + +.fa-glass:before { + content: "\f000" +} + +.fa-music:before { + content: "\f001" +} + +.fa-search:before { + content: "\f002" +} + +.fa-envelope-o:before { + content: "\f003" +} + +.fa-heart:before { + content: "\f004" +} + +.fa-star:before { + content: "\f005" +} + +.fa-star-o:before { + content: "\f006" +} + +.fa-user:before { + content: "\f007" +} + +.fa-film:before { + content: "\f008" +} + +.fa-th-large:before { + content: "\f009" +} + +.fa-th:before { + content: "\f00a" +} + +.fa-th-list:before { + content: "\f00b" +} + +.fa-check:before { + content: "\f00c" +} + +.fa-times:before { + content: "\f00d" +} + +.fa-search-plus:before { + content: "\f00e" +} + +.fa-search-minus:before { + content: "\f010" +} + +.fa-power-off:before { + content: "\f011" +} + +.fa-signal:before { + content: "\f012" +} + +.fa-gear:before, +.fa-cog:before { + content: "\f013" +} + +.fa-trash-o:before { + content: "\f014" +} + +.fa-home:before { + content: "\f015" +} + +.fa-file-o:before { + content: "\f016" +} + +.fa-clock-o:before { + content: "\f017" +} + +.fa-road:before { + content: "\f018" +} + +.fa-download:before { + content: "\f019" +} + +.fa-arrow-circle-o-down:before { + content: "\f01a" +} + +.fa-arrow-circle-o-up:before { + content: "\f01b" +} + +.fa-inbox:before { + content: "\f01c" +} + +.fa-play-circle-o:before { + content: "\f01d" +} + +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e" +} + +.fa-refresh:before { + content: "\f021" +} + +.fa-list-alt:before { + content: "\f022" +} + +.fa-lock:before { + content: "\f023" +} + +.fa-flag:before { + content: "\f024" +} + +.fa-headphones:before { + content: "\f025" +} + +.fa-volume-off:before { + content: "\f026" +} + +.fa-volume-down:before { + content: "\f027" +} + +.fa-volume-up:before { + content: "\f028" +} + +.fa-qrcode:before { + content: "\f029" +} + +.fa-barcode:before { + content: "\f02a" +} + +.fa-tag:before { + content: "\f02b" +} + +.fa-tags:before { + content: "\f02c" +} + +.fa-book:before { + content: "\f02d" +} + +.fa-bookmark:before { + content: "\f02e" +} + +.fa-print:before { + content: "\f02f" +} + +.fa-camera:before { + content: "\f030" +} + +.fa-font:before { + content: "\f031" +} + +.fa-bold:before { + content: "\f032" +} + +.fa-italic:before { + content: "\f033" +} + +.fa-text-height:before { + content: "\f034" +} + +.fa-text-width:before { + content: "\f035" +} + +.fa-align-left:before { + content: "\f036" +} + +.fa-align-center:before { + content: "\f037" +} + +.fa-align-right:before { + content: "\f038" +} + +.fa-align-justify:before { + content: "\f039" +} + +.fa-list:before { + content: "\f03a" +} + +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b" +} + +.fa-indent:before { + content: "\f03c" +} + +.fa-video-camera:before { + content: "\f03d" +} + +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e" +} + +.fa-pencil:before { + content: "\f040" +} + +.fa-map-marker:before { + content: "\f041" +} + +.fa-adjust:before { + content: "\f042" +} + +.fa-tint:before { + content: "\f043" +} + +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044" +} + +.fa-share-square-o:before { + content: "\f045" +} + +.fa-check-square-o:before { + content: "\f046" +} + +.fa-arrows:before { + content: "\f047" +} + +.fa-step-backward:before { + content: "\f048" +} + +.fa-fast-backward:before { + content: "\f049" +} + +.fa-backward:before { + content: "\f04a" +} + +.fa-play:before { + content: "\f04b" +} + +.fa-pause:before { + content: "\f04c" +} + +.fa-stop:before { + content: "\f04d" +} + +.fa-forward:before { + content: "\f04e" +} + +.fa-fast-forward:before { + content: "\f050" +} + +.fa-step-forward:before { + content: "\f051" +} + +.fa-eject:before { + content: "\f052" +} + +.fa-chevron-left:before { + content: "\f053" +} + +.fa-chevron-right:before { + content: "\f054" +} + +.fa-plus-circle:before { + content: "\f055" +} + +.fa-minus-circle:before { + content: "\f056" +} + +.fa-times-circle:before { + content: "\f057" +} + +.fa-check-circle:before { + content: "\f058" +} + +.fa-question-circle:before { + content: "\f059" +} + +.fa-info-circle:before { + content: "\f05a" +} + +.fa-crosshairs:before { + content: "\f05b" +} + +.fa-times-circle-o:before { + content: "\f05c" +} + +.fa-check-circle-o:before { + content: "\f05d" +} + +.fa-ban:before { + content: "\f05e" +} + +.fa-arrow-left:before { + content: "\f060" +} + +.fa-arrow-right:before { + content: "\f061" +} + +.fa-arrow-up:before { + content: "\f062" +} + +.fa-arrow-down:before { + content: "\f063" +} + +.fa-mail-forward:before, +.fa-share:before { + content: "\f064" +} + +.fa-expand:before { + content: "\f065" +} + +.fa-compress:before { + content: "\f066" +} + +.fa-plus:before { + content: "\f067" +} + +.fa-minus:before { + content: "\f068" +} + +.fa-asterisk:before { + content: "\f069" +} + +.fa-exclamation-circle:before { + content: "\f06a" +} + +.fa-gift:before { + content: "\f06b" +} + +.fa-leaf:before { + content: "\f06c" +} + +.fa-fire:before { + content: "\f06d" +} + +.fa-eye:before { + content: "\f06e" +} + +.fa-eye-slash:before { + content: "\f070" +} + +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071" +} + +.fa-plane:before { + content: "\f072" +} + +.fa-calendar:before { + content: "\f073" +} + +.fa-random:before { + content: "\f074" +} + +.fa-comment:before { + content: "\f075" +} + +.fa-magnet:before { + content: "\f076" +} + +.fa-chevron-up:before { + content: "\f077" +} + +.fa-chevron-down:before { + content: "\f078" +} + +.fa-retweet:before { + content: "\f079" +} + +.fa-shopping-cart:before { + content: "\f07a" +} + +.fa-folder:before { + content: "\f07b" +} + +.fa-folder-open:before { + content: "\f07c" +} + +.fa-arrows-v:before { + content: "\f07d" +} + +.fa-arrows-h:before { + content: "\f07e" +} + +.fa-bar-chart-o:before { + content: "\f080" +} + +.fa-twitter-square:before { + content: "\f081" +} + +.fa-facebook-square:before { + content: "\f082" +} + +.fa-camera-retro:before { + content: "\f083" +} + +.fa-key:before { + content: "\f084" +} + +.fa-gears:before, +.fa-cogs:before { + content: "\f085" +} + +.fa-comments:before { + content: "\f086" +} + +.fa-thumbs-o-up:before { + content: "\f087" +} + +.fa-thumbs-o-down:before { + content: "\f088" +} + +.fa-star-half:before { + content: "\f089" +} + +.fa-heart-o:before { + content: "\f08a" +} + +.fa-sign-out:before { + content: "\f08b" +} + +.fa-linkedin-square:before { + content: "\f08c" +} + +.fa-thumb-tack:before { + content: "\f08d" +} + +.fa-external-link:before { + content: "\f08e" +} + +.fa-sign-in:before { + content: "\f090" +} + +.fa-trophy:before { + content: "\f091" +} + +.fa-github-square:before { + content: "\f092" +} + +.fa-upload:before { + content: "\f093" +} + +.fa-lemon-o:before { + content: "\f094" +} + +.fa-phone:before { + content: "\f095" +} + +.fa-square-o:before { + content: "\f096" +} + +.fa-bookmark-o:before { + content: "\f097" +} + +.fa-phone-square:before { + content: "\f098" +} + +.fa-twitter:before { + content: "\f099" +} + +.fa-facebook:before { + content: "\f09a" +} + +.fa-github:before { + content: "\f09b" +} + +.fa-unlock:before { + content: "\f09c" +} + +.fa-credit-card:before { + content: "\f09d" +} + +.fa-rss:before { + content: "\f09e" +} + +.fa-hdd-o:before { + content: "\f0a0" +} + +.fa-bullhorn:before { + content: "\f0a1" +} + +.fa-bell:before { + content: "\f0f3" +} + +.fa-certificate:before { + content: "\f0a3" +} + +.fa-hand-o-right:before { + content: "\f0a4" +} + +.fa-hand-o-left:before { + content: "\f0a5" +} + +.fa-hand-o-up:before { + content: "\f0a6" +} + +.fa-hand-o-down:before { + content: "\f0a7" +} + +.fa-arrow-circle-left:before { + content: "\f0a8" +} + +.fa-arrow-circle-right:before { + content: "\f0a9" +} + +.fa-arrow-circle-up:before { + content: "\f0aa" +} + +.fa-arrow-circle-down:before { + content: "\f0ab" +} + +.fa-globe:before { + content: "\f0ac" +} + +.fa-wrench:before { + content: "\f0ad" +} + +.fa-tasks:before { + content: "\f0ae" +} + +.fa-filter:before { + content: "\f0b0" +} + +.fa-briefcase:before { + content: "\f0b1" +} + +.fa-arrows-alt:before { + content: "\f0b2" +} + +.fa-group:before, +.fa-users:before { + content: "\f0c0" +} + +.fa-chain:before, +.fa-link:before { + content: "\f0c1" +} + +.fa-cloud:before { + content: "\f0c2" +} + +.fa-flask:before { + content: "\f0c3" +} + +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4" +} + +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5" +} + +.fa-paperclip:before { + content: "\f0c6" +} + +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7" +} + +.fa-square:before { + content: "\f0c8" +} + +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9" +} + +.fa-list-ul:before { + content: "\f0ca" +} + +.fa-list-ol:before { + content: "\f0cb" +} + +.fa-strikethrough:before { + content: "\f0cc" +} + +.fa-underline:before { + content: "\f0cd" +} + +.fa-table:before { + content: "\f0ce" +} + +.fa-magic:before { + content: "\f0d0" +} + +.fa-truck:before { + content: "\f0d1" +} + +.fa-pinterest:before { + content: "\f0d2" +} + +.fa-pinterest-square:before { + content: "\f0d3" +} + +.fa-google-plus-square:before { + content: "\f0d4" +} + +.fa-google-plus:before { + content: "\f0d5" +} + +.fa-money:before { + content: "\f0d6" +} + +.fa-caret-down:before { + content: "\f0d7" +} + +.fa-caret-up:before { + content: "\f0d8" +} + +.fa-caret-left:before { + content: "\f0d9" +} + +.fa-caret-right:before { + content: "\f0da" +} + +.fa-columns:before { + content: "\f0db" +} + +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc" +} + +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd" +} + +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de" +} + +.fa-envelope:before { + content: "\f0e0" +} + +.fa-linkedin:before { + content: "\f0e1" +} + +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2" +} + +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3" +} + +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4" +} + +.fa-comment-o:before { + content: "\f0e5" +} + +.fa-comments-o:before { + content: "\f0e6" +} + +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7" +} + +.fa-sitemap:before { + content: "\f0e8" +} + +.fa-umbrella:before { + content: "\f0e9" +} + +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea" +} + +.fa-lightbulb-o:before { + content: "\f0eb" +} + +.fa-exchange:before { + content: "\f0ec" +} + +.fa-cloud-download:before { + content: "\f0ed" +} + +.fa-cloud-upload:before { + content: "\f0ee" +} + +.fa-user-md:before { + content: "\f0f0" +} + +.fa-stethoscope:before { + content: "\f0f1" +} + +.fa-suitcase:before { + content: "\f0f2" +} + +.fa-bell-o:before { + content: "\f0a2" +} + +.fa-coffee:before { + content: "\f0f4" +} + +.fa-cutlery:before { + content: "\f0f5" +} + +.fa-file-text-o:before { + content: "\f0f6" +} + +.fa-building-o:before { + content: "\f0f7" +} + +.fa-hospital-o:before { + content: "\f0f8" +} + +.fa-ambulance:before { + content: "\f0f9" +} + +.fa-medkit:before { + content: "\f0fa" +} + +.fa-fighter-jet:before { + content: "\f0fb" +} + +.fa-beer:before { + content: "\f0fc" +} + +.fa-h-square:before { + content: "\f0fd" +} + +.fa-plus-square:before { + content: "\f0fe" +} + +.fa-angle-double-left:before { + content: "\f100" +} + +.fa-angle-double-right:before { + content: "\f101" +} + +.fa-angle-double-up:before { + content: "\f102" +} + +.fa-angle-double-down:before { + content: "\f103" +} + +.fa-angle-left:before { + content: "\f104" +} + +.fa-angle-right:before { + content: "\f105" +} + +.fa-angle-up:before { + content: "\f106" +} + +.fa-angle-down:before { + content: "\f107" +} + +.fa-desktop:before { + content: "\f108" +} + +.fa-laptop:before { + content: "\f109" +} + +.fa-tablet:before { + content: "\f10a" +} + +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b" +} + +.fa-circle-o:before { + content: "\f10c" +} + +.fa-quote-left:before { + content: "\f10d" +} + +.fa-quote-right:before { + content: "\f10e" +} + +.fa-spinner:before { + content: "\f110" +} + +.fa-circle:before { + content: "\f111" +} + +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112" +} + +.fa-github-alt:before { + content: "\f113" +} + +.fa-folder-o:before { + content: "\f114" +} + +.fa-folder-open-o:before { + content: "\f115" +} + +.fa-smile-o:before { + content: "\f118" +} + +.fa-frown-o:before { + content: "\f119" +} + +.fa-meh-o:before { + content: "\f11a" +} + +.fa-gamepad:before { + content: "\f11b" +} + +.fa-keyboard-o:before { + content: "\f11c" +} + +.fa-flag-o:before { + content: "\f11d" +} + +.fa-flag-checkered:before { + content: "\f11e" +} + +.fa-terminal:before { + content: "\f120" +} + +.fa-code:before { + content: "\f121" +} + +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122" +} + +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123" +} + +.fa-location-arrow:before { + content: "\f124" +} + +.fa-crop:before { + content: "\f125" +} + +.fa-code-fork:before { + content: "\f126" +} + +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127" +} + +.fa-question:before { + content: "\f128" +} + +.fa-info:before { + content: "\f129" +} + +.fa-exclamation:before { + content: "\f12a" +} + +.fa-superscript:before { + content: "\f12b" +} + +.fa-subscript:before { + content: "\f12c" +} + +.fa-eraser:before { + content: "\f12d" +} + +.fa-puzzle-piece:before { + content: "\f12e" +} + +.fa-microphone:before { + content: "\f130" +} + +.fa-microphone-slash:before { + content: "\f131" +} + +.fa-shield:before { + content: "\f132" +} + +.fa-calendar-o:before { + content: "\f133" +} + +.fa-fire-extinguisher:before { + content: "\f134" +} + +.fa-rocket:before { + content: "\f135" +} + +.fa-maxcdn:before { + content: "\f136" +} + +.fa-chevron-circle-left:before { + content: "\f137" +} + +.fa-chevron-circle-right:before { + content: "\f138" +} + +.fa-chevron-circle-up:before { + content: "\f139" +} + +.fa-chevron-circle-down:before { + content: "\f13a" +} + +.fa-html5:before { + content: "\f13b" +} + +.fa-css3:before { + content: "\f13c" +} + +.fa-anchor:before { + content: "\f13d" +} + +.fa-unlock-alt:before { + content: "\f13e" +} + +.fa-bullseye:before { + content: "\f140" +} + +.fa-ellipsis-h:before { + content: "\f141" +} + +.fa-ellipsis-v:before { + content: "\f142" +} + +.fa-rss-square:before { + content: "\f143" +} + +.fa-play-circle:before { + content: "\f144" +} + +.fa-ticket:before { + content: "\f145" +} + +.fa-minus-square:before { + content: "\f146" +} + +.fa-minus-square-o:before { + content: "\f147" +} + +.fa-level-up:before { + content: "\f148" +} + +.fa-level-down:before { + content: "\f149" +} + +.fa-check-square:before { + content: "\f14a" +} + +.fa-pencil-square:before { + content: "\f14b" +} + +.fa-external-link-square:before { + content: "\f14c" +} + +.fa-share-square:before { + content: "\f14d" +} + +.fa-compass:before { + content: "\f14e" +} + +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150" +} + +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151" +} + +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152" +} + +.fa-euro:before, +.fa-eur:before { + content: "\f153" +} + +.fa-gbp:before { + content: "\f154" +} + +.fa-dollar:before, +.fa-usd:before { + content: "\f155" +} + +.fa-rupee:before, +.fa-inr:before { + content: "\f156" +} + +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157" +} + +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158" +} + +.fa-won:before, +.fa-krw:before { + content: "\f159" +} + +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a" +} + +.fa-file:before { + content: "\f15b" +} + +.fa-file-text:before { + content: "\f15c" +} + +.fa-sort-alpha-asc:before { + content: "\f15d" +} + +.fa-sort-alpha-desc:before { + content: "\f15e" +} + +.fa-sort-amount-asc:before { + content: "\f160" +} + +.fa-sort-amount-desc:before { + content: "\f161" +} + +.fa-sort-numeric-asc:before { + content: "\f162" +} + +.fa-sort-numeric-desc:before { + content: "\f163" +} + +.fa-thumbs-up:before { + content: "\f164" +} + +.fa-thumbs-down:before { + content: "\f165" +} + +.fa-youtube-square:before { + content: "\f166" +} + +.fa-youtube:before { + content: "\f167" +} + +.fa-xing:before { + content: "\f168" +} + +.fa-xing-square:before { + content: "\f169" +} + +.fa-youtube-play:before { + content: "\f16a" +} + +.fa-dropbox:before { + content: "\f16b" +} + +.fa-stack-overflow:before { + content: "\f16c" +} + +.fa-instagram:before { + content: "\f16d" +} + +.fa-flickr:before { + content: "\f16e" +} + +.fa-adn:before { + content: "\f170" +} + +.fa-bitbucket:before { + content: "\f171" +} + +.fa-bitbucket-square:before { + content: "\f172" +} + +.fa-tumblr:before { + content: "\f173" +} + +.fa-tumblr-square:before { + content: "\f174" +} + +.fa-long-arrow-down:before { + content: "\f175" +} + +.fa-long-arrow-up:before { + content: "\f176" +} + +.fa-long-arrow-left:before { + content: "\f177" +} + +.fa-long-arrow-right:before { + content: "\f178" +} + +.fa-apple:before { + content: "\f179" +} + +.fa-windows:before { + content: "\f17a" +} + +.fa-android:before { + content: "\f17b" +} + +.fa-linux:before { + content: "\f17c" +} + +.fa-dribbble:before { + content: "\f17d" +} + +.fa-skype:before { + content: "\f17e" +} + +.fa-foursquare:before { + content: "\f180" +} + +.fa-trello:before { + content: "\f181" +} + +.fa-female:before { + content: "\f182" +} + +.fa-male:before { + content: "\f183" +} + +.fa-gittip:before { + content: "\f184" +} + +.fa-sun-o:before { + content: "\f185" +} + +.fa-moon-o:before { + content: "\f186" +} + +.fa-archive:before { + content: "\f187" +} + +.fa-bug:before { + content: "\f188" +} + +.fa-vk:before { + content: "\f189" +} + +.fa-weibo:before { + content: "\f18a" +} + +.fa-renren:before { + content: "\f18b" +} + +.fa-pagelines:before { + content: "\f18c" +} + +.fa-stack-exchange:before { + content: "\f18d" +} + +.fa-arrow-circle-o-right:before { + content: "\f18e" +} + +.fa-arrow-circle-o-left:before { + content: "\f190" +} + +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191" +} + +.fa-dot-circle-o:before { + content: "\f192" +} + +.fa-wheelchair:before { + content: "\f193" +} + +.fa-vimeo-square:before { + content: "\f194" +} + +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195" +} + +.fa-plus-square-o:before { + content: "\f196" +} + +.fa-space-shuttle:before { + content: "\f197" +} + +.fa-slack:before { + content: "\f198" +} + +.fa-envelope-square:before { + content: "\f199" +} + +.fa-wordpress:before { + content: "\f19a" +} + +.fa-openid:before { + content: "\f19b" +} + +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c" +} + +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d" +} + +.fa-yahoo:before { + content: "\f19e" +} + +.fa-google:before { + content: "\f1a0" +} + +.fa-reddit:before { + content: "\f1a1" +} + +.fa-reddit-square:before { + content: "\f1a2" +} + +.fa-stumbleupon-circle:before { + content: "\f1a3" +} + +.fa-stumbleupon:before { + content: "\f1a4" +} + +.fa-delicious:before { + content: "\f1a5" +} + +.fa-digg:before { + content: "\f1a6" +} + +.fa-pied-piper-square:before, +.fa-pied-piper:before { + content: "\f1a7" +} + +.fa-pied-piper-alt:before { + content: "\f1a8" +} + +.fa-drupal:before { + content: "\f1a9" +} + +.fa-joomla:before { + content: "\f1aa" +} + +.fa-language:before { + content: "\f1ab" +} + +.fa-fax:before { + content: "\f1ac" +} + +.fa-building:before { + content: "\f1ad" +} + +.fa-child:before { + content: "\f1ae" +} + +.fa-paw:before { + content: "\f1b0" +} + +.fa-spoon:before { + content: "\f1b1" +} + +.fa-cube:before { + content: "\f1b2" +} + +.fa-cubes:before { + content: "\f1b3" +} + +.fa-behance:before { + content: "\f1b4" +} + +.fa-behance-square:before { + content: "\f1b5" +} + +.fa-steam:before { + content: "\f1b6" +} + +.fa-steam-square:before { + content: "\f1b7" +} + +.fa-recycle:before { + content: "\f1b8" +} + +.fa-automobile:before, +.fa-car:before { + content: "\f1b9" +} + +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba" +} + +.fa-tree:before { + content: "\f1bb" +} + +.fa-spotify:before { + content: "\f1bc" +} + +.fa-deviantart:before { + content: "\f1bd" +} + +.fa-soundcloud:before { + content: "\f1be" +} + +.fa-database:before { + content: "\f1c0" +} + +.fa-file-pdf-o:before { + content: "\f1c1" +} + +.fa-file-word-o:before { + content: "\f1c2" +} + +.fa-file-excel-o:before { + content: "\f1c3" +} + +.fa-file-powerpoint-o:before { + content: "\f1c4" +} + +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5" +} + +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6" +} + +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7" +} + +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8" +} + +.fa-file-code-o:before { + content: "\f1c9" +} + +.fa-vine:before { + content: "\f1ca" +} + +.fa-codepen:before { + content: "\f1cb" +} + +.fa-jsfiddle:before { + content: "\f1cc" +} + +.fa-life-bouy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd" +} + +.fa-circle-o-notch:before { + content: "\f1ce" +} + +.fa-ra:before, +.fa-rebel:before { + content: "\f1d0" +} + +.fa-ge:before, +.fa-empire:before { + content: "\f1d1" +} + +.fa-git-square:before { + content: "\f1d2" +} + +.fa-git:before { + content: "\f1d3" +} + +.fa-hacker-news:before { + content: "\f1d4" +} + +.fa-tencent-weibo:before { + content: "\f1d5" +} + +.fa-qq:before { + content: "\f1d6" +} + +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7" +} + +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8" +} + +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9" +} + +.fa-history:before { + content: "\f1da" +} + +.fa-circle-thin:before { + content: "\f1db" +} + +.fa-header:before { + content: "\f1dc" +} + +.fa-paragraph:before { + content: "\f1dd" +} + +.fa-sliders:before { + content: "\f1de" +} + +.fa-share-alt:before { + content: "\f1e0" +} + +.fa-share-alt-square:before { + content: "\f1e1" +} + +.fa-bomb:before { + content: "\f1e2" +} diff --git a/assets/css/fontawesome-all.min.css b/assets/css/fontawesome-all.min.css new file mode 100755 index 0000000..564522e --- /dev/null +++ b/assets/css/fontawesome-all.min.css @@ -0,0 +1,3545 @@ +.fa, +.fab, +.fal, +.far, +.fas { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1 +} + +.fa-lg { + font-size: 15em; + line-height: .75em; + vertical-align: -6em +} + +.fa-xs { + font-size: 15em +} + +.fa-sm { + font-size: 15em +} + +.fa-1x { + font-size: 15em +} + +.fa-2x { + font-size: 15em +} + +.fa-3x { + font-size: 15em +} + +.fa-4x { + font-size: 15em +} + +.fa-5x { + font-size: 15em +} + +.fa-6x { + font-size: 15em +} + +.fa-7x { + font-size: 15em +} + +.fa-8x { + font-size: 15em +} + +.fa-9x { + font-size: 15em +} + +.fa-10x { + font-size: 15em +} + +.fa-fw { + text-align: center; + width: 1.25em +} + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0 +} + +.fa-ul>li { + position: relative +} + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 20em; + line-height: inherit +} + +.fa-border { + border: .08em solid #eee; + border-radius: .1em; + padding: .2em .25em .15em +} + +.fa-pull-left { + float: left +} + +.fa-pull-right { + float: right +} + +.fa.fa-pull-left, +.fab.fa-pull-left, +.fal.fa-pull-left, +.far.fa-pull-left, +.fas.fa-pull-left { + margin-right: .3em +} + +.fa.fa-pull-right, +.fab.fa-pull-right, +.fal.fa-pull-right, +.far.fa-pull-right, +.fas.fa-pull-right { + margin-left: .3em +} + +.fa-spin { + -webkit-animation: a 2s infinite linear; + animation: a 2s infinite linear +} + +.fa-pulse { + -webkit-animation: a 1s infinite steps(8); + animation: a 1s infinite steps(8) +} + +@-webkit-keyframes a { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + to { + -webkit-transform: rotate(1turn); + transform: rotate(1turn) + } +} + +@keyframes a { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + to { + -webkit-transform: rotate(1turn); + transform: rotate(1turn) + } +} + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg) +} + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg) +} + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg) +} + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scaleX(-1); + transform: scaleX(-1) +} + +.fa-flip-vertical { + -webkit-transform: scaleY(-1); + transform: scaleY(-1) +} + +.fa-flip-horizontal.fa-flip-vertical, +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)" +} + +.fa-flip-horizontal.fa-flip-vertical { + -webkit-transform: scale(-1); + transform: scale(-1) +} + +:root .fa-flip-horizontal, +:root .fa-flip-vertical, +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270 { + -webkit-filter: none; + filter: none +} + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 20em +} + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100% +} + +.fa-stack-1x { + line-height: inherit +} + +.fa-stack-2x { + font-size: 15em +} + +.fa-inverse { + color: #fff +} + +.fa-500px:before { + content: "\f26e" +} + +.fa-accessible-icon:before { + content: "\f368" +} + +.fa-accusoft:before { + content: "\f369" +} + +.fa-address-book:before { + content: "\f2b9" +} + +.fa-address-card:before { + content: "\f2bb" +} + +.fa-adjust:before { + content: "\f042" +} + +.fa-adn:before { + content: "\f170" +} + +.fa-adversal:before { + content: "\f36a" +} + +.fa-affiliatetheme:before { + content: "\f36b" +} + +.fa-algolia:before { + content: "\f36c" +} + +.fa-align-center:before { + content: "\f037" +} + +.fa-align-justify:before { + content: "\f039" +} + +.fa-align-left:before { + content: "\f036" +} + +.fa-align-right:before { + content: "\f038" +} + +.fa-amazon:before { + content: "\f270" +} + +.fa-amazon-pay:before { + content: "\f42c" +} + +.fa-ambulance:before { + content: "\f0f9" +} + +.fa-american-sign-language-interpreting:before { + content: "\f2a3" +} + +.fa-amilia:before { + content: "\f36d" +} + +.fa-anchor:before { + content: "\f13d" +} + +.fa-android:before { + content: "\f17b" +} + +.fa-angellist:before { + content: "\f209" +} + +.fa-angle-double-down:before { + content: "\f103" +} + +.fa-angle-double-left:before { + content: "\f100" +} + +.fa-angle-double-right:before { + content: "\f101" +} + +.fa-angle-double-up:before { + content: "\f102" +} + +.fa-angle-down:before { + content: "\f107" +} + +.fa-angle-left:before { + content: "\f104" +} + +.fa-angle-right:before { + content: "\f105" +} + +.fa-angle-up:before { + content: "\f106" +} + +.fa-angrycreative:before { + content: "\f36e" +} + +.fa-angular:before { + content: "\f420" +} + +.fa-app-store:before { + content: "\f36f" +} + +.fa-app-store-ios:before { + content: "\f370" +} + +.fa-apper:before { + content: "\f371" +} + +.fa-apple:before { + content: "\f179" +} + +.fa-apple-pay:before { + content: "\f415" +} + +.fa-archive:before { + content: "\f187" +} + +.fa-arrow-alt-circle-down:before { + content: "\f358" +} + +.fa-arrow-alt-circle-left:before { + content: "\f359" +} + +.fa-arrow-alt-circle-right:before { + content: "\f35a" +} + +.fa-arrow-alt-circle-up:before { + content: "\f35b" +} + +.fa-arrow-circle-down:before { + content: "\f0ab" +} + +.fa-arrow-circle-left:before { + content: "\f0a8" +} + +.fa-arrow-circle-right:before { + content: "\f0a9" +} + +.fa-arrow-circle-up:before { + content: "\f0aa" +} + +.fa-arrow-down:before { + content: "\f063" +} + +.fa-arrow-left:before { + content: "\f060" +} + +.fa-arrow-right:before { + content: "\f061" +} + +.fa-arrow-up:before { + content: "\f062" +} + +.fa-arrows-alt:before { + content: "\f0b2" +} + +.fa-arrows-alt-h:before { + content: "\f337" +} + +.fa-arrows-alt-v:before { + content: "\f338" +} + +.fa-assistive-listening-systems:before { + content: "\f2a2" +} + +.fa-asterisk:before { + content: "\f069" +} + +.fa-asymmetrik:before { + content: "\f372" +} + +.fa-at:before { + content: "\f1fa" +} + +.fa-audible:before { + content: "\f373" +} + +.fa-audio-description:before { + content: "\f29e" +} + +.fa-autoprefixer:before { + content: "\f41c" +} + +.fa-avianex:before { + content: "\f374" +} + +.fa-aviato:before { + content: "\f421" +} + +.fa-aws:before { + content: "\f375" +} + +.fa-backward:before { + content: "\f04a" +} + +.fa-balance-scale:before { + content: "\f24e" +} + +.fa-ban:before { + content: "\f05e" +} + +.fa-bandcamp:before { + content: "\f2d5" +} + +.fa-barcode:before { + content: "\f02a" +} + +.fa-bars:before { + content: "\f0c9" +} + +.fa-baseball-ball:before { + content: "\f433" +} + +.fa-basketball-ball:before { + content: "\f434" +} + +.fa-bath:before { + content: "\f2cd" +} + +.fa-battery-empty:before { + content: "\f244" +} + +.fa-battery-full:before { + content: "\f240" +} + +.fa-battery-half:before { + content: "\f242" +} + +.fa-battery-quarter:before { + content: "\f243" +} + +.fa-battery-three-quarters:before { + content: "\f241" +} + +.fa-bed:before { + content: "\f236" +} + +.fa-beer:before { + content: "\f0fc" +} + +.fa-behance:before { + content: "\f1b4" +} + +.fa-behance-square:before { + content: "\f1b5" +} + +.fa-bell:before { + content: "\f0f3" +} + +.fa-bell-slash:before { + content: "\f1f6" +} + +.fa-bicycle:before { + content: "\f206" +} + +.fa-bimobject:before { + content: "\f378" +} + +.fa-binoculars:before { + content: "\f1e5" +} + +.fa-birthday-cake:before { + content: "\f1fd" +} + +.fa-bitbucket:before { + content: "\f171" +} + +.fa-bitcoin:before { + content: "\f379" +} + +.fa-bity:before { + content: "\f37a" +} + +.fa-black-tie:before { + content: "\f27e" +} + +.fa-blackberry:before { + content: "\f37b" +} + +.fa-blind:before { + content: "\f29d" +} + +.fa-blogger:before { + content: "\f37c" +} + +.fa-blogger-b:before { + content: "\f37d" +} + +.fa-bluetooth:before { + content: "\f293" +} + +.fa-bluetooth-b:before { + content: "\f294" +} + +.fa-bold:before { + content: "\f032" +} + +.fa-bolt:before { + content: "\f0e7" +} + +.fa-bomb:before { + content: "\f1e2" +} + +.fa-book:before { + content: "\f02d" +} + +.fa-bookmark:before { + content: "\f02e" +} + +.fa-bowling-ball:before { + content: "\f436" +} + +.fa-braille:before { + content: "\f2a1" +} + +.fa-briefcase:before { + content: "\f0b1" +} + +.fa-btc:before { + content: "\f15a" +} + +.fa-bug:before { + content: "\f188" +} + +.fa-building:before { + content: "\f1ad" +} + +.fa-bullhorn:before { + content: "\f0a1" +} + +.fa-bullseye:before { + content: "\f140" +} + +.fa-buromobelexperte:before { + content: "\f37f" +} + +.fa-bus:before { + content: "\f207" +} + +.fa-buysellads:before { + content: "\f20d" +} + +.fa-calculator:before { + content: "\f1ec" +} + +.fa-calendar:before { + content: "\f133" +} + +.fa-calendar-alt:before { + content: "\f073" +} + +.fa-calendar-check:before { + content: "\f274" +} + +.fa-calendar-minus:before { + content: "\f272" +} + +.fa-calendar-plus:before { + content: "\f271" +} + +.fa-calendar-times:before { + content: "\f273" +} + +.fa-camera:before { + content: "\f030" +} + +.fa-camera-retro:before { + content: "\f083" +} + +.fa-car:before { + content: "\f1b9" +} + +.fa-caret-down:before { + content: "\f0d7" +} + +.fa-caret-left:before { + content: "\f0d9" +} + +.fa-caret-right:before { + content: "\f0da" +} + +.fa-caret-square-down:before { + content: "\f150" +} + +.fa-caret-square-left:before { + content: "\f191" +} + +.fa-caret-square-right:before { + content: "\f152" +} + +.fa-caret-square-up:before { + content: "\f151" +} + +.fa-caret-up:before { + content: "\f0d8" +} + +.fa-cart-arrow-down:before { + content: "\f218" +} + +.fa-cart-plus:before { + content: "\f217" +} + +.fa-cc-amazon-pay:before { + content: "\f42d" +} + +.fa-cc-amex:before { + content: "\f1f3" +} + +.fa-cc-apple-pay:before { + content: "\f416" +} + +.fa-cc-diners-club:before { + content: "\f24c" +} + +.fa-cc-discover:before { + content: "\f1f2" +} + +.fa-cc-jcb:before { + content: "\f24b" +} + +.fa-cc-mastercard:before { + content: "\f1f1" +} + +.fa-cc-paypal:before { + content: "\f1f4" +} + +.fa-cc-stripe:before { + content: "\f1f5" +} + +.fa-cc-visa:before { + content: "\f1f0" +} + +.fa-centercode:before { + content: "\f380" +} + +.fa-certificate:before { + content: "\f0a3" +} + +.fa-chart-area:before { + content: "\f1fe" +} + +.fa-chart-bar:before { + content: "\f080" +} + +.fa-chart-line:before { + content: "\f201" +} + +.fa-chart-pie:before { + content: "\f200" +} + +.fa-check:before { + content: "\f00c" +} + +.fa-check-circle:before { + content: "\f058" +} + +.fa-check-square:before { + content: "\f14a" +} + +.fa-chess:before { + content: "\f439" +} + +.fa-chess-bishop:before { + content: "\f43a" +} + +.fa-chess-board:before { + content: "\f43c" +} + +.fa-chess-king:before { + content: "\f43f" +} + +.fa-chess-knight:before { + content: "\f441" +} + +.fa-chess-pawn:before { + content: "\f443" +} + +.fa-chess-queen:before { + content: "\f445" +} + +.fa-chess-rook:before { + content: "\f447" +} + +.fa-chevron-circle-down:before { + content: "\f13a" +} + +.fa-chevron-circle-left:before { + content: "\f137" +} + +.fa-chevron-circle-right:before { + content: "\f138" +} + +.fa-chevron-circle-up:before { + content: "\f139" +} + +.fa-chevron-down:before { + content: "\f078" +} + +.fa-chevron-left:before { + content: "\f053" +} + +.fa-chevron-right:before { + content: "\f054" +} + +.fa-chevron-up:before { + content: "\f077" +} + +.fa-child:before { + content: "\f1ae" +} + +.fa-chrome:before { + content: "\f268" +} + +.fa-circle:before { + content: "\f111" +} + +.fa-circle-notch:before { + content: "\f1ce" +} + +.fa-clipboard:before { + content: "\f328" +} + +.fa-clock:before { + content: "\f017" +} + +.fa-clone:before { + content: "\f24d" +} + +.fa-closed-captioning:before { + content: "\f20a" +} + +.fa-cloud:before { + content: "\f0c2" +} + +.fa-cloud-download-alt:before { + content: "\f381" +} + +.fa-cloud-upload-alt:before { + content: "\f382" +} + +.fa-cloudscale:before { + content: "\f383" +} + +.fa-cloudsmith:before { + content: "\f384" +} + +.fa-cloudversify:before { + content: "\f385" +} + +.fa-code:before { + content: "\f121" +} + +.fa-code-branch:before { + content: "\f126" +} + +.fa-codepen:before { + content: "\f1cb" +} + +.fa-codiepie:before { + content: "\f284" +} + +.fa-coffee:before { + content: "\f0f4" +} + +.fa-cog:before { + content: "\f013" +} + +.fa-cogs:before { + content: "\f085" +} + +.fa-columns:before { + content: "\f0db" +} + +.fa-comment:before { + content: "\f075" +} + +.fa-comment-alt:before { + content: "\f27a" +} + +.fa-comments:before { + content: "\f086" +} + +.fa-compass:before { + content: "\f14e" +} + +.fa-compress:before { + content: "\f066" +} + +.fa-connectdevelop:before { + content: "\f20e" +} + +.fa-contao:before { + content: "\f26d" +} + +.fa-copy:before { + content: "\f0c5" +} + +.fa-copyright:before { + content: "\f1f9" +} + +.fa-cpanel:before { + content: "\f388" +} + +.fa-creative-commons:before { + content: "\f25e" +} + +.fa-credit-card:before { + content: "\f09d" +} + +.fa-crop:before { + content: "\f125" +} + +.fa-crosshairs:before { + content: "\f05b" +} + +.fa-css3:before { + content: "\f13c" +} + +.fa-css3-alt:before { + content: "\f38b" +} + +.fa-cube:before { + content: "\f1b2" +} + +.fa-cubes:before { + content: "\f1b3" +} + +.fa-cut:before { + content: "\f0c4" +} + +.fa-cuttlefish:before { + content: "\f38c" +} + +.fa-d-and-d:before { + content: "\f38d" +} + +.fa-dashcube:before { + content: "\f210" +} + +.fa-database:before { + content: "\f1c0" +} + +.fa-deaf:before { + content: "\f2a4" +} + +.fa-delicious:before { + content: "\f1a5" +} + +.fa-deploydog:before { + content: "\f38e" +} + +.fa-deskpro:before { + content: "\f38f" +} + +.fa-desktop:before { + content: "\f108" +} + +.fa-deviantart:before { + content: "\f1bd" +} + +.fa-digg:before { + content: "\f1a6" +} + +.fa-digital-ocean:before { + content: "\f391" +} + +.fa-discord:before { + content: "\f392" +} + +.fa-discourse:before { + content: "\f393" +} + +.fa-dochub:before { + content: "\f394" +} + +.fa-docker:before { + content: "\f395" +} + +.fa-dollar-sign:before { + content: "\f155" +} + +.fa-dot-circle:before { + content: "\f192" +} + +.fa-download:before { + content: "\f019" +} + +.fa-draft2digital:before { + content: "\f396" +} + +.fa-dribbble:before { + content: "\f17d" +} + +.fa-dribbble-square:before { + content: "\f397" +} + +.fa-dropbox:before { + content: "\f16b" +} + +.fa-drupal:before { + content: "\f1a9" +} + +.fa-dyalog:before { + content: "\f399" +} + +.fa-earlybirds:before { + content: "\f39a" +} + +.fa-edge:before { + content: "\f282" +} + +.fa-edit:before { + content: "\f044" +} + +.fa-eject:before { + content: "\f052" +} + +.fa-elementor:before { + content: "\f430" +} + +.fa-ellipsis-h:before { + content: "\f141" +} + +.fa-ellipsis-v:before { + content: "\f142" +} + +.fa-ember:before { + content: "\f423" +} + +.fa-empire:before { + content: "\f1d1" +} + +.fa-envelope:before { + content: "\f0e0" +} + +.fa-envelope-open:before { + content: "\f2b6" +} + +.fa-envelope-square:before { + content: "\f199" +} + +.fa-envira:before { + content: "\f299" +} + +.fa-eraser:before { + content: "\f12d" +} + +.fa-erlang:before { + content: "\f39d" +} + +.fa-ethereum:before { + content: "\f42e" +} + +.fa-etsy:before { + content: "\f2d7" +} + +.fa-euro-sign:before { + content: "\f153" +} + +.fa-exchange-alt:before { + content: "\f362" +} + +.fa-exclamation:before { + content: "\f12a" +} + +.fa-exclamation-circle:before { + content: "\f06a" +} + +.fa-exclamation-triangle:before { + content: "\f071" +} + +.fa-expand:before { + content: "\f065" +} + +.fa-expand-arrows-alt:before { + content: "\f31e" +} + +.fa-expeditedssl:before { + content: "\f23e" +} + +.fa-external-link-alt:before { + content: "\f35d" +} + +.fa-external-link-square-alt:before { + content: "\f360" +} + +.fa-eye:before { + content: "\f06e" +} + +.fa-eye-dropper:before { + content: "\f1fb" +} + +.fa-eye-slash:before { + content: "\f070" +} + +.fa-facebook:before { + content: "\f09a" +} + +.fa-facebook-f:before { + content: "\f39e" +} + +.fa-facebook-messenger:before { + content: "\f39f" +} + +.fa-facebook-square:before { + content: "\f082" +} + +.fa-fast-backward:before { + content: "\f049" +} + +.fa-fast-forward:before { + content: "\f050" +} + +.fa-fax:before { + content: "\f1ac" +} + +.fa-female:before { + content: "\f182" +} + +.fa-fighter-jet:before { + content: "\f0fb" +} + +.fa-file:before { + content: "\f15b" +} + +.fa-file-alt:before { + content: "\f15c" +} + +.fa-file-archive:before { + content: "\f1c6" +} + +.fa-file-audio:before { + content: "\f1c7" +} + +.fa-file-code:before { + content: "\f1c9" +} + +.fa-file-excel:before { + content: "\f1c3" +} + +.fa-file-image:before { + content: "\f1c5" +} + +.fa-file-pdf:before { + content: "\f1c1" +} + +.fa-file-powerpoint:before { + content: "\f1c4" +} + +.fa-file-video:before { + content: "\f1c8" +} + +.fa-file-word:before { + content: "\f1c2" +} + +.fa-film:before { + content: "\f008" +} + +.fa-filter:before { + content: "\f0b0" +} + +.fa-fire:before { + content: "\f06d" +} + +.fa-fire-extinguisher:before { + content: "\f134" +} + +.fa-firefox:before { + content: "\f269" +} + +.fa-first-order:before { + content: "\f2b0" +} + +.fa-firstdraft:before { + content: "\f3a1" +} + +.fa-flag:before { + content: "\f024" +} + +.fa-flag-checkered:before { + content: "\f11e" +} + +.fa-flask:before { + content: "\f0c3" +} + +.fa-flickr:before { + content: "\f16e" +} + +.fa-flipboard:before { + content: "\f44d" +} + +.fa-fly:before { + content: "\f417" +} + +.fa-folder:before { + content: "\f07b" +} + +.fa-folder-open:before { + content: "\f07c" +} + +.fa-font:before { + content: "\f031" +} + +.fa-font-awesome:before { + content: "\f2b4" +} + +.fa-font-awesome-alt:before { + content: "\f35c" +} + +.fa-font-awesome-flag:before { + content: "\f425" +} + +.fa-fonticons:before { + content: "\f280" +} + +.fa-fonticons-fi:before { + content: "\f3a2" +} + +.fa-football-ball:before { + content: "\f44e" +} + +.fa-fort-awesome:before { + content: "\f286" +} + +.fa-fort-awesome-alt:before { + content: "\f3a3" +} + +.fa-forumbee:before { + content: "\f211" +} + +.fa-forward:before { + content: "\f04e" +} + +.fa-foursquare:before { + content: "\f180" +} + +.fa-free-code-camp:before { + content: "\f2c5" +} + +.fa-freebsd:before { + content: "\f3a4" +} + +.fa-frown:before { + content: "\f119" +} + +.fa-futbol:before { + content: "\f1e3" +} + +.fa-gamepad:before { + content: "\f11b" +} + +.fa-gavel:before { + content: "\f0e3" +} + +.fa-gem:before { + content: "\f3a5" +} + +.fa-genderless:before { + content: "\f22d" +} + +.fa-get-pocket:before { + content: "\f265" +} + +.fa-gg:before { + content: "\f260" +} + +.fa-gg-circle:before { + content: "\f261" +} + +.fa-gift:before { + content: "\f06b" +} + +.fa-git:before { + content: "\f1d3" +} + +.fa-git-square:before { + content: "\f1d2" +} + +.fa-github:before { + content: "\f09b" +} + +.fa-github-alt:before { + content: "\f113" +} + +.fa-github-square:before { + content: "\f092" +} + +.fa-gitkraken:before { + content: "\f3a6" +} + +.fa-gitlab:before { + content: "\f296" +} + +.fa-gitter:before { + content: "\f426" +} + +.fa-glass-martini:before { + content: "\f000" +} + +.fa-glide:before { + content: "\f2a5" +} + +.fa-glide-g:before { + content: "\f2a6" +} + +.fa-globe:before { + content: "\f0ac" +} + +.fa-gofore:before { + content: "\f3a7" +} + +.fa-golf-ball:before { + content: "\f450" +} + +.fa-goodreads:before { + content: "\f3a8" +} + +.fa-goodreads-g:before { + content: "\f3a9" +} + +.fa-google:before { + content: "\f1a0" +} + +.fa-google-drive:before { + content: "\f3aa" +} + +.fa-google-play:before { + content: "\f3ab" +} + +.fa-google-plus:before { + content: "\f2b3" +} + +.fa-google-plus-g:before { + content: "\f0d5" +} + +.fa-google-plus-square:before { + content: "\f0d4" +} + +.fa-google-wallet:before { + content: "\f1ee" +} + +.fa-graduation-cap:before { + content: "\f19d" +} + +.fa-gratipay:before { + content: "\f184" +} + +.fa-grav:before { + content: "\f2d6" +} + +.fa-gripfire:before { + content: "\f3ac" +} + +.fa-grunt:before { + content: "\f3ad" +} + +.fa-gulp:before { + content: "\f3ae" +} + +.fa-h-square:before { + content: "\f0fd" +} + +.fa-hacker-news:before { + content: "\f1d4" +} + +.fa-hacker-news-square:before { + content: "\f3af" +} + +.fa-hand-lizard:before { + content: "\f258" +} + +.fa-hand-paper:before { + content: "\f256" +} + +.fa-hand-peace:before { + content: "\f25b" +} + +.fa-hand-point-down:before { + content: "\f0a7" +} + +.fa-hand-point-left:before { + content: "\f0a5" +} + +.fa-hand-point-right:before { + content: "\f0a4" +} + +.fa-hand-point-up:before { + content: "\f0a6" +} + +.fa-hand-pointer:before { + content: "\f25a" +} + +.fa-hand-rock:before { + content: "\f255" +} + +.fa-hand-scissors:before { + content: "\f257" +} + +.fa-hand-spock:before { + content: "\f259" +} + +.fa-handshake:before { + content: "\f2b5" +} + +.fa-hashtag:before { + content: "\f292" +} + +.fa-hdd:before { + content: "\f0a0" +} + +.fa-heading:before { + content: "\f1dc" +} + +.fa-headphones:before { + content: "\f025" +} + +.fa-heart:before { + content: "\f004" +} + +.fa-heartbeat:before { + content: "\f21e" +} + +.fa-hips:before { + content: "\f452" +} + +.fa-hire-a-helper:before { + content: "\f3b0" +} + +.fa-history:before { + content: "\f1da" +} + +.fa-hockey-puck:before { + content: "\f453" +} + +.fa-home:before { + content: "\f015" +} + +.fa-hooli:before { + content: "\f427" +} + +.fa-hospital:before { + content: "\f0f8" +} + +.fa-hotjar:before { + content: "\f3b1" +} + +.fa-hourglass:before { + content: "\f254" +} + +.fa-hourglass-end:before { + content: "\f253" +} + +.fa-hourglass-half:before { + content: "\f252" +} + +.fa-hourglass-start:before { + content: "\f251" +} + +.fa-houzz:before { + content: "\f27c" +} + +.fa-html5:before { + content: "\f13b" +} + +.fa-hubspot:before { + content: "\f3b2" +} + +.fa-i-cursor:before { + content: "\f246" +} + +.fa-id-badge:before { + content: "\f2c1" +} + +.fa-id-card:before { + content: "\f2c2" +} + +.fa-image:before { + content: "\f03e" +} + +.fa-images:before { + content: "\f302" +} + +.fa-imdb:before { + content: "\f2d8" +} + +.fa-inbox:before { + content: "\f01c" +} + +.fa-indent:before { + content: "\f03c" +} + +.fa-industry:before { + content: "\f275" +} + +.fa-info:before { + content: "\f129" +} + +.fa-info-circle:before { + content: "\f05a" +} + +.fa-instagram:before { + content: "\f16d" +} + +.fa-internet-explorer:before { + content: "\f26b" +} + +.fa-ioxhost:before { + content: "\f208" +} + +.fa-italic:before { + content: "\f033" +} + +.fa-itunes:before { + content: "\f3b4" +} + +.fa-itunes-note:before { + content: "\f3b5" +} + +.fa-jenkins:before { + content: "\f3b6" +} + +.fa-joget:before { + content: "\f3b7" +} + +.fa-joomla:before { + content: "\f1aa" +} + +.fa-js:before { + content: "\f3b8" +} + +.fa-js-square:before { + content: "\f3b9" +} + +.fa-jsfiddle:before { + content: "\f1cc" +} + +.fa-key:before { + content: "\f084" +} + +.fa-keyboard:before { + content: "\f11c" +} + +.fa-keycdn:before { + content: "\f3ba" +} + +.fa-kickstarter:before { + content: "\f3bb" +} + +.fa-kickstarter-k:before { + content: "\f3bc" +} + +.fa-korvue:before { + content: "\f42f" +} + +.fa-language:before { + content: "\f1ab" +} + +.fa-laptop:before { + content: "\f109" +} + +.fa-laravel:before { + content: "\f3bd" +} + +.fa-lastfm:before { + content: "\f202" +} + +.fa-lastfm-square:before { + content: "\f203" +} + +.fa-leaf:before { + content: "\f06c" +} + +.fa-leanpub:before { + content: "\f212" +} + +.fa-lemon:before { + content: "\f094" +} + +.fa-less:before { + content: "\f41d" +} + +.fa-level-down-alt:before { + content: "\f3be" +} + +.fa-level-up-alt:before { + content: "\f3bf" +} + +.fa-life-ring:before { + content: "\f1cd" +} + +.fa-lightbulb:before { + content: "\f0eb" +} + +.fa-line:before { + content: "\f3c0" +} + +.fa-link:before { + content: "\f0c1" +} + +.fa-linkedin:before { + content: "\f08c" +} + +.fa-linkedin-in:before { + content: "\f0e1" +} + +.fa-linode:before { + content: "\f2b8" +} + +.fa-linux:before { + content: "\f17c" +} + +.fa-lira-sign:before { + content: "\f195" +} + +.fa-list:before { + content: "\f03a" +} + +.fa-list-alt:before { + content: "\f022" +} + +.fa-list-ol:before { + content: "\f0cb" +} + +.fa-list-ul:before { + content: "\f0ca" +} + +.fa-location-arrow:before { + content: "\f124" +} + +.fa-lock:before { + content: "\f023" +} + +.fa-lock-open:before { + content: "\f3c1" +} + +.fa-long-arrow-alt-down:before { + content: "\f309" +} + +.fa-long-arrow-alt-left:before { + content: "\f30a" +} + +.fa-long-arrow-alt-right:before { + content: "\f30b" +} + +.fa-long-arrow-alt-up:before { + content: "\f30c" +} + +.fa-low-vision:before { + content: "\f2a8" +} + +.fa-lyft:before { + content: "\f3c3" +} + +.fa-magento:before { + content: "\f3c4" +} + +.fa-magic:before { + content: "\f0d0" +} + +.fa-magnet:before { + content: "\f076" +} + +.fa-male:before { + content: "\f183" +} + +.fa-map:before { + content: "\f279" +} + +.fa-map-marker:before { + content: "\f041" +} + +.fa-map-marker-alt:before { + content: "\f3c5" +} + +.fa-map-pin:before { + content: "\f276" +} + +.fa-map-signs:before { + content: "\f277" +} + +.fa-mars:before { + content: "\f222" +} + +.fa-mars-double:before { + content: "\f227" +} + +.fa-mars-stroke:before { + content: "\f229" +} + +.fa-mars-stroke-h:before { + content: "\f22b" +} + +.fa-mars-stroke-v:before { + content: "\f22a" +} + +.fa-maxcdn:before { + content: "\f136" +} + +.fa-medapps:before { + content: "\f3c6" +} + +.fa-medium:before { + content: "\f23a" +} + +.fa-medium-m:before { + content: "\f3c7" +} + +.fa-medkit:before { + content: "\f0fa" +} + +.fa-medrt:before { + content: "\f3c8" +} + +.fa-meetup:before { + content: "\f2e0" +} + +.fa-meh:before { + content: "\f11a" +} + +.fa-mercury:before { + content: "\f223" +} + +.fa-microchip:before { + content: "\f2db" +} + +.fa-microphone:before { + content: "\f130" +} + +.fa-microphone-slash:before { + content: "\f131" +} + +.fa-microsoft:before { + content: "\f3ca" +} + +.fa-minus:before { + content: "\f068" +} + +.fa-minus-circle:before { + content: "\f056" +} + +.fa-minus-square:before { + content: "\f146" +} + +.fa-mix:before { + content: "\f3cb" +} + +.fa-mixcloud:before { + content: "\f289" +} + +.fa-mizuni:before { + content: "\f3cc" +} + +.fa-mobile:before { + content: "\f10b" +} + +.fa-mobile-alt:before { + content: "\f3cd" +} + +.fa-modx:before { + content: "\f285" +} + +.fa-monero:before { + content: "\f3d0" +} + +.fa-money-bill-alt:before { + content: "\f3d1" +} + +.fa-moon:before { + content: "\f186" +} + +.fa-motorcycle:before { + content: "\f21c" +} + +.fa-mouse-pointer:before { + content: "\f245" +} + +.fa-music:before { + content: "\f001" +} + +.fa-napster:before { + content: "\f3d2" +} + +.fa-neuter:before { + content: "\f22c" +} + +.fa-newspaper:before { + content: "\f1ea" +} + +.fa-nintendo-switch:before { + content: "\f418" +} + +.fa-node:before { + content: "\f419" +} + +.fa-node-js:before { + content: "\f3d3" +} + +.fa-npm:before { + content: "\f3d4" +} + +.fa-ns8:before { + content: "\f3d5" +} + +.fa-nutritionix:before { + content: "\f3d6" +} + +.fa-object-group:before { + content: "\f247" +} + +.fa-object-ungroup:before { + content: "\f248" +} + +.fa-odnoklassniki:before { + content: "\f263" +} + +.fa-odnoklassniki-square:before { + content: "\f264" +} + +.fa-opencart:before { + content: "\f23d" +} + +.fa-openid:before { + content: "\f19b" +} + +.fa-opera:before { + content: "\f26a" +} + +.fa-optin-monster:before { + content: "\f23c" +} + +.fa-osi:before { + content: "\f41a" +} + +.fa-outdent:before { + content: "\f03b" +} + +.fa-page4:before { + content: "\f3d7" +} + +.fa-pagelines:before { + content: "\f18c" +} + +.fa-paint-brush:before { + content: "\f1fc" +} + +.fa-palfed:before { + content: "\f3d8" +} + +.fa-paper-plane:before { + content: "\f1d8" +} + +.fa-paperclip:before { + content: "\f0c6" +} + +.fa-paragraph:before { + content: "\f1dd" +} + +.fa-paste:before { + content: "\f0ea" +} + +.fa-patreon:before { + content: "\f3d9" +} + +.fa-pause:before { + content: "\f04c" +} + +.fa-pause-circle:before { + content: "\f28b" +} + +.fa-paw:before { + content: "\f1b0" +} + +.fa-paypal:before { + content: "\f1ed" +} + +.fa-pen-square:before { + content: "\f14b" +} + +.fa-pencil-alt:before { + content: "\f303" +} + +.fa-percent:before { + content: "\f295" +} + +.fa-periscope:before { + content: "\f3da" +} + +.fa-phabricator:before { + content: "\f3db" +} + +.fa-phoenix-framework:before { + content: "\f3dc" +} + +.fa-phone:before { + content: "\f095" +} + +.fa-phone-square:before { + content: "\f098" +} + +.fa-phone-volume:before { + content: "\f2a0" +} + +.fa-php:before { + content: "\f457" +} + +.fa-pied-piper:before { + content: "\f2ae" +} + +.fa-pied-piper-alt:before { + content: "\f1a8" +} + +.fa-pied-piper-pp:before { + content: "\f1a7" +} + +.fa-pinterest:before { + content: "\f0d2" +} + +.fa-pinterest-p:before { + content: "\f231" +} + +.fa-pinterest-square:before { + content: "\f0d3" +} + +.fa-plane:before { + content: "\f072" +} + +.fa-play:before { + content: "\f04b" +} + +.fa-play-circle:before { + content: "\f144" +} + +.fa-playstation:before { + content: "\f3df" +} + +.fa-plug:before { + content: "\f1e6" +} + +.fa-plus:before { + content: "\f067" +} + +.fa-plus-circle:before { + content: "\f055" +} + +.fa-plus-square:before { + content: "\f0fe" +} + +.fa-podcast:before { + content: "\f2ce" +} + +.fa-pound-sign:before { + content: "\f154" +} + +.fa-power-off:before { + content: "\f011" +} + +.fa-print:before { + content: "\f02f" +} + +.fa-product-hunt:before { + content: "\f288" +} + +.fa-pushed:before { + content: "\f3e1" +} + +.fa-puzzle-piece:before { + content: "\f12e" +} + +.fa-python:before { + content: "\f3e2" +} + +.fa-qq:before { + content: "\f1d6" +} + +.fa-qrcode:before { + content: "\f029" +} + +.fa-question:before { + content: "\f128" +} + +.fa-question-circle:before { + content: "\f059" +} + +.fa-quidditch:before { + content: "\f458" +} + +.fa-quinscape:before { + content: "\f459" +} + +.fa-quora:before { + content: "\f2c4" +} + +.fa-quote-left:before { + content: "\f10d" +} + +.fa-quote-right:before { + content: "\f10e" +} + +.fa-random:before { + content: "\f074" +} + +.fa-ravelry:before { + content: "\f2d9" +} + +.fa-react:before { + content: "\f41b" +} + +.fa-rebel:before { + content: "\f1d0" +} + +.fa-recycle:before { + content: "\f1b8" +} + +.fa-red-river:before { + content: "\f3e3" +} + +.fa-reddit:before { + content: "\f1a1" +} + +.fa-reddit-alien:before { + content: "\f281" +} + +.fa-reddit-square:before { + content: "\f1a2" +} + +.fa-redo:before { + content: "\f01e" +} + +.fa-redo-alt:before { + content: "\f2f9" +} + +.fa-registered:before { + content: "\f25d" +} + +.fa-rendact:before { + content: "\f3e4" +} + +.fa-renren:before { + content: "\f18b" +} + +.fa-reply:before { + content: "\f3e5" +} + +.fa-reply-all:before { + content: "\f122" +} + +.fa-replyd:before { + content: "\f3e6" +} + +.fa-resolving:before { + content: "\f3e7" +} + +.fa-retweet:before { + content: "\f079" +} + +.fa-road:before { + content: "\f018" +} + +.fa-rocket:before { + content: "\f135" +} + +.fa-rocketchat:before { + content: "\f3e8" +} + +.fa-rockrms:before { + content: "\f3e9" +} + +.fa-rss:before { + content: "\f09e" +} + +.fa-rss-square:before { + content: "\f143" +} + +.fa-ruble-sign:before { + content: "\f158" +} + +.fa-rupee-sign:before { + content: "\f156" +} + +.fa-safari:before { + content: "\f267" +} + +.fa-sass:before { + content: "\f41e" +} + +.fa-save:before { + content: "\f0c7" +} + +.fa-schlix:before { + content: "\f3ea" +} + +.fa-scribd:before { + content: "\f28a" +} + +.fa-search:before { + content: "\f002" +} + +.fa-search-minus:before { + content: "\f010" +} + +.fa-search-plus:before { + content: "\f00e" +} + +.fa-searchengin:before { + content: "\f3eb" +} + +.fa-sellcast:before { + content: "\f2da" +} + +.fa-sellsy:before { + content: "\f213" +} + +.fa-server:before { + content: "\f233" +} + +.fa-servicestack:before { + content: "\f3ec" +} + +.fa-share:before { + content: "\f064" +} + +.fa-share-alt:before { + content: "\f1e0" +} + +.fa-share-alt-square:before { + content: "\f1e1" +} + +.fa-share-square:before { + content: "\f14d" +} + +.fa-shekel-sign:before { + content: "\f20b" +} + +.fa-shield-alt:before { + content: "\f3ed" +} + +.fa-ship:before { + content: "\f21a" +} + +.fa-shirtsinbulk:before { + content: "\f214" +} + +.fa-shopping-bag:before { + content: "\f290" +} + +.fa-shopping-basket:before { + content: "\f291" +} + +.fa-shopping-cart:before { + content: "\f07a" +} + +.fa-shower:before { + content: "\f2cc" +} + +.fa-sign-in-alt:before { + content: "\f2f6" +} + +.fa-sign-language:before { + content: "\f2a7" +} + +.fa-sign-out-alt:before { + content: "\f2f5" +} + +.fa-signal:before { + content: "\f012" +} + +.fa-simplybuilt:before { + content: "\f215" +} + +.fa-sistrix:before { + content: "\f3ee" +} + +.fa-sitemap:before { + content: "\f0e8" +} + +.fa-skyatlas:before { + content: "\f216" +} + +.fa-skype:before { + content: "\f17e" +} + +.fa-slack:before { + content: "\f198" +} + +.fa-slack-hash:before { + content: "\f3ef" +} + +.fa-sliders-h:before { + content: "\f1de" +} + +.fa-slideshare:before { + content: "\f1e7" +} + +.fa-smile:before { + content: "\f118" +} + +.fa-snapchat:before { + content: "\f2ab" +} + +.fa-snapchat-ghost:before { + content: "\f2ac" +} + +.fa-snapchat-square:before { + content: "\f2ad" +} + +.fa-snowflake:before { + content: "\f2dc" +} + +.fa-sort:before { + content: "\f0dc" +} + +.fa-sort-alpha-down:before { + content: "\f15d" +} + +.fa-sort-alpha-up:before { + content: "\f15e" +} + +.fa-sort-amount-down:before { + content: "\f160" +} + +.fa-sort-amount-up:before { + content: "\f161" +} + +.fa-sort-down:before { + content: "\f0dd" +} + +.fa-sort-numeric-down:before { + content: "\f162" +} + +.fa-sort-numeric-up:before { + content: "\f163" +} + +.fa-sort-up:before { + content: "\f0de" +} + +.fa-soundcloud:before { + content: "\f1be" +} + +.fa-space-shuttle:before { + content: "\f197" +} + +.fa-speakap:before { + content: "\f3f3" +} + +.fa-spinner:before { + content: "\f110" +} + +.fa-spotify:before { + content: "\f1bc" +} + +.fa-square:before { + content: "\f0c8" +} + +.fa-square-full:before { + content: "\f45c" +} + +.fa-stack-exchange:before { + content: "\f18d" +} + +.fa-stack-overflow:before { + content: "\f16c" +} + +.fa-star:before { + content: "\f005" +} + +.fa-star-half:before { + content: "\f089" +} + +.fa-staylinked:before { + content: "\f3f5" +} + +.fa-steam:before { + content: "\f1b6" +} + +.fa-steam-square:before { + content: "\f1b7" +} + +.fa-steam-symbol:before { + content: "\f3f6" +} + +.fa-step-backward:before { + content: "\f048" +} + +.fa-step-forward:before { + content: "\f051" +} + +.fa-stethoscope:before { + content: "\f0f1" +} + +.fa-sticker-mule:before { + content: "\f3f7" +} + +.fa-sticky-note:before { + content: "\f249" +} + +.fa-stop:before { + content: "\f04d" +} + +.fa-stop-circle:before { + content: "\f28d" +} + +.fa-stopwatch:before { + content: "\f2f2" +} + +.fa-strava:before { + content: "\f428" +} + +.fa-street-view:before { + content: "\f21d" +} + +.fa-strikethrough:before { + content: "\f0cc" +} + +.fa-stripe:before { + content: "\f429" +} + +.fa-stripe-s:before { + content: "\f42a" +} + +.fa-studiovinari:before { + content: "\f3f8" +} + +.fa-stumbleupon:before { + content: "\f1a4" +} + +.fa-stumbleupon-circle:before { + content: "\f1a3" +} + +.fa-subscript:before { + content: "\f12c" +} + +.fa-subway:before { + content: "\f239" +} + +.fa-suitcase:before { + content: "\f0f2" +} + +.fa-sun:before { + content: "\f185" +} + +.fa-superpowers:before { + content: "\f2dd" +} + +.fa-superscript:before { + content: "\f12b" +} + +.fa-supple:before { + content: "\f3f9" +} + +.fa-sync:before { + content: "\f021" +} + +.fa-sync-alt:before { + content: "\f2f1" +} + +.fa-table:before { + content: "\f0ce" +} + +.fa-table-tennis:before { + content: "\f45d" +} + +.fa-tablet:before { + content: "\f10a" +} + +.fa-tablet-alt:before { + content: "\f3fa" +} + +.fa-tachometer-alt:before { + content: "\f3fd" +} + +.fa-tag:before { + content: "\f02b" +} + +.fa-tags:before { + content: "\f02c" +} + +.fa-tasks:before { + content: "\f0ae" +} + +.fa-taxi:before { + content: "\f1ba" +} + +.fa-telegram:before { + content: "\f2c6" +} + +.fa-telegram-plane:before { + content: "\f3fe" +} + +.fa-tencent-weibo:before { + content: "\f1d5" +} + +.fa-terminal:before { + content: "\f120" +} + +.fa-text-height:before { + content: "\f034" +} + +.fa-text-width:before { + content: "\f035" +} + +.fa-th:before { + content: "\f00a" +} + +.fa-th-large:before { + content: "\f009" +} + +.fa-th-list:before { + content: "\f00b" +} + +.fa-themeisle:before { + content: "\f2b2" +} + +.fa-thermometer-empty:before { + content: "\f2cb" +} + +.fa-thermometer-full:before { + content: "\f2c7" +} + +.fa-thermometer-half:before { + content: "\f2c9" +} + +.fa-thermometer-quarter:before { + content: "\f2ca" +} + +.fa-thermometer-three-quarters:before { + content: "\f2c8" +} + +.fa-thumbs-down:before { + content: "\f165" +} + +.fa-thumbs-up:before { + content: "\f164" +} + +.fa-thumbtack:before { + content: "\f08d" +} + +.fa-ticket-alt:before { + content: "\f3ff" +} + +.fa-times:before { + content: "\f00d" +} + +.fa-times-circle:before { + content: "\f057" +} + +.fa-tint:before { + content: "\f043" +} + +.fa-toggle-off:before { + content: "\f204" +} + +.fa-toggle-on:before { + content: "\f205" +} + +.fa-trademark:before { + content: "\f25c" +} + +.fa-train:before { + content: "\f238" +} + +.fa-transgender:before { + content: "\f224" +} + +.fa-transgender-alt:before { + content: "\f225" +} + +.fa-trash:before { + content: "\f1f8" +} + +.fa-trash-alt:before { + content: "\f2ed" +} + +.fa-tree:before { + content: "\f1bb" +} + +.fa-trello:before { + content: "\f181" +} + +.fa-tripadvisor:before { + content: "\f262" +} + +.fa-trophy:before { + content: "\f091" +} + +.fa-truck:before { + content: "\f0d1" +} + +.fa-tty:before { + content: "\f1e4" +} + +.fa-tumblr:before { + content: "\f173" +} + +.fa-tumblr-square:before { + content: "\f174" +} + +.fa-tv:before { + content: "\f26c" +} + +.fa-twitch:before { + content: "\f1e8" +} + +.fa-twitter:before { + content: "\f099" +} + +.fa-twitter-square:before { + content: "\f081" +} + +.fa-typo3:before { + content: "\f42b" +} + +.fa-uber:before { + content: "\f402" +} + +.fa-uikit:before { + content: "\f403" +} + +.fa-umbrella:before { + content: "\f0e9" +} + +.fa-underline:before { + content: "\f0cd" +} + +.fa-undo:before { + content: "\f0e2" +} + +.fa-undo-alt:before { + content: "\f2ea" +} + +.fa-uniregistry:before { + content: "\f404" +} + +.fa-universal-access:before { + content: "\f29a" +} + +.fa-university:before { + content: "\f19c" +} + +.fa-unlink:before { + content: "\f127" +} + +.fa-unlock:before { + content: "\f09c" +} + +.fa-unlock-alt:before { + content: "\f13e" +} + +.fa-untappd:before { + content: "\f405" +} + +.fa-upload:before { + content: "\f093" +} + +.fa-usb:before { + content: "\f287" +} + +.fa-user:before { + content: "\f007" +} + +.fa-user-circle:before { + content: "\f2bd" +} + +.fa-user-md:before { + content: "\f0f0" +} + +.fa-user-plus:before { + content: "\f234" +} + +.fa-user-secret:before { + content: "\f21b" +} + +.fa-user-times:before { + content: "\f235" +} + +.fa-users:before { + content: "\f0c0" +} + +.fa-ussunnah:before { + content: "\f407" +} + +.fa-utensil-spoon:before { + content: "\f2e5" +} + +.fa-utensils:before { + content: "\f2e7" +} + +.fa-vaadin:before { + content: "\f408" +} + +.fa-venus:before { + content: "\f221" +} + +.fa-venus-double:before { + content: "\f226" +} + +.fa-venus-mars:before { + content: "\f228" +} + +.fa-viacoin:before { + content: "\f237" +} + +.fa-viadeo:before { + content: "\f2a9" +} + +.fa-viadeo-square:before { + content: "\f2aa" +} + +.fa-viber:before { + content: "\f409" +} + +.fa-video:before { + content: "\f03d" +} + +.fa-vimeo:before { + content: "\f40a" +} + +.fa-vimeo-square:before { + content: "\f194" +} + +.fa-vimeo-v:before { + content: "\f27d" +} + +.fa-vine:before { + content: "\f1ca" +} + +.fa-vk:before { + content: "\f189" +} + +.fa-vnv:before { + content: "\f40b" +} + +.fa-volleyball-ball:before { + content: "\f45f" +} + +.fa-volume-down:before { + content: "\f027" +} + +.fa-volume-off:before { + content: "\f026" +} + +.fa-volume-up:before { + content: "\f028" +} + +.fa-vuejs:before { + content: "\f41f" +} + +.fa-weibo:before { + content: "\f18a" +} + +.fa-weixin:before { + content: "\f1d7" +} + +.fa-whatsapp:before { + content: "\f232" +} + +.fa-whatsapp-square:before { + content: "\f40c" +} + +.fa-wheelchair:before { + content: "\f193" +} + +.fa-whmcs:before { + content: "\f40d" +} + +.fa-wifi:before { + content: "\f1eb" +} + +.fa-wikipedia-w:before { + content: "\f266" +} + +.fa-window-close:before { + content: "\f410" +} + +.fa-window-maximize:before { + content: "\f2d0" +} + +.fa-window-minimize:before { + content: "\f2d1" +} + +.fa-window-restore:before { + content: "\f2d2" +} + +.fa-windows:before { + content: "\f17a" +} + +.fa-won-sign:before { + content: "\f159" +} + +.fa-wordpress:before { + content: "\f19a" +} + +.fa-wordpress-simple:before { + content: "\f411" +} + +.fa-wpbeginner:before { + content: "\f297" +} + +.fa-wpexplorer:before { + content: "\f2de" +} + +.fa-wpforms:before { + content: "\f298" +} + +.fa-wrench:before { + content: "\f0ad" +} + +.fa-xbox:before { + content: "\f412" +} + +.fa-xing:before { + content: "\f168" +} + +.fa-xing-square:before { + content: "\f169" +} + +.fa-y-combinator:before { + content: "\f23b" +} + +.fa-yahoo:before { + content: "\f19e" +} + +.fa-yandex:before { + content: "\f413" +} + +.fa-yandex-international:before { + content: "\f414" +} + +.fa-yelp:before { + content: "\f1e9" +} + +.fa-yen-sign:before { + content: "\f157" +} + +.fa-yoast:before { + content: "\f2b1" +} + +.fa-youtube:before { + content: "\f167" +} + +.fa-youtube-square:before { + content: "\f431" +} + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto +} + +@font-face { + font-family: Font Awesome\ 5 Brands; + font-style: normal; + font-weight: 400; + src: url(../fonts/fa-brands-400.eot); + src: url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-brands-400.woff2) format("woff2"), url(../fonts/fa-brands-400.woff) format("woff"), url(../fonts/fa-brands-400.ttf) format("truetype"), url(../fonts/fa-brands-400.svg#fontawesome) format("svg") +} + +.fab { + font-family: Font Awesome\ 5 Brands +} + +@font-face { + font-family: Font Awesome\ 5 Free; + font-style: normal; + font-weight: 400; + src: url(../fonts/fa-regular-400.eot); + src: url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-regular-400.woff2) format("woff2"), url(../fonts/fa-regular-400.woff) format("woff"), url(../fonts/fa-regular-400.ttf) format("truetype"), url(../fonts/fa-regular-400.svg#fontawesome) format("svg") +} + +.far { + font-weight: 400 +} + +@font-face { + font-family: Font Awesome\ 5 Free; + font-style: normal; + font-weight: 900; + src: url(../fonts/fa-solid-900.eot); + src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-solid-900.woff2) format("woff2"), url(../fonts/fa-solid-900.woff) format("woff"), url(../fonts/fa-solid-900.ttf) format("truetype"), url(../fonts/fa-solid-900.svg#fontawesome) format("svg") +} + +.fa, +.far, +.fas { + font-family: Font Awesome\ 5 Free +} + +.fa, +.fas { + font-weight: 900 +} diff --git a/assets/css/magnific-popup.css b/assets/css/magnific-popup.css new file mode 100755 index 0000000..8561e18 --- /dev/null +++ b/assets/css/magnific-popup.css @@ -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; } } diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100755 index 0000000..415bd50 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,6717 @@ +@import url("https://fonts.googleapis.com/css?family=Great+Vibes|Josefin+Sans:300,400,600,700,700i|Montserrat:200,300,400,500,600,700,800&display=swap"); +.white-bg { + background: #ffffff +} + +.gray-bg { + background: #f5f5f5 +} + +.gray-bg { + background: #f7f7fd +} + +.white-bg { + background: #fff +} + +.black-bg { + background: #16161a +} + +.theme-bg { + background: #c6a16e +} + +.brand-bg { + background: #f1f4fa +} + +.testimonial-bg { + background: #f9fafc +} + +.white-color { + color: #fff +} + +.black-color { + color: #16161a +} + +.theme-color { + color: #c6a16e +} + +.boxed-btn { + background: #fff; + color: #c6a16e !important; + display: inline-block; + padding: 18px 44px; + font-family: "Josefin Sans", sans-serif; + font-size: 14px; + font-weight: 400; + border: 0; + border: 1px solid #c6a16e; + letter-spacing: 3px; + text-align: center; + color: #c6a16e; + text-transform: uppercase; + cursor: pointer +} + +.boxed-btn:hover { + background: #c6a16e; + color: #fff !important; + border: 1px solid #c6a16e +} + +.boxed-btn:focus { + outline: none +} + +.boxed-btn.large-width { + width: 220px +} + +[data-overlay] { + position: relative; + background-size: cover; + background-repeat: no-repeat; + background-position: center center +} + +[data-overlay]::before { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + content: "" +} + +[data-opacity="1"]::before { + opacity: 0.1 +} + +[data-opacity="2"]::before { + opacity: 0.2 +} + +[data-opacity="3"]::before { + opacity: 0.3 +} + +[data-opacity="4"]::before { + opacity: 0.4 +} + +[data-opacity="5"]::before { + opacity: 0.5 +} + +[data-opacity="6"]::before { + opacity: 0.6 +} + +[data-opacity="7"]::before { + opacity: 0.7 +} + +[data-opacity="8"]::before { + opacity: 0.8 +} + +[data-opacity="9"]::before { + opacity: 0.9 +} + +.bg-img-1 { + background-image: url(../img/slider/slider-img-1.jpg) +} + +.bg-img-2 { + background-image: url(../img/background-img/bg-img-2.jpg) +} + +.cta-bg-1 { + background-image: url(../img/background-img/bg-img-3.jpg) +} + +.img { + max-width: 100%; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.f-left { + float: left +} + +.f-right { + float: right +} + +.fix { + overflow: hidden +} + +.clear { + clear: both +} + +a, +.button { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +a:focus, +.button:focus { + text-decoration: none; + outline: none +} + +a { + color: #635c5c +} + +a:hover { + color: #fff +} + +a:focus, +a:hover, +.portfolio-cat a:hover, +.footer -menu li a:hover { + text-decoration: none +} + +a, +button { + color: #fff; + outline: medium none +} + +button:focus, +input:focus, +input:focus, +textarea, +textarea:focus { + outline: 0 +} + +.uppercase { + text-transform: uppercase +} + +input:focus::-moz-placeholder { + opacity: 0; + -webkit-transition: .4s; + -o-transition: .4s; + transition: .4s +} + +.capitalize { + text-transform: capitalize +} + +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: inherit +} + +ul { + margin: 0px; + padding: 0px +} + +li { + list-style: none +} + +hr { + border-bottom: 1px solid #eceff8; + border-top: 0 none; + margin: 30px 0; + padding: 0 +} + +.theme-overlay { + position: relative +} + +.theme-overlay::before { + background: #1696e7 none repeat scroll 0 0; + content: ""; + height: 100%; + left: 0; + opacity: 0.6; + position: absolute; + top: 0; + width: 100% +} + +.overlay { + position: relative; + z-index: 0 +} + +.overlay::before { + position: absolute; + content: ""; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1 +} + +.overlay2 { + position: relative; + z-index: 0 +} + +.overlay2::before { + position: absolute; + content: ""; + background-color: #2E2200; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; + opacity: 0.5 +} + +.section-padding { + padding-top: 120px; + padding-bottom: 120px +} + +.separator { + border-top: 1px solid #f2f2f2 +} + +.mb-90 { + margin-bottom: 90px +} + +@media (max-width: 767px) { + .mb-90 { + margin-bottom: 30px + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .mb-90 { + margin-bottom: 45px + } +} + +.owl-carousel .owl-nav div { + background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0; + height: 40px; + left: 20px; + line-height: 40px; + font-size: 22px; + color: #646464; + opacity: 1; + visibility: visible; + position: absolute; + text-align: center; + top: 50%; + transform: translateY(-50%); + transition: all 0.3s ease 0s; + width: 40px +} + +.owl-carousel .owl-nav div.owl-next { + left: auto; + right: -30px +} + +.owl-carousel .owl-nav div.owl-next i { + position: relative; + right: 0; + top: 1px +} + +.owl-carousel .owl-nav div.owl-prev i { + position: relative; + right: 1px; + top: 0px +} + +.owl-carousel:hover .owl-nav div { + opacity: 1; + visibility: visible +} + +.owl-carousel:hover .owl-nav div:hover { + color: #fff; + background: #ff3500 +} + +.btn { + background: #c6a16e; + -moz-user-select: none; + text-transform: uppercase; + color: #fff; + cursor: pointer; + display: inline-block; + font-size: 14px; + font-weight: 500; + letter-spacing: 1px; + line-height: 0; + margin-bottom: 0; + padding: 27px 44px; + border-radius: 5px; + margin: 10px; + cursor: pointer; + transition: color 0.4s linear; + position: relative; + z-index: 1; + border: 0; + overflow: hidden; + margin: 0 +} + +.btn::before { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #e6373d; + z-index: 1; + border-radius: 5px; + transition: transform 0.5s; + transition-timing-function: ease; + transform-origin: 0 0; + transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); + transform: scaleX(0); + border-radius: 0 +} + +.btn:hover::before { + transform: scaleX(1); + color: #fff !important; + z-index: -1 +} + +.header-btn { + text-transform: uppercase +} + +.btn.focus, +.btn:focus { + outline: 0; + box-shadow: none +} + +.border-btn { + border: 2px solid #c6a16e; + color: #c6a16e; + background: none; + -moz-user-select: none; + padding: 28px 50px; + margin: 10px; + text-transform: uppercase; + cursor: pointer; + display: inline-block; + font-size: 14px; + font-weight: 500; + letter-spacing: 1px; + margin-bottom: 0; + border-radius: 5px; + position: relative; + transition: color 0.4s linear; + position: relative; + overflow: hidden; + margin: 0 +} + +.border-btn::before { + border: 2px solid transparent; + content: ""; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #c6a16e; + z-index: -1; + transition: transform 0.5s; + transition-timing-function: ease; + transform-origin: 0 0; + transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); + transform: scaleY(0); + border-radius: 0 +} + +.border-btn:hover::before { + transform: scaleY(1); + order: 2px solid transparent +} + +.send-btn { + background: #c6a16e; + color: #fff; + font-size: 14px; + width: 100%; + height: 55px; + border: none; + border-radius: 5px; + cursor: pointer; + transition: color 0.4s linear; + position: relative; + overflow: hidden; + z-index: 1 +} + +.send-btn::before { + border: 2px solid transparent; + content: ""; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #e6373d; + color: #c6a16e; + z-index: -1; + transition: transform 0.5s; + transition-timing-function: ease; + transform-origin: 0 0; + transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); + transform: scaleX(0) +} + +.send-btn:hover::before { + transform: scaleY(1); + order: 2px solid transparent; + color: red +} + +.breadcrumb>.active { + color: #888 +} + +#scrollUp { + background: #c6a16e; + height: 50px; + width: 50px; + right: 31px; + bottom: 18px; + color: #fff; + font-size: 20px; + text-align: center; + border-radius: 50%; + line-height: 48px; + border: 2px solid transparent +} + +@media (max-width: 767px) { + #scrollUp { + right: 16px + } +} + +#scrollUp:hover { + color: #fff +} + +.sticky-bar { + left: 0; + margin: auto; + position: fixed; + top: 0; + width: 100%; + -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + z-index: 9999; + -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; + animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; + -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + background: #fff +} + +.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 +} + +.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 +} + +.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 +} + +.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 +} + +.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 +} + +.pt-260 { + padding-top: 260px +} + +.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 +} + +.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-95 { + padding-left: 95px +} + +.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 +} + +.pl-130 { + padding-left: 130px +} + +.pl-135 { + padding-left: 135px +} + +.pl-140 { + padding-left: 140px +} + +.pl-145 { + padding-left: 145px +} + +.pl-150 { + padding-left: 150px +} + +.pl-155 { + padding-left: 155px +} + +.pl-160 { + padding-left: 160px +} + +.pl-165 { + padding-left: 165px +} + +.pl-170 { + padding-left: 170px +} + +.pl-175 { + padding-left: 175px +} + +.pl-180 { + padding-left: 180px +} + +.pl-185 { + padding-left: 185px +} + +.pl-190 { + padding-left: 190px +} + +.pl-195 { + padding-left: 195px +} + +.pl-200 { + padding-left: 200px +} + +.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 +} + +.pr-110 { + padding-right: 110px +} + +.pr-115 { + padding-right: 115px +} + +.pr-120 { + padding-right: 120px +} + +.pr-125 { + padding-right: 125px +} + +.pr-130 { + padding-right: 130px +} + +.pr-135 { + padding-right: 135px +} + +.pr-140 { + padding-right: 140px +} + +.pr-145 { + padding-right: 145px +} + +.pr-150 { + padding-right: 150px +} + +.pr-155 { + padding-right: 155px +} + +.pr-160 { + padding-right: 160px +} + +.pr-165 { + padding-right: 165px +} + +.pr-170 { + padding-right: 170px +} + +.pr-175 { + padding-right: 175px +} + +.pr-180 { + padding-right: 180px +} + +.pr-185 { + padding-right: 185px +} + +.pr-190 { + padding-right: 190px +} + +.pr-195 { + padding-right: 195px +} + +.pr-200 { + padding-right: 200px +} + +.bounce-animate { + animation-name: float-bob; + animation-duration: 2s; + animation-iteration-count: infinite; + -moz-animation-name: float-bob; + -moz-animation-duration: 2s; + -moz-animation-iteration-count: infinite; + -moz-animation-timing-function: linear; + -ms-animation-name: float-bob; + -ms-animation-duration: 2s; + -ms-animation-iteration-count: infinite; + -ms-animation-timing-function: linear; + -o-animation-name: float-bob; + -o-animation-duration: 2s; + -o-animation-iteration-count: infinite; + -o-animation-timing-function: linear +} + +@-webkit-keyframes float-bob { + 0% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px) + } + 50% { + -webkit-transform: translateY(-10px); + transform: translateY(-10px) + } + 100% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px) + } +} + +.heartbeat { + animation: heartbeat 1s infinite alternate +} + +@-webkit-keyframes heartbeat { + to { + -webkit-transform: scale(1.03); + transform: scale(1.03) + } +} + +.rotateme { + -webkit-animation-name: rotateme; + animation-name: rotateme; + -webkit-animation-duration: 30s; + animation-duration: 30s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + animation-timing-function: linear +} + +@keyframes rotateme { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg) + } +} + +@-webkit-keyframes rotateme { + from { + -webkit-transform: rotate(0deg) + } + to { + -webkit-transform: rotate(360deg) + } +} + +.preloader { + background-color: #f7f7f7; + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 999999; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s; + margin: 0 auto +} + +.preloader .preloader-circle { + width: 100px; + height: 100px; + position: relative; + border-style: solid; + border-width: 3px; + border-top-color: #c6a16e; + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + z-index: 10; + border-radius: 50%; + -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15); + box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15); + background-color: #ffffff; + -webkit-animation: zoom 2000ms infinite ease; + animation: zoom 2000ms infinite ease; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s +} + +.preloader .preloader-circle2 { + border-top-color: #0078ff +} + +.preloader .preloader-img { + position: absolute; + top: 50%; + z-index: 200; + left: 0; + right: 0; + margin: 0 auto; + text-align: center; + display: inline-block; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + padding-top: 6px; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s +} + +.preloader .preloader-img img { + max-width: 55px +} + +.preloader .pere-text strong { + font-weight: 800; + color: #dca73a; + text-transform: uppercase +} + +@-webkit-keyframes zoom { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } +} + +@keyframes zoom { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } +} + +.section-padding2 { + padding-top: 200px; + padding-bottom: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padding2 { + padding-top: 200px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding2 { + padding-top: 200px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding2 { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media (max-width: 767px) { + .section-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +.support-padding { + padding-top: 200px; + padding-bottom: 100px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .support-padding { + padding-top: 200px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .support-padding { + padding-top: 200px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .support-padding { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .support-padding { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media (max-width: 767px) { + .support-padding { + padding-top: 70px; + padding-bottom: 70px + } +} + +.team-padding { + padding-top: 160px; + padding-bottom: 130px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .team-padding { + padding-top: 160px; + padding-bottom: 130px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .team-padding { + padding-top: 110px; + padding-bottom: 80px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .team-padding { + padding-top: 100px; + padding-bottom: 80px + } +} + +@media (max-width: 767px) { + .team-padding { + padding-top: 100px; + padding-bottom: 80px + } +} + +.section-padding30 { + padding-top: 200px; + padding-bottom: 170px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padding30 { + padding-top: 200px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding30 { + padding-top: 150px; + padding-bottom: 120px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding30 { + padding-top: 100px; + padding-bottom: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding30 { + padding-top: 60px; + padding-bottom: 28px + } +} + +@media (max-width: 767px) { + .section-padding30 { + padding-top: 60px; + padding-bottom: 28px + } +} + +.place-padding { + padding-top: 170px; + padding-bottom: 170px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .place-padding { + padding-top: 170px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .place-padding { + padding-top: 120px; + padding-bottom: 120px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .place-padding { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .place-padding { + padding-top: 28px; + padding-bottom: 28px + } +} + +@media (max-width: 767px) { + .place-padding { + padding-top: 28px; + padding-bottom: 28px + } +} + +.servic-padding { + padding-top: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .servic-padding { + padding-top: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .servic-padding { + padding-top: 150px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .servic-padding { + padding-top: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .servic-padding { + padding-top: 70px + } +} + +@media (max-width: 767px) { + .servic-padding { + padding-top: 70px + } +} + +.section-padding3 { + padding-top: 200px; + padding-bottom: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padding3 { + padding-top: 200px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding3 { + padding-top: 150px; + padding-bottom: 150px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding3 { + padding-top: 50px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding3 { + padding-top: 60px; + padding-bottom: 60px + } +} + +@media (max-width: 767px) { + .section-padding3 { + padding-top: 40px; + padding-bottom: 70px + } +} + +.section-paddingt { + padding-top: 185px; + padding-bottom: 170px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-paddingt { + padding-top: 185px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-paddingt { + padding-top: 150px; + padding-bottom: 120px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-paddingt { + padding-top: 100px; + padding-bottom: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-paddingt { + padding-top: 60px; + padding-bottom: 28px + } +} + +@media (max-width: 767px) { + .section-paddingt { + padding-top: 60px; + padding-bottom: 28px + } +} + +.section-paddingt2 { + padding-bottom: 170px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-paddingt2 { + padding-bottom: 170px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-paddingt2 { + padding-bottom: 120px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-paddingt2 { + padding-bottom: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-paddingt2 { + padding-bottom: 28px + } +} + +@media (max-width: 767px) { + .section-paddingt2 { + padding-bottom: 28px + } +} + +.trusted-padding { + padding-top: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .trusted-padding { + padding-top: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .trusted-padding { + padding-top: 100px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .trusted-padding { + padding-top: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .trusted-padding { + padding-top: 0px + } +} + +@media (max-width: 767px) { + .trusted-padding { + padding-top: 0px + } +} + +.section-padd-top30 { + padding-top: 170px; + padding-bottom: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padd-top30 { + padding-top: 170px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padd-top30 { + padding-top: 170px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padd-top30 { + padding-top: 100px; + padding-bottom: 160px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padd-top30 { + padding-top: 50px; + padding-bottom: 90px + } +} + +@media (max-width: 767px) { + .section-padd-top30 { + padding-top: 35px; + padding-bottom: 90px + } +} + +.testimonial-padding { + padding-top: 157px; + padding-bottom: 157px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .testimonial-padding { + padding-top: 157px; + padding-bottom: 157px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .testimonial-padding { + padding-top: 120px; + padding-bottom: 120px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-padding { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .testimonial-padding { + padding-top: 80px; + padding-bottom: 60px + } +} + +@media (max-width: 767px) { + .testimonial-padding { + padding-top: 80px; + padding-bottom: 60px + } +} + +.w-padding { + padding-top: 80px; + padding-bottom: 80px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .w-padding { + padding-top: 80px; + padding-bottom: 80px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .w-padding { + padding-top: 80px; + padding-bottom: 80px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .w-padding { + padding-top: 80px; + padding-bottom: 80px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .w-padding { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media (max-width: 767px) { + .w-padding { + padding-top: 70px; + padding-bottom: 70px + } +} + +.footer-padding { + padding-top: 170px; + padding-bottom: 170px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .footer-padding { + padding-top: 170px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .footer-padding { + padding-top: 170px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .footer-padding { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .footer-padding { + padding-top: 80px; + padding-bottom: 60px + } +} + +@media (max-width: 767px) { + .footer-padding { + padding-top: 80px; + padding-bottom: 60px + } +} + +.white-bg { + background: #ffffff +} + +.gray-bg { + background: #f5f5f5 +} + +.gray-bg { + background: #f7f7fd +} + +.white-bg { + background: #fff +} + +.black-bg { + background: #16161a +} + +.theme-bg { + background: #c6a16e +} + +.brand-bg { + background: #f1f4fa +} + +.testimonial-bg { + background: #f9fafc +} + +.white-color { + color: #fff +} + +.black-color { + color: #16161a +} + +.theme-color { + color: #c6a16e +} + +.header-area .header-top { + padding: 13px 0 +} + +.header-area .header-top .header-info-left ul li { + color: #fff; + display: inline-block; + margin-right: 33px; + padding-right: 33px; + border-right: 1px solid #fff; + font-size: 14px +} + +.header-area .header-top .header-info-left ul li:last-child { + border-right: 0; + margin-right: 0; + padding-right: 0px +} + +.header-area .header-top .header-info-right ul li { + color: #fff; + font-size: 14px +} + +.main-header { + position: relative; + z-index: 3 +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .main-header .header-bottom { + padding: 18px 0 + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .main-header .header-bottom { + padding: 18px 0 + } +} + +@media (max-width: 767px) { + .main-header .header-bottom { + padding: 18px 0 + } +} + +.main-header .main-menu ul li { + display: inline-block; + position: relative; + z-index: 1 +} + +.main-header .main-menu ul li a { + color: #021a47; + font-weight: 500; + padding: 28px 19px; + display: block; + font-size: 16px; + position: relative; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.main-header .main-menu ul li:hover>a { + color: #fff; + background: #c6a16e +} + +.main-header .main-menu ul ul.submenu { + position: absolute; + width: 170px; + background: #fff; + left: 0; + top: 120%; + visibility: hidden; + opacity: 0; + box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); + padding: 17px 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.main-header .main-menu ul ul.submenu>li { + margin-left: 7px; + display: block +} + +.main-header .main-menu ul ul.submenu>li>a { + padding: 6px 10px !important; + font-size: 14px; + color: #0b1c39 +} + +.main-header .main-menu ul ul.submenu>li>a:hover { + color: #c6a16e; + background: none +} + +.main-header ul>li:hover>ul.submenu { + visibility: visible; + opacity: 1; + top: 100% +} + +.header-sticky ul li a { + padding: 10px 19px +} + +.header-sticky.sticky-bar.sticky .main-menu ul>li>a { + padding: 20px 20px +} + +.slicknav_menu .slicknav_icon-bar { + background-color: #c6a16e !important +} + +.header-sticky.sticky-bar.sticky .header-btn .get-btn { + padding: 20px 20px +} + +.header-area .slicknav_btn { + top: -27px +} + +.slicknav_menu .slicknav_nav a:hover { + background: transparent; + color: #c6a16e +} + +.slicknav_menu { + background: transparent; + margin-top: 0px !important +} + +.mobile_menu { + position: absolute; + right: 0px; + width: 100%; + z-index: 99 +} + +.slider-height { + min-height: 830px; + background-repeat: no-repeat; + background-position: center center +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .slider-height { + min-height: 600px + } +} + +@media (max-width: 767px) { + .slider-height { + min-height: 550px + } +} + +.slider-height2 { + min-height: 390px; + background-repeat: no-repeat; + background-position: center center +} + +@media (max-width: 767px) { + .slider-height2 { + min-height: 300px + } +} + +.btn1 { + padding: 25px 0px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .btn1 { + padding: 25px 0 + } +} + +.slider-area { + margin-top: -1px +} + +.slider-area .hero__caption { + padding: 39px 70px 56px 68px; + margin-left: -25px; + margin-right: 25px; + position: relative; + overflow: hidden +} + +@media (max-width: 767px) { + .slider-area .hero__caption { + padding: 39px 24px 55px 44px + } +} + +.slider-area .hero__caption::after { + position: absolute; + content: ""; + background-image: url(../img/hero/hero_arrow.png); + left: 0; + right: 0; + bottom: -26px; + height: 57px; + background-repeat: no-repeat; + background-size: cover; + animation: slide1 1s ease-in-out infinite; + margin-left: 0px +} + +@keyframes slide1 { + 0%, + 100% { + transform: translate(0, 0) + } + 50% { + transform: translate(5px, 0); + -webkit-transform: translate(5px, 0); + -moz-transform: translate(5px, 0); + -ms-transform: translate(5px, 0); + -o-transform: translate(5px, 0) + } +} + +.slider-area .hero__caption h1 { + font-size: 70px; + font-weight: 900; + margin-bottom: 14px; + color: #ffffff; + font-family: 'Barlow', sans-serif; + line-height: 1.2; + text-transform: uppercase +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .slider-area .hero__caption h1 { + font-size: 60px; + line-height: 1.2 + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .slider-area .hero__caption h1 { + font-size: 50px; + line-height: 1.2 + } +} + +@media (max-width: 767px) { + .slider-area .hero__caption h1 { + font-size: 35px; + line-height: 1.2 + } +} + +.slider-area .hero__caption p { + font-size: 18px; + line-height: 30px; + margin-bottom: 39px; + color: #ffffff; + margin-bottom: 25px; + padding-right: 49px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .slider-area .hero__caption p { + padding-right: 0px + } +} + +@media (max-width: 767px) { + .slider-area .hero__caption p { + padding-right: 0px + } +} + +.hero-overly { + position: relative; + z-index: 1 +} + +.hero-overly::before { + position: absolute; + content: ""; + background-color: rgba(1, 10, 28, 0.3); + width: 100%; + height: 100%; + left: 0; + top: 0; + bottom: 0; + right: 0; + z-index: -1; + background-repeat: no-repeat +} + +.slider-area .hero-cap h2 { + color: #fff; + font-size: 50px; + font-weight: 900; + text-transform: uppercase +} + +.services-area { + flex-wrap: wrap +} + +.services-area .single-services { + padding: 65px 80px 70px 80px; + position: relative; + z-index: 1; + width: 33.33%; + -webkit-transition: all .4s ease-out 0s; + -moz-transition: all .4s ease-out 0s; + -ms-transition: all .4s ease-out 0s; + -o-transition: all .4s ease-out 0s; + transition: all .4s ease-out 0s; + background: #fafafa +} + +.services-area .single-services:hover { + background: #fff +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-area .single-services { + padding: 45px 33px 70px 42px + } +} + +@media (max-width: 767px) { + .services-area .single-services { + padding: 45px 33px 70px 42px + } +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .services-area .single-services { + width: 33.33% + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .services-area .single-services { + width: 50% + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-area .single-services { + width: 50% + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-area .single-services { + width: 50% + } +} + +@media (max-width: 767px) { + .services-area .single-services { + width: 100% + } +} + +.services-area .single-services .services-icon img { + margin-bottom: 19px +} + +.services-area .single-services .services-caption h4 { + color: #04080f; + font-size: 25px; + font-weight: 700; + margin-bottom: 25px; + display: inline-block; + position: relative +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .services-area .single-services .services-caption h4 { + font-size: 22px + } +} + +@media (max-width: 767px) { + .services-area .single-services .services-caption h4 { + font-size: 19px + } +} + +.services-area .single-services .services-caption h4::before { + position: absolute; + content: ""; + width: 100%; + height: 9px; + background: #ffe7ca; + left: 0; + bottom: 0; + z-index: -1 +} + +.services-area .single-services .services-caption p { + color: #021a47; + font-size: 16px; + line-height: 25px +} + +.safe-industery-area .safe-caption h2 { + color: #2c234d; + font-size: 50px; + font-weight: 900; + line-height: 1.3; + margin-bottom: 55px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .safe-industery-area .safe-caption h2 { + font-size: 37px + } +} + +@media (max-width: 767px) { + .safe-industery-area .safe-caption h2 { + font-size: 27px; + margin-bottom: 40px + } +} + +.safe-industery-area .safe-caption .safe-pera-one { + color: #2c234d; + font-size: 18px; + font-weight: 500; + line-height: 1.5; + margin-bottom: 36px; + font-size: 18px; + padding-right: 76px +} + +@media (max-width: 767px) { + .safe-industery-area .safe-caption .safe-pera-one { + margin-bottom: 40px; + padding-right: 5px + } +} + +.safe-industery-area .safe-caption .safe-pera-two { + color: #677294; + line-height: 1.5; + margin-bottom: 35px; + padding-right: 76px +} + +@media (max-width: 767px) { + .safe-industery-area .safe-caption .safe-pera-two { + margin-bottom: 40px; + padding-right: 5px + } +} + +.safe-industery-area .safe-caption .safe-pera-three { + color: #677294; + line-height: 1.5; + margin-bottom: 75px; + padding-right: 76px +} + +@media (max-width: 767px) { + .safe-industery-area .safe-caption .safe-pera-three { + margin-bottom: 50px; + padding-right: 5px + } +} + +.safe-industery-area .safe-caption-right { + position: relative +} + +.safe-industery-area .safe-caption-right .safe-img img { + width: 100% +} + +.safe-industery-area .safe-caption-right .safe-alert-box { + position: absolute; + left: -68px; + bottom: 100px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .safe-industery-area .safe-caption-right .safe-alert-box { + left: 0px + } +} + +.safe-industery-area .safe-caption-right .safe-alert-box .safe-alert { + padding: 50px 50px 50px 50px; + background-repeat: no-repeat; + background-size: cover; + position: relative; + overflow: hidden +} + +.safe-industery-area .safe-caption-right .safe-alert-box .safe-alert::after { + position: absolute; + content: ""; + background-image: url(../img/safe_industery/arrow_bottom.png); + left: 0; + right: 0; + bottom: 0; + height: 28px; + background-repeat: no-repeat; + background-size: cover; + animation: slide1 1s ease-in-out infinite; + margin-left: 0px +} + +@keyframes slide1 { + 0%, + 100% { + transform: translate(0, 0) + } + 50% { + transform: translate(5px, 0); + -webkit-transform: translate(5px, 0); + -moz-transform: translate(5px, 0); + -ms-transform: translate(5px, 0); + -o-transform: translate(5px, 0) + } +} + +.safe-industery-area .safe-caption-right .safe-alert-box .safe-alert img { + margin-bottom: 20px +} + +.safe-industery-area .safe-caption-right .safe-alert-box .safe-alert h4 { + color: #fff; + margin-bottom: 15px +} + +.safe-industery-area .safe-caption-right .safe-alert-box .safe-alert p { + color: #fff; + line-height: 2.2 +} + +.gallery-area .gallery-box .single-gallery { + z-index: 0; + position: relative +} + +.gallery-area .gallery-box .single-gallery::before { + position: absolute; + width: 100%; + height: 100%; + bottom: 0; + content: "" +} + +.gallery-area .gallery-box .single-gallery::after { + content: ""; + background: #f27420; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: 1; + visibility: hidden; + opacity: 0; + transition: .4s; + -webkit-transition: .4s; + -moz-transition: .4s; + -ms-transition: .4s; + -o-transition: .4s +} + +.gallery-area .gallery-box .single-gallery .gallery-img img { + width: 100% +} + +.gallery-area .gallery-box .single-gallery .g-caption1 { + position: absolute; + bottom: 15px; + left: 32px +} + +.gallery-area .gallery-box .single-gallery .g-caption1 span { + color: #f27420; + font-size: 40px; + font-weight: 700; + margin-bottom: 5px; + display: block +} + +.gallery-area .gallery-box .single-gallery .g-caption1 h4 { + color: #fff +} + +.gallery-area .gallery-box .single-gallery .g-caption2 { + position: absolute; + z-index: 5; + top: 60%; + left: 32px; + transform: translateY(-60%); + -webkit-transform: translateY(-60%); + -moz-transform: translateY(-60%); + -ms-transform: translateY(-60%); + -o-transform: translateY(-60%); + -webkit-transition: all .4s ease-out 0s; + -moz-transition: all .4s ease-out 0s; + -ms-transition: all .4s ease-out 0s; + -o-transition: all .4s ease-out 0s; + transition: all .4s ease-out 0s; + opacity: 0; + visibility: hidden +} + +.gallery-area .gallery-box .single-gallery .g-caption2 span { + color: #fff; + font-size: 40px; + font-weight: 700; + margin-bottom: 5px; + display: block +} + +.gallery-area .gallery-box .single-gallery .g-caption2 h4 { + color: #fff; + margin-bottom: 20px +} + +.gallery-area .gallery-box .single-gallery .g-caption2 p { + color: #fff; + margin-bottom: 30px +} + +.gallery-area .gallery-box .single-gallery .g-caption2 .read-btn { + color: #fff; + border-bottom: 2px solid #f59758 +} + +.gallery-box:hover .single-gallery::after { + visibility: visible; + opacity: 1 +} + +.gallery-box:hover .single-gallery .g-caption2 { + top: 55%; + opacity: 1; + visibility: visible +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .team-info { + padding-top: 16px + } +} + +.team-info h2 { + color: #2c234d; + font-weight: 800; + font-size: 50px; + line-height: 1.1; + margin-bottom: 38px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .team-info h2 { + font-size: 41px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .team-info h2 { + font-size: 41px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .team-info h2 { + font-size: 41px + } +} + +@media (max-width: 767px) { + .team-info h2 { + font-size: 41px + } +} + +.team-info p { + color: #677294; + line-height: 2; + margin-bottom: 50px; + padding-right: 36px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .team-info p { + padding-right: 0px + } +} + +.single-team { + position: relative +} + +.single-team::before { + position: absolute; + content: ""; + width: 100%; + height: 40%; + bottom: 0; + background-size: cover; + left: 0; + right: 0 +} + +.single-team .team-img { + overflow: hidden +} + +.single-team .team-img img { + width: 100%; + transform: rotate(0deg) scale(1); + transition: all 0.6s ease-out 0s +} + +.single-team .team-caption { + position: absolute; + bottom: 16px; + left: 38px +} + +.single-team .team-caption span a { + color: #fff; + font-size: 25px; + font-weight: 500; + font-family: "Josefin Sans", sans-serif; + display: block +} + +.single-team .team-caption p { + color: #fff +} + +.single-team:hover .team-img img { + transform: rotate(1deg) scale(1.1) +} + +.david-droga-area .single-david .david-img { + overflow: hidden +} + +.david-droga-area .single-david .david-img img { + width: 100%; + transform: scale(1); + -webkit-transition: all .7s ease-out 0s; + -moz-transition: all .7s ease-out 0s; + -ms-transition: all .7s ease-out 0s; + -o-transition: all .7s ease-out 0s; + transition: all .7s ease-out 0s +} + +.david-droga-area .single-david .david-captoin { + padding: 40px 57px 0px 60px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .david-droga-area .single-david .david-captoin { + padding: 10px 10px 0px 10px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .david-droga-area .single-david .david-captoin { + padding: 10px 10px 0px 10px + } +} + +@media (max-width: 767px) { + .david-droga-area .single-david .david-captoin { + padding: 10px 10px 0px 10px + } +} + +.david-droga-area .single-david .david-captoin .david-info li { + display: inline-block; + margin-right: 14px; + padding-right: 14px; + border-right: 1px solid #222; + line-height: 1; + margin-bottom: 16px +} + +@media (max-width: 767px) { + .david-droga-area .single-david .david-captoin .david-info li { + margin-right: 1px; + padding-right: 5px; + padding-right: 12px + } +} + +.david-droga-area .single-david .david-captoin .david-info li:last-child { + margin-right: 0px; + padding-right: 0px; + border-right: 0 +} + +.david-droga-area .single-david .david-captoin h2 a { + color: #282828; + font-weight: 700; + font-size: 25px; + line-height: 1.5; + padding-right: 56px; + margin-bottom: 17px; + text-decoration: none; + display: block +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .david-droga-area .single-david .david-captoin h2 a { + padding-right: 6px + } +} + +@media (max-width: 767px) { + .david-droga-area .single-david .david-captoin h2 a { + padding-right: 0px + } +} + +.david-droga-area .single-david .david-captoin a { + color: #282828; + font-size: 16px +} + +.david-droga-area .single-david .david-captoin a:hover { + color: #c6a16e +} + +.david-droga-area .single-david .david-captoin a.d-btn { + position: relative +} + +.david-droga-area .single-david .david-captoin a.d-btn::before { + content: ""; + position: absolute; + background: #282828; + width: 100%; + height: 1px; + bottom: -1px; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.david-droga-area .single-david .david-captoin a:hover::before { + background: #c6a16e +} + +.david-img:hover .david-img img { + transform: scale(1.1) +} + +.wantToWork-area { + position: relative; + z-index: 0; + background: #c6a16e; + overflow: hidden +} + +.wantToWork-area .wantToWork-caption h2 { + color: #fff; + font-size: 50px; + font-weight: 700; + line-height: 1.5; + margin: 0 +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .wantToWork-area .wantToWork-caption h2 { + font-size: 32px + } +} + +@media (max-width: 767px) { + .wantToWork-area .wantToWork-caption h2 { + font-size: 27px + } +} + +.wantToWork-area .wantToWork-btn { + padding-right: 50px; + position: relative; + bottom: 21px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .wantToWork-area .wantToWork-btn { + float: left; + margin-top: 59px + } +} + +@media (max-width: 767px) { + .wantToWork-area .wantToWork-btn { + float: left; + margin-top: 59px + } +} + +.wantToWork-area::after { + position: absolute; + content: ""; + background-image: url(../img/icon/footer_arrow.png); + left: 0; + right: 0; + bottom: 0; + height: 28px; + background-repeat: no-repeat; + background-size: cover; + animation: slide1 1s ease-in-out infinite; + margin-left: 0px +} + +@keyframes slide1 { + 0%, + 100% { + transform: translate(0, 0) + } + 50% { + transform: translate(5px, 0); + -webkit-transform: translate(5px, 0); + -moz-transform: translate(5px, 0); + -ms-transform: translate(5px, 0); + -o-transform: translate(5px, 0) + } +} + +.testimonial-area .testimonial-caption .testimonial-top-cap img { + margin-bottom: 50px; + width: auto; + display: inline-block +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-area .testimonial-caption .testimonial-top-cap img { + margin-bottom: 30px + } +} + +@media (max-width: 767px) { + .testimonial-area .testimonial-caption .testimonial-top-cap img { + margin-bottom: 30px + } +} + +.testimonial-area .testimonial-caption .testimonial-top-cap p { + color: #fff; + font-weight: 500; + line-height: 1.5; + padding: 0 3px; + margin-bottom: 50px; + font-size: 30px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + font-size: 20px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + font-size: 20px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + font-size: 18px + } +} + +@media (max-width: 767px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + font-size: 18px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + margin-bottom: 30px + } +} + +@media (max-width: 767px) { + .testimonial-area .testimonial-caption .testimonial-top-cap p { + margin-bottom: 30px + } +} + +.testimonial-area .testimonial-caption .testimonial-founder .founder-text { + margin-left: 20px +} + +.testimonial-area .testimonial-caption .testimonial-founder .founder-text span { + color: #fff +} + +.testimonial-area .testimonial-caption .testimonial-founder .founder-text p { + color: #fff; + font-weight: 500; + line-height: 1.5 +} + +.h1-testimonial-active button.slick-arrow { + position: absolute; + top: 50%; + left: -133px; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + border: 0; + padding: 0; + z-index: 2; + height: 45px; + width: 45px; + line-height: 15px; + border-radius: 50%; + cursor: pointer; + font-size: 20px; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s; + color: #fff; + opacity: 0; + visibility: hidden; + background: #c6a16e +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .h1-testimonial-active button.slick-arrow { + left: -45px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .h1-testimonial-active button.slick-arrow { + left: -45px + } +} + +.h1-testimonial-active button.slick-next { + left: auto; + right: -133px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .h1-testimonial-active button.slick-next { + right: -45px + } +} + +.h1-testimonial-active:hover button.slick-prev { + left: -120px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .h1-testimonial-active:hover button.slick-prev { + left: -35px + } +} + +.h1-testimonial-active:hover button.slick-next { + right: -120px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .h1-testimonial-active:hover button.slick-next { + right: -37px + } +} + +.h1-testimonial-active:hover button { + opacity: 1; + visibility: visible +} + +.t-bg { + background: #021a47 +} + +.slick-initialized .slick-slide { + outline: 0 +} + +.blog-area .single-blog { + box-shadow: 1.395px 19.951px 38px 0px rgba(0, 0, 0, 0.05); + transition: .4s +} + +.blog-area .single-blog:hover .blog-img img { + transform: rotate(1deg) scale(1.1) +} + +.blog-area .single-blog .blog-img { + overflow: hidden +} + +.blog-area .single-blog .blog-img img { + width: 100%; + transform: rotate(0deg) scale(1); + -webkit-transition: all .4s ease-out 0s; + -moz-transition: all .4s ease-out 0s; + -ms-transition: all .4s ease-out 0s; + -o-transition: all .4s ease-out 0s; + transition: all .4s ease-out 0s +} + +.blog-area .single-blog .blog-caption { + padding: 22px 40px 20px 40px +} + +@media (max-width: 767px) { + .blog-area .single-blog .blog-caption { + padding: 22px 22px 20px 20px + } +} + +.blog-area .single-blog .blog-caption .blog-cap-top span { + color: #fff; + background: #c6a16e; + padding: 4px 13px; + text-transform: uppercase; + font-size: 14px; + font-weight: 300; + border-radius: 5px +} + +.blog-area .single-blog .blog-caption .blog-cap-top ul li { + color: #c7c7c7; + font-size: 14px; + font-family: 'Lato', sans-serif +} + +.blog-area .single-blog .blog-caption .blog-cap-top ul li a { + color: #c6a16e; + font-size: 14px +} + +.blog-area .single-blog .blog-caption .blog-cap-mid p a { + color: #444444; + font-size: 18px; + font-family: 'Lato', sans-serif; + line-height: 28px; + margin-bottom: 30px +} + +@media (max-width: 767px) { + .blog-area .single-blog .blog-caption .blog-cap-mid p a { + font-size: 14px + } +} + +.blog-area .single-blog .blog-caption .blog-cap-mid p a:hover { + color: #c6a16e +} + +.blog-area .single-blog .blog-caption .blog-cap-bottom { + padding-top: 20px; + border-top: 1px solid #f9f9f9 +} + +.blog-area .single-blog .blog-caption .blog-cap-bottom span { + color: #adadad; + font-size: 14px +} + +.blog-area .single-blog .blog-caption .blog-cap-bottom span img { + margin-right: 5px +} + +.pb-168 { + padding-bottom: 168px +} + +.footer-area .footer-social2 a:hover { + background: #c6a16e; + color: #7f7f7f; + border: 1px solid transparent +} + +.footer-area .footer-pera p { + color: #868c98; + padding-right: 52px; + font-size: 16px; + margin-bottom: 50px; + line-height: 1.8 +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .footer-area .footer-pera p { + padding-right: 0px + } +} + +.footer-area .footer-pera.footer-pera2 p { + padding: 0 +} + +.footer-area .footer-tittle h4 { + color: #ffffff; + font-size: 20px; + margin-bottom: 29px; + font-weight: 400; + text-transform: uppercase +} + +.footer-area .footer-tittle ul li { + color: #868c98; + margin-bottom: 9px +} + +.footer-area .footer-tittle ul li a { + color: #868c98; + font-weight: 300 +} + +.footer-area .footer-tittle ul li a:hover { + color: #c6a16e; + padding-left: 5px +} + +.footer-area .footer-form { + margin-top: 40px +} + +.footer-area .footer-form form { + position: relative +} + +.footer-area .footer-form form input { + width: 100%; + height: 43px; + padding: 10px 20px; + border: 1px solid #fff +} + +.footer-area .footer-form form .form-icon button { + position: absolute; + top: 0; + right: 0; + background: none; + border: 0; + cursor: pointer; + padding: 13px 22px; + background: #c6a16e; + line-height: 1 +} + +.footer-area .info.error { + color: #c6a16e +} + +.footer-bg { + background: #010b1d +} + +.footer-bottom-area .footer-border { + border-top: 1px solid #2d3544; + padding: 33px 0px 20px +} + +.footer-bottom-area .footer-copy-right p { + color: #888888; + font-weight: 300; + font-size: 16px; + line-height: 2; + margin-bottom: 12px +} + +.footer-bottom-area .footer-copy-right p i { + color: #c6a16e +} + +.footer-bottom-area .footer-copy-right p a { + color: #c6a16e +} + +.footer-bottom-area .footer-copy-right p a:hover { + color: #fff +} + +@media (max-width: 767px) { + .footer-bottom-area .footer-social { + float: left + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .footer-bottom-area .footer-social { + float: left + } +} + +.footer-bottom-area .footer-social a i { + color: #888888; + margin-left: 12px; + font-size: 14px; + -webkit-transition: all .4s ease-out 0s; + -moz-transition: all .4s ease-out 0s; + -ms-transition: all .4s ease-out 0s; + -o-transition: all .4s ease-out 0s; + transition: all .4s ease-out 0s +} + +.footer-bottom-area .footer-social a i:hover { + color: #c6a16e +} + +.hero-caption span { + color: #fff; + font-size: 16px; + display: block; + margin-bottom: 24px; + font-weight: 600; + padding-left: 95px; + position: relative +} + +.hero-caption span::before { + position: absolute; + content: ""; + width: 75px; + height: 3px; + background: #c6a16e; + left: 0; + top: 52%; + transform: translateY(-50%) +} + +.hero-caption h2 { + color: #fff; + font-size: 50px; + font-weight: 700 +} + +.latest-blog-area .area-heading { + margin-bottom: 70px +} + +.blog_area a { + color: "Josefin Sans", sans-serif !important; + text-decoration: none; + transition: .4s +} + +.blog_area a:hover, +.blog_area a :hover { + background: -webkit-linear-gradient(131deg, #c6a16e 0%, #c6a16e 99%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-decoration: none; + transition: .4s +} + +.single-blog { + overflow: hidden; + margin-bottom: 30px +} + +.single-blog:hover { + box-shadow: 0px 10px 20px 0px rgba(42, 34, 123, 0.1) +} + +.single-blog .thumb { + overflow: hidden; + position: relative +} + +.single-blog .thumb:after { + content: ''; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #000; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-blog h4 { + border-bottom: 1px solid #dfdfdf; + padding-bottom: 34px; + margin-bottom: 25px +} + +.single-blog a { + font-size: 20px; + font-weight: 600 +} + +.single-blog .date { + color: #666666; + text-align: left; + display: inline-block; + font-size: 13px; + font-weight: 300 +} + +.single-blog .tag { + text-align: left; + display: inline-block; + float: left; + font-size: 13px; + font-weight: 300; + margin-right: 22px; + position: relative +} + +.single-blog .tag:after { + content: ''; + position: absolute; + width: 1px; + height: 10px; + background: #acacac; + right: -12px; + top: 7px +} + +@media (max-width: 1199px) { + .single-blog .tag { + margin-right: 8px + } + .single-blog .tag:after { + display: none + } +} + +.single-blog .likes { + margin-right: 16px +} + +@media (max-width: 800px) { + .single-blog { + margin-bottom: 30px + } +} + +.single-blog .single-blog-content { + padding: 30px +} + +.single-blog .single-blog-content .meta-bottom p { + font-size: 13px; + font-weight: 300 +} + +.single-blog .single-blog-content .meta-bottom i { + color: #fdcb9e; + font-size: 13px; + margin-right: 7px +} + +@media (max-width: 1199px) { + .single-blog .single-blog-content { + padding: 15px + } +} + +.single-blog:hover .thumb:after { + opacity: .7; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +@media (max-width: 1199px) { + .single-blog h4 { + transition: all 300ms linear 0s; + border-bottom: 1px solid #dfdfdf; + padding-bottom: 14px; + margin-bottom: 12px + } + .single-blog h4 a { + font-size: 18px + } +} + +.full_image.single-blog { + position: relative +} + +.full_image.single-blog .single-blog-content { + position: absolute; + left: 35px; + bottom: 0; + opacity: 0; + visibility: hidden; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +@media (min-width: 992px) { + .full_image.single-blog .single-blog-content { + bottom: 100px + } +} + +.full_image.single-blog h4 { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s; + border-bottom: none; + padding-bottom: 5px +} + +.full_image.single-blog a { + font-size: 20px; + font-weight: 600 +} + +.full_image.single-blog .date { + color: #fff +} + +.full_image.single-blog:hover .single-blog-content { + opacity: 1; + visibility: visible; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.l_blog_item .l_blog_text .date { + margin-top: 24px; + margin-bottom: 15px +} + +.l_blog_item .l_blog_text .date a { + font-size: 12px +} + +.l_blog_item .l_blog_text h4 { + font-size: 18px; + border-bottom: 1px solid #eeeeee; + margin-bottom: 0px; + padding-bottom: 20px; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.l_blog_item .l_blog_text p { + margin-bottom: 0px; + padding-top: 20px +} + +.causes_slider .owl-dots { + text-align: center; + margin-top: 80px +} + +.causes_slider .owl-dots .owl-dot { + height: 14px; + width: 14px; + background: #eeeeee; + display: inline-block; + margin-right: 7px +} + +.causes_slider .owl-dots .owl-dot:last-child { + margin-right: 0px +} + +.causes_item { + background: #fff +} + +.causes_item .causes_img { + position: relative +} + +.causes_item .causes_img .c_parcent { + position: absolute; + bottom: 0px; + width: 100%; + left: 0px; + height: 3px; + background: rgba(255, 255, 255, 0.5) +} + +.causes_item .causes_img .c_parcent span { + width: 70%; + height: 3px; + position: absolute; + left: 0px; + bottom: 0px +} + +.causes_item .causes_img .c_parcent span:before { + content: "75%"; + position: absolute; + right: -10px; + bottom: 0px; + color: #fff; + padding: 0px 5px +} + +.causes_item .causes_text { + padding: 30px 35px 40px 30px +} + +.causes_item .causes_text h4 { + font-size: 18px; + font-weight: 600; + margin-bottom: 15px; + cursor: pointer +} + +.causes_item .causes_text p { + font-size: 14px; + line-height: 24px; + font-weight: 300; + margin-bottom: 0px +} + +.causes_item .causes_bottom a { + width: 50%; + border: 1px solid; + text-align: center; + float: left; + line-height: 50px; + color: #fff; + font-size: 14px; + font-weight: 500 +} + +.causes_item .causes_bottom a+a { + border-color: #eeeeee; + background: #fff; + font-size: 14px +} + +.latest_blog_area { + background: #f9f9ff +} + +.single-recent-blog-post { + margin-bottom: 30px +} + +.single-recent-blog-post .thumb { + overflow: hidden +} + +.single-recent-blog-post .thumb img { + transition: all 0.7s linear +} + +.single-recent-blog-post .details { + padding-top: 30px +} + +.single-recent-blog-post .details .sec_h4 { + line-height: 24px; + padding: 10px 0px 13px; + transition: all 0.3s linear +} + +.single-recent-blog-post .date { + font-size: 14px; + line-height: 24px; + font-weight: 400 +} + +.single-recent-blog-post:hover img { + transform: scale(1.23) rotate(10deg) +} + +.tags .tag_btn { + font-size: 12px; + font-weight: 500; + line-height: 20px; + border: 1px solid #eeeeee; + display: inline-block; + padding: 1px 18px; + text-align: center +} + +.tags .tag_btn+.tag_btn { + margin-left: 2px +} + +.blog_categorie_area { + padding-top: 30px; + padding-bottom: 30px +} + +@media (min-width: 900px) { + .blog_categorie_area { + padding-top: 80px; + padding-bottom: 80px + } +} + +@media (min-width: 1100px) { + .blog_categorie_area { + padding-top: 120px; + padding-bottom: 120px + } +} + +.categories_post { + position: relative; + text-align: center; + cursor: pointer +} + +.categories_post img { + max-width: 100% +} + +.categories_post .categories_details { + position: absolute; + top: 20px; + left: 20px; + right: 20px; + bottom: 20px; + background: rgba(34, 34, 34, 0.75); + color: #fff; + transition: all 0.3s linear; + display: flex; + align-items: center; + justify-content: center +} + +.categories_post .categories_details h5 { + margin-bottom: 0px; + font-size: 18px; + line-height: 26px; + text-transform: uppercase; + color: #fff; + position: relative +} + +.categories_post .categories_details p { + font-weight: 300; + font-size: 14px; + line-height: 26px; + margin-bottom: 0px +} + +.categories_post .categories_details .border_line { + margin: 10px 0px; + background: #fff; + width: 100%; + height: 1px +} + +.categories_post:hover .categories_details { + background: rgba(222, 99, 32, 0.85) +} + +.blog_item { + margin-bottom: 50px +} + +.blog_details { + padding: 30px 0 20px 10px; + box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3) +} + +@media (min-width: 768px) { + .blog_details { + padding: 60px 30px 35px 35px + } +} + +.blog_details p { + margin-bottom: 30px +} + +.blog_details a { + color: #ff8b23 +} + +.blog_details a:hover { + color: #c6a16e +} + +.blog_details h2 { + font-size: 18px; + font-weight: 600; + margin-bottom: 8px +} + +@media (min-width: 768px) { + .blog_details h2 { + font-size: 24px; + margin-bottom: 15px + } +} + +.blog-info-link li { + float: left; + font-size: 14px +} + +.blog-info-link li a { + color: #999999 +} + +.blog-info-link li i, +.blog-info-link li span { + font-size: 13px; + margin-right: 5px +} + +.blog-info-link li::after { + content: "|"; + padding-left: 10px; + padding-right: 10px +} + +.blog-info-link li:last-child::after { + display: none +} + +.blog-info-link::after { + content: ""; + display: block; + clear: both; + display: table +} + +.blog_item_img { + position: relative +} + +.blog_item_img .blog_item_date { + position: absolute; + bottom: -10px; + left: 10px; + display: block; + color: #fff; + background-color: #c6a16e; + padding: 8px 15px; + border-radius: 5px +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date { + bottom: -20px; + left: 40px; + padding: 13px 30px + } +} + +.blog_item_img .blog_item_date h3 { + font-size: 22px; + font-weight: 600; + color: #fff; + margin-bottom: 0; + line-height: 1.2 +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date h3 { + font-size: 30px + } +} + +.blog_item_img .blog_item_date p { + font-size: 18px; + margin-bottom: 0; + color: #fff +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date p { + font-size: 18px + } +} + +.blog_right_sidebar .widget_title { + font-size: 20px; + margin-bottom: 40px +} + +.blog_right_sidebar .widget_title::after { + content: ""; + display: block; + padding-top: 15px; + border-bottom: 1px solid #f0e9ff +} + +.blog_right_sidebar .single_sidebar_widget { + background: #fbf9ff; + padding: 30px; + margin-bottom: 30px +} + +.blog_right_sidebar .single_sidebar_widget .btn_1 { + margin-top: 0px +} + +.blog_right_sidebar .search_widget .form-control { + height: 50px; + border-color: #f0e9ff; + font-size: 13px; + color: #999999; + padding-left: 20px; + border-radius: 0; + border-right: 0 +} + +.blog_right_sidebar .search_widget .form-control::placeholder { + color: #999999 +} + +.blog_right_sidebar .search_widget .form-control:focus { + border-color: #f0e9ff; + outline: 0; + box-shadow: none +} + +.blog_right_sidebar .search_widget .input-group button { + background: #c6a16e; + border-left: 0; + border: 1px solid #f0e9ff; + padding: 4px 15px; + border-left: 0; + cursor: pointer +} + +.blog_right_sidebar .search_widget .input-group button i { + color: #fff +} + +.blog_right_sidebar .search_widget .input-group button span { + font-size: 14px; + color: #999999 +} + +.blog_right_sidebar .newsletter_widget .form-control { + height: 50px; + border-color: #f0e9ff; + font-size: 13px; + color: #999999; + padding-left: 20px; + border-radius: 0 +} + +.blog_right_sidebar .newsletter_widget .form-control::placeholder { + color: #999999 +} + +.blog_right_sidebar .newsletter_widget .form-control:focus { + border-color: #f0e9ff; + outline: 0; + box-shadow: none +} + +.blog_right_sidebar .newsletter_widget .input-group button { + background: #fff; + border-left: 0; + border: 1px solid #f0e9ff; + padding: 4px 15px; + border-left: 0 +} + +.blog_right_sidebar .newsletter_widget .input-group button i, +.blog_right_sidebar .newsletter_widget .input-group button span { + font-size: 14px; + color: #fff +} + +.blog_right_sidebar .post_category_widget .cat-list li { + border-bottom: 1px solid #f0e9ff; + transition: all 0.3s ease 0s; + padding-bottom: 12px +} + +.blog_right_sidebar .post_category_widget .cat-list li:last-child { + border-bottom: 0 +} + +.blog_right_sidebar .post_category_widget .cat-list li a { + font-size: 14px; + line-height: 20px; + color: #888888 +} + +.blog_right_sidebar .post_category_widget .cat-list li a p { + margin-bottom: 0px +} + +.blog_right_sidebar .post_category_widget .cat-list li+li { + padding-top: 15px +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body { + justify-content: center; + align-self: center; + padding-left: 20px +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body h3 { + font-size: 16px; + line-height: 20px; + margin-bottom: 6px; + transition: all 0.3s linear +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover { + color: #fff +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body p { + font-size: 14px; + line-height: 21px; + margin-bottom: 0px +} + +.blog_right_sidebar .popular_post_widget .post_item+.post_item { + margin-top: 20px +} + +.blog_right_sidebar .tag_cloud_widget ul li { + display: inline-block +} + +.blog_right_sidebar .tag_cloud_widget ul li a { + display: inline-block; + border: 1px solid #eeeeee; + background: #fff; + padding: 4px 20px; + margin-bottom: 8px; + margin-right: 3px; + transition: all 0.3s ease 0s; + color: #888888; + font-size: 13px +} + +.blog_right_sidebar .tag_cloud_widget ul li a:hover { + background: #c6a16e; + color: #fff !important; + -webkit-text-fill-color: #fff; + text-decoration: none; + -webkit-transition: 0.5s; + transition: 0.5s +} + +.blog_right_sidebar .instagram_feeds .instagram_row { + display: flex; + margin-right: -6px; + margin-left: -6px +} + +.blog_right_sidebar .instagram_feeds .instagram_row li { + width: 33.33%; + float: left; + padding-right: 6px; + padding-left: 6px; + margin-bottom: 15px +} + +.blog_right_sidebar .br { + width: 100%; + height: 1px; + background: #eee; + margin: 30px 0px +} + +.blog-pagination { + margin-top: 80px +} + +.blog-pagination .page-link { + font-size: 14px; + position: relative; + display: block; + padding: 0; + text-align: center; + margin-left: -1px; + line-height: 45px; + width: 45px; + height: 45px; + border-radius: 0 !important; + color: #8a8a8a; + border: 1px solid #f0e9ff; + margin-right: 10px +} + +.blog-pagination .page-link i, +.blog-pagination .page-link span { + font-size: 13px +} + +.blog-pagination .page-item.active .page-link { + background-color: #fbf9ff; + border-color: #f0e9ff; + color: #888888 +} + +.blog-pagination .page-item:last-child .page-link { + margin-right: 0 +} + +.single-post-area .blog_details { + box-shadow: none; + padding: 0 +} + +.single-post-area .social-links { + padding-top: 10px +} + +.single-post-area .social-links li { + display: inline-block; + margin-bottom: 10px +} + +.single-post-area .social-links li a { + color: #cccccc; + padding: 7px; + font-size: 14px; + transition: all 0.2s linear +} + +.single-post-area .blog_details { + padding-top: 26px +} + +.single-post-area .blog_details p { + margin-bottom: 20px; + font-size: 15px +} + +.single-post-area .quote-wrapper { + background: rgba(130, 139, 178, 0.1); + padding: 15px; + line-height: 1.733; + color: #888888; + /* font-style: italic; */ + margin-top: 25px; + margin-bottom: 25px +} + +@media (min-width: 768px) { + .single-post-area .quote-wrapper { + padding: 30px + } +} + +.single-post-area .quotes { + background: #fff; + padding: 15px 15px 15px 20px; + border-left: 2px solid +} + +@media (min-width: 768px) { + .single-post-area .quotes { + padding: 25px 25px 25px 30px + } +} + +.single-post-area .arrow { + position: absolute +} + +.single-post-area .arrow .lnr { + font-size: 20px; + font-weight: 600 +} + +.single-post-area .thumb .overlay-bg { + background: rgba(0, 0, 0, 0.8) +} + +.single-post-area .navigation-top { + padding-top: 15px; + border-top: 1px solid #f0e9ff +} + +.single-post-area .navigation-top p { + margin-bottom: 0 +} + +.single-post-area .navigation-top .like-info { + font-size: 14px +} + +.single-post-area .navigation-top .like-info i, +.single-post-area .navigation-top .like-info span { + font-size: 16px; + margin-right: 5px +} + +.single-post-area .navigation-top .comment-count { + font-size: 14px +} + +.single-post-area .navigation-top .comment-count i, +.single-post-area .navigation-top .comment-count span { + font-size: 16px; + margin-right: 5px +} + +.single-post-area .navigation-top .social-icons li { + display: inline-block; + margin-right: 15px +} + +.single-post-area .navigation-top .social-icons li:last-child { + margin: 0 +} + +.single-post-area .navigation-top .social-icons li i, +.single-post-area .navigation-top .social-icons li span { + font-size: 14px; + color: #999999 +} + +.single-post-area .blog-author { + padding: 40px 30px; + background: #fbf9ff; + margin-top: 50px +} + +@media (max-width: 600px) { + .single-post-area .blog-author { + padding: 20px 8px + } +} + +.single-post-area .blog-author img { + width: 90px; + height: 90px; + border-radius: 50%; + margin-right: 30px +} + +@media (max-width: 600px) { + .single-post-area .blog-author img { + margin-right: 15px; + width: 45px; + height: 45px + } +} + +.single-post-area .blog-author a { + display: inline-block +} + +.single-post-area .blog-author a:hover { + color: #c6a16e +} + +.single-post-area .blog-author p { + margin-bottom: 0; + font-size: 15px +} + +.single-post-area .blog-author h4 { + font-size: 16px +} + +.single-post-area .navigation-area { + border-bottom: 1px solid #eee; + padding-bottom: 30px; + margin-top: 55px +} + +.single-post-area .navigation-area p { + margin-bottom: 0px +} + +.single-post-area .navigation-area h4 { + font-size: 18px; + line-height: 25px +} + +.single-post-area .navigation-area .nav-left { + text-align: left +} + +.single-post-area .navigation-area .nav-left .thumb { + margin-right: 20px; + background: #000 +} + +.single-post-area .navigation-area .nav-left .thumb img { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-left .lnr { + margin-left: 20px; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-left:hover .lnr { + opacity: 1 +} + +.single-post-area .navigation-area .nav-left:hover .thumb img { + opacity: .5 +} + +@media (max-width: 767px) { + .single-post-area .navigation-area .nav-left { + margin-bottom: 30px + } +} + +.single-post-area .navigation-area .nav-right { + text-align: right +} + +.single-post-area .navigation-area .nav-right .thumb { + margin-left: 20px; + background: #000 +} + +.single-post-area .navigation-area .nav-right .thumb img { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-right .lnr { + margin-right: 20px; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-right:hover .lnr { + opacity: 1 +} + +.single-post-area .navigation-area .nav-right:hover .thumb img { + opacity: .5 +} + +@media (max-width: 991px) { + .single-post-area .sidebar-widgets { + padding-bottom: 0px + } +} + +.comments-area { + background: transparent; + border-top: 1px solid #eee; + padding: 45px 0; + margin-top: 50px +} + +@media (max-width: 414px) { + .comments-area { + padding: 50px 8px + } +} + +.comments-area h4 { + margin-bottom: 35px; + font-size: 18px +} + +.comments-area h5 { + font-size: 16px; + margin-bottom: 0px +} + +.comments-area .comment-list { + padding-bottom: 48px +} + +.comments-area .comment-list:last-child { + padding-bottom: 0px +} + +.comments-area .comment-list.left-padding { + padding-left: 25px +} + +@media (max-width: 413px) { + .comments-area .comment-list .single-comment h5 { + font-size: 12px + } + .comments-area .comment-list .single-comment .date { + font-size: 11px + } + .comments-area .comment-list .single-comment .comment { + font-size: 10px + } +} + +.comments-area .thumb { + margin-right: 20px +} + +.comments-area .thumb img { + width: 70px; + border-radius: 50% +} + +.comments-area .date { + font-size: 14px; + color: #999999; + margin-bottom: 0; + margin-left: 20px +} + +.comments-area .comment { + margin-bottom: 10px; + color: #777777; + font-size: 15px +} + +.comments-area .btn-reply { + background-color: transparent; + color: #888888; + padding: 5px 18px; + font-size: 14px; + display: block; + font-weight: 400 +} + +.comment-form { + border-top: 1px solid #eee; + padding-top: 45px; + margin-top: 50px; + margin-bottom: 20px +} + +.comment-form .form-group { + margin-bottom: 30px +} + +.comment-form h4 { + margin-bottom: 40px; + font-size: 18px; + line-height: 22px +} + +.comment-form .name { + padding-left: 0px +} + +@media (max-width: 767px) { + .comment-form .name { + padding-right: 0px; + margin-bottom: 1rem + } +} + +.comment-form .email { + padding-right: 0px +} + +@media (max-width: 991px) { + .comment-form .email { + padding-left: 0px + } +} + +.comment-form .form-control { + border: 1px solid #f0e9ff; + border-radius: 5px; + height: 48px; + padding-left: 18px; + font-size: 13px; + background: transparent +} + +.comment-form .form-control:focus { + outline: 0; + box-shadow: none +} + +.comment-form .form-control::placeholder { + font-weight: 300; + color: #999999 +} + +.comment-form .form-control::placeholder { + color: #777777 +} + +.comment-form textarea { + padding-top: 18px; + border-radius: 12px; + height: 100% !important +} + +.comment-form ::-webkit-input-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form ::-moz-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form :-ms-input-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form :-moz-placeholder { + font-size: 13px; + color: #777 +} + +.dropdown .dropdown-menu { + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + -ms-transition: all 0.3s; + -o-transition: all 0.3s; + transition: all 0.3s +} + +.contact-info { + margin-bottom: 25px +} + +.contact-info__icon { + margin-right: 20px +} + +.contact-info__icon i, +.contact-info__icon span { + color: #8f9195; + font-size: 27px +} + +.contact-info .media-body h3 { + font-size: 16px; + margin-bottom: 0; + font-size: 16px; + color: #2a2a2a +} + +.contact-info .media-body h3 a:hover { + color: #222 +} + +.contact-info .media-body p { + color: #8a8a8a +} + +.contact-title { + font-size: 27px; + font-weight: 600; + margin-bottom: 20px +} + +.form-contact label { + font-size: 14px +} + +.form-contact .form-group { + margin-bottom: 30px +} + +.form-contact .form-control { + border: 1px solid #e5e6e9; + border-radius: 0px; + height: 48px; + padding-left: 18px; + font-size: 13px; + background: transparent +} + +.form-contact .form-control:focus { + outline: 0; + box-shadow: none +} + +.form-contact .form-control::placeholder { + font-weight: 300; + color: #999999 +} + +.form-contact textarea { + border-radius: 0px; + height: 100% !important +} + +.modal-message .modal-dialog { + position: absolute; + top: 36%; + left: 50%; + transform: translateX(-50%) translateY(-50%) !important; + margin: 0px; + max-width: 500px; + width: 100% +} + +.modal-message .modal-dialog .modal-content .modal-header { + text-align: center; + display: block; + border-bottom: none; + padding-top: 50px; + padding-bottom: 50px +} + +.modal-message .modal-dialog .modal-content .modal-header .close { + position: absolute; + right: -15px; + top: -15px; + padding: 0px; + color: #fff; + opacity: 1; + cursor: pointer +} + +.modal-message .modal-dialog .modal-content .modal-header h2 { + display: block; + text-align: center; + padding-bottom: 10px +} + +.modal-message .modal-dialog .modal-content .modal-header p { + display: block +} + +.contact-section { + padding: 130px 0 100px +} + +@media (max-width: 991px) { + .contact-section { + padding: 70px 0 40px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1200px) { + .contact-section { + padding: 80px 0 50px + } +} + +.contact-section .btn_2 { + background-color: #191d34; + padding: 18px 60px; + border-radius: 50px; + margin-top: 0 +} + +.contact-section .btn_2:hover { + background-color: #222 +} + +.breadcam_bg { + background-image: url(../img/banner/bradcam.png) +} + +.breadcam_bg_1 { + background-image: url(../img/banner/bradcam2.png) +} + +.breadcam_bg_2 { + background-image: url(../img/banner/bradcam3.png) +} + +.bradcam_area { + background-size: cover; + background-position: center center; + padding: 160px 0; + background-position: bottom; + background-repeat: no-repeat +} + +@media (max-width: 767px) { + .bradcam_area { + padding: 150px 0 + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .bradcam_area { + padding: 150px 0 + } +} + +.bradcam_area h3 { + font-size: 50px; + color: #fff; + font-weight: 900; + margin-bottom: 0; + font-family: "Josefin Sans", sans-serif; + text-transform: capitalize +} + +@media (max-width: 767px) { + .bradcam_area h3 { + font-size: 30px + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .bradcam_area h3 { + font-size: 40px + } +} + +.popup_box { + background: #fff; + display: inline-block; + z-index: 9; + width: 681px; + padding: 60px 40px +} + +@media (max-width: 767px) { + .popup_box { + width: 320px; + padding: 45px 30px + } +} + +@media only screen and (min-width: 480px) and (max-width: 767px) { + .popup_box { + width: 420px !important; + padding: 45px 30px + } +} + +.popup_box h3 { + text-align: center; + font-size: 22px; + color: #1F1F1F; + margin-bottom: 46px +} + +.popup_box .boxed-btn3 { + width: 100%; + text-transform: capitalize +} + +.popup_box .nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border: solid 1px #E2E2E2; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: "Great Vibes", cursive; + font-weight: normal; + width: 100% !important; + line-height: 50px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; + border-radius: 0; + margin-bottom: 30px; + height: 50px !important; + font-size: 16px; + font-weight: 400; + color: #919191 +} + +.popup_box .nice-select::after { + content: "\f0d7"; + display: block; + height: 5px; + margin-top: -5px; + pointer-events: none; + position: absolute; + right: 17px; + top: 3px; + transition: all 0.15s ease-in-out; + width: 5px; + font-family: fontawesome; + color: #919191; + font-size: 15px +} + +.popup_box .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); + height: 200px; + overflow-y: scroll +} + +.popup_box .nice-select.list { + height: 200px; + overflow-y: scroll +} + +#test-form { + display: inline-block; + margin: auto; + text-align: center; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%) +} + +@media (max-width: 767px) { + #test-form { + top: 0; + left: 0; + width: 100%; + height: 100%; + -webkit-transform: none; + -ms-transform: none; + transform: none + } +} + +#test-form .mfp-close-btn-in .mfp-close { + color: #333; + display: none !important +} + +#test-form button.mfp-close { + display: none !important +} + +@media (max-width: 767px) { + #test-form button.mfp-close { + display: block !important; + position: absolute; + left: 0; + right: 0; + margin: auto + } +} + +#test-form button.mfp-close { + 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; + width: 40px; + height: 40px; + background: #4A3600; + text-align: center; + line-height: 20px; + position: absolute; + right: 0; + border-bottom-right-radius: 20px; + border-bottom-left-radius: 20px; + position: absolute; + right: -6px; + color: #fff !important +} + +.mfp-bg { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1042; + overflow: hidden; + position: fixed; + background: #4A3600; + opacity: 0.6 +} + +@media (max-width: 767px) { + .gj-picker.gj-picker-md.timepicker { + width: 310px; + left: 6px !important + } +} + +@media (max-width: 767px) { + .gj-picker.gj-picker-md.datepicker.gj-unselectable { + width: 320px; + left: 0 !important + } +} + +.flex-center-start { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: start +} + +.overlay::before { + background-image: -moz-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%); + background-image: -webkit-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%); + background-image: -ms-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%) +} + +.single-team::before { + background: -moz-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + background: -webkit-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + background: linear-gradient(to bottom, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00021a47', endColorstr='#99021a47', GradientType=0) +} + +.gallery-area .gallery-box .single-gallery::before { + background: -moz-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + background: -webkit-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + background: linear-gradient(to bottom, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00021a47', endColorstr='#99021a47', GradientType=0) +} + +.sample-text-area { + background: #fff; + padding: 100px 0 70px 0 +} + +.text-heading { + margin-bottom: 30px; + font-size: 24px +} + +b, +sup, +sub, +u, +del { + color: #222 +} + +.typography h1, +.typography h2, +.typography h3, +.typography h4, +.typography h5, +.typography h6 { + color: #828bb2 +} + +.button-area { + background: #fff +} + +.button-area .border-top-generic { + padding: 70px 15px; + border-top: 1px dotted #eee +} + +.button-group-area .genric-btn { + margin-right: 10px; + margin-top: 10px +} + +.button-group-area .genric-btn:last-child { + margin-right: 0 +} + +.genric-btn { + display: inline-block; + outline: none; + line-height: 40px; + padding: 0 30px; + font-size: .8em; + text-align: center; + text-decoration: none; + font-weight: 500; + cursor: pointer; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s +} + +.genric-btn:focus { + outline: none +} + +.genric-btn.e-large { + padding: 0 40px; + line-height: 50px +} + +.genric-btn.large { + line-height: 45px +} + +.genric-btn.medium { + line-height: 30px +} + +.genric-btn.small { + line-height: 25px +} + +.genric-btn.radius { + border-radius: 3px +} + +.genric-btn.circle { + border-radius: 20px +} + +.genric-btn.arrow { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center +} + +.genric-btn.arrow span { + margin-left: 10px +} + +.genric-btn.default { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.default:hover { + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.default-border { + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.default-border:hover { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.primary { + color: #fff; + background: #222; + border: 1px solid transparent +} + +.genric-btn.primary:hover { + color: #222; + border: 1px solid #222; + background: #fff +} + +.genric-btn.primary-border { + color: #222; + border: 1px solid #222; + background: #fff +} + +.genric-btn.primary-border:hover { + color: #fff; + background: #222; + border: 1px solid transparent +} + +.genric-btn.success { + color: #fff; + background: #4cd3e3; + border: 1px solid transparent +} + +.genric-btn.success:hover { + color: #4cd3e3; + border: 1px solid #4cd3e3; + background: #fff +} + +.genric-btn.success-border { + color: #4cd3e3; + border: 1px solid #4cd3e3; + background: #fff +} + +.genric-btn.success-border:hover { + color: #fff; + background: #4cd3e3; + border: 1px solid transparent +} + +.genric-btn.info { + color: #fff; + background: #38a4ff; + border: 1px solid transparent +} + +.genric-btn.info:hover { + color: #38a4ff; + border: 1px solid #38a4ff; + background: #fff +} + +.genric-btn.info-border { + color: #38a4ff; + border: 1px solid #38a4ff; + background: #fff +} + +.genric-btn.info-border:hover { + color: #fff; + background: #38a4ff; + border: 1px solid transparent +} + +.genric-btn.warning { + color: #fff; + background: #f4e700; + border: 1px solid transparent +} + +.genric-btn.warning:hover { + color: #f4e700; + border: 1px solid #f4e700; + background: #fff +} + +.genric-btn.warning-border { + color: #f4e700; + border: 1px solid #f4e700; + background: #fff +} + +.genric-btn.warning-border:hover { + color: #fff; + background: #f4e700; + border: 1px solid transparent +} + +.genric-btn.danger { + color: #fff; + background: #f44a40; + border: 1px solid transparent +} + +.genric-btn.danger:hover { + color: #f44a40; + border: 1px solid #f44a40; + background: #fff +} + +.genric-btn.danger-border { + color: #f44a40; + border: 1px solid #f44a40; + background: #fff +} + +.genric-btn.danger-border:hover { + color: #fff; + background: #f44a40; + border: 1px solid transparent +} + +.genric-btn.link { + color: #415094; + background: #f9f9ff; + text-decoration: underline; + border: 1px solid transparent +} + +.genric-btn.link:hover { + color: #415094; + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.link-border { + color: #415094; + border: 1px solid #f9f9ff; + background: #fff; + text-decoration: underline +} + +.genric-btn.link-border:hover { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.disable { + color: #222, 0.3; + background: #f9f9ff; + border: 1px solid transparent; + cursor: not-allowed +} + +.generic-blockquote { + padding: 30px 50px 30px 30px; + background: #f9f9ff; + border-left: 2px solid #222 +} + +.progress-table-wrap { + overflow-x: scroll +} + +.progress-table { + background: #f9f9ff; + padding: 15px 0px 30px 0px; + min-width: 800px +} + +.progress-table .serial { + width: 11.83%; + padding-left: 30px +} + +.progress-table .country { + width: 28.07% +} + +.progress-table .visit { + width: 19.74% +} + +.progress-table .percentage { + width: 40.36%; + padding-right: 50px +} + +.progress-table .table-head { + display: flex +} + +.progress-table .table-head .serial, +.progress-table .table-head .country, +.progress-table .table-head .visit, +.progress-table .table-head .percentage { + color: #415094; + line-height: 40px; + text-transform: uppercase; + font-weight: 500 +} + +.progress-table .table-row { + padding: 15px 0; + border-top: 1px solid #edf3fd; + display: flex +} + +.progress-table .table-row .serial, +.progress-table .table-row .country, +.progress-table .table-row .visit, +.progress-table .table-row .percentage { + display: flex; + align-items: center +} + +.progress-table .table-row .country img { + margin-right: 15px +} + +.progress-table .table-row .percentage .progress { + width: 80%; + border-radius: 0px; + background: transparent +} + +.progress-table .table-row .percentage .progress .progress-bar { + height: 5px; + line-height: 5px +} + +.progress-table .table-row .percentage .progress .progress-bar.color-1 { + background-color: #6382e6 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-2 { + background-color: #e66686 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-3 { + background-color: #f09359 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-4 { + background-color: #73fbaf +} + +.progress-table .table-row .percentage .progress .progress-bar.color-5 { + background-color: #73fbaf +} + +.progress-table .table-row .percentage .progress .progress-bar.color-6 { + background-color: #6382e6 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-7 { + background-color: #a367e7 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-8 { + background-color: #e66686 +} + +.single-gallery-image { + margin-top: 30px; + background-repeat: no-repeat !important; + background-position: center center !important; + background-size: cover !important; + height: 200px +} + +.list-style { + width: 14px; + height: 14px +} + +.unordered-list li { + position: relative; + padding-left: 30px; + line-height: 1.82em !important +} + +.unordered-list li:before { + content: ""; + position: absolute; + width: 14px; + height: 14px; + border: 3px solid #222; + background: #fff; + top: 4px; + left: 0; + border-radius: 50% +} + +.ordered-list { + margin-left: 30px +} + +.ordered-list li { + list-style-type: decimal-leading-zero; + color: #222; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list li span { + font-weight: 300; + color: #828bb2 +} + +.ordered-list-alpha li { + margin-left: 30px; + list-style-type: lower-alpha; + color: #222; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list-alpha li span { + font-weight: 300; + color: #828bb2 +} + +.ordered-list-roman li { + margin-left: 30px; + list-style-type: lower-roman; + color: #222; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list-roman li span { + font-weight: 300; + color: #828bb2 +} + +.single-input { + display: block; + width: 100%; + line-height: 40px; + border: none; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input:focus { + outline: none +} + +.input-group-icon { + position: relative +} + +.input-group-icon .icon { + position: absolute; + left: 20px; + top: 0; + line-height: 40px; + z-index: 3 +} + +.input-group-icon .icon i { + color: #797979 +} + +.input-group-icon .single-input { + padding-left: 45px +} + +.single-textarea { + display: block; + width: 100%; + line-height: 40px; + border: none; + outline: none; + background: #f9f9ff; + padding: 0 20px; + height: 100px; + resize: none +} + +.single-textarea:focus { + outline: none +} + +.single-input-primary { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-primary:focus { + outline: none; + border: 1px solid #222 +} + +.single-input-accent { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-accent:focus { + outline: none; + border: 1px solid #eb6b55 +} + +.single-input-secondary { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-secondary:focus { + outline: none; + border: 1px solid #f09359 +} + +.default-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.default-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0; + cursor: pointer +} + +.default-switch input+label { + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #222; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.default-switch input:checked+label { + left: 19px +} + +.primary-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-switch input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100% +} + +.primary-switch input+label:before { + content: ""; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background: transparent; + border-radius: 8.5px; + cursor: pointer; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s +} + +.primary-switch input+label:after { + content: ""; + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #fff; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.primary-switch input:checked+label:after { + left: 19px +} + +.primary-switch input:checked+label:before { + background: #222 +} + +.confirm-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-switch input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100% +} + +.confirm-switch input+label:before { + content: ""; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background: transparent; + border-radius: 8.5px; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + cursor: pointer +} + +.confirm-switch input+label:after { + content: ""; + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #fff; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.confirm-switch input:checked+label:after { + left: 19px +} + +.confirm-switch input:checked+label:before { + background: #4cd3e3 +} + +.primary-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.primary-checkbox input:checked+label { + background: url(../img/elements/primary-check.png) no-repeat center center/cover; + border: none +} + +.confirm-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.confirm-checkbox input:checked+label { + background: url(../img/elements/success-check.png) no-repeat center center/cover; + border: none +} + +.disabled-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.disabled-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.disabled-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.disabled-checkbox input:disabled { + cursor: not-allowed; + z-index: 3 +} + +.disabled-checkbox input:checked+label { + background: url(../img/elements/disabled-check.png) no-repeat center center/cover; + border: none +} + +.primary-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.primary-radio input:checked+label { + background: url(../img/elements/primary-radio.png) no-repeat center center/cover; + border: none +} + +.confirm-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.confirm-radio input:checked+label { + background: url(../img/elements/success-radio.png) no-repeat center center/cover; + border: none +} + +.disabled-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.disabled-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.disabled-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.disabled-radio input:disabled { + cursor: not-allowed; + z-index: 3 +} + +.disabled-radio input:checked+label { + background: url(../img/elements/disabled-radio.png) no-repeat center center/cover; + border: none +} + +.default-select { + height: 40px +} + +.default-select .nice-select { + border: none; + border-radius: 0px; + height: 40px; + background: #f9f9ff; + padding-left: 20px; + padding-right: 40px +} + +.default-select .nice-select .list { + margin-top: 0; + border: none; + border-radius: 0px; + box-shadow: none; + width: 100%; + padding: 10px 0 10px 0px +} + +.default-select .nice-select .list .option { + font-weight: 300; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + line-height: 28px; + min-height: 28px; + font-size: 12px; + padding-left: 20px +} + +.default-select .nice-select .list .option.selected { + color: #222; + background: transparent +} + +.default-select .nice-select .list .option:hover { + color: #222; + background: transparent +} + +.default-select .current { + margin-right: 50px; + font-weight: 300 +} + +.default-select .nice-select::after { + right: 20px +} + +.form-select { + height: 40px; + width: 100% +} + +.form-select .nice-select { + border: none; + border-radius: 0px; + height: 40px; + background: #f9f9ff; + padding-left: 45px; + padding-right: 40px; + width: 100% +} + +.form-select .nice-select .list { + margin-top: 0; + border: none; + border-radius: 0px; + box-shadow: none; + width: 100%; + padding: 10px 0 10px 0px +} + +.form-select .nice-select .list .option { + font-weight: 300; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + line-height: 28px; + min-height: 28px; + font-size: 12px; + padding-left: 45px +} + +.form-select .nice-select .list .option.selected { + color: #222; + background: transparent +} + +.form-select .nice-select .list .option:hover { + color: #222; + background: transparent +} + +.form-select .current { + margin-right: 50px; + font-weight: 300 +} + +.form-select .nice-select::after { + right: 20px +} + +.mt-10 { + margin-top: 10px +} + +.section-top-border { + padding: 50px 0; + border-top: 1px dotted #eee +} + +.mb-30 { + margin-bottom: 30px +} + +.mt-30 { + margin-top: 30px +} + +.switch-wrap { + margin-bottom: 10px +} + +.left-sidebar { + background-color: #37a18b; + float: left; + min-height: 100%; + position: fixed; + width: 8%; +} + +.logo-1 { + padding-bottom: 20px; + padding-left: 20px; + padding-top: 50px; +} +.logo-1 h1{ + color: #fff; + text-transform: uppercase; +} +.left-nav ul { + margin: 0; + padding: 0; +} + +.left-nav ul li a { + color: #fff; + display: block; + padding: 10px 35px; + -webkit-transition: all 0.3s ease-in 0s; + -moz-transition: all 0.3s ease-in 0s; + -ms-transition: all 0.3s ease-in 0s; + -o-transition: all 0.3s ease-in 0s; + transition: all 0.3s ease-in 0s; +} + +.left-nav ul li a:hover, .left-nav ul li .current { + background-color: #fff; + color: #000; +} diff --git a/assets/css/nice-select.css b/assets/css/nice-select.css new file mode 100755 index 0000000..d72a7cb --- /dev/null +++ b/assets/css/nice-select.css @@ -0,0 +1,138 @@ +.nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border-radius: 5px; + border: solid 1px #e8e8e8; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: inherit; + font-size: 14px; + font-weight: normal; + height: 42px; + line-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; } + .nice-select:hover { + border-color: #dbdbdb; } + .nice-select:active, .nice-select.open, .nice-select:focus { + border-color: #999; } + .nice-select:after { + border-bottom: 2px solid #999; + border-right: 2px solid #999; + content: ''; + display: block; + height: 5px; + margin-top: -4px; + pointer-events: none; + position: absolute; + right: 12px; + top: 50%; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; + width: 5px; } + .nice-select.open:after { + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); } + .nice-select.disabled { + border-color: #ededed; + color: #999; + pointer-events: none; } + .nice-select.disabled:after { + border-color: #cccccc; } + .nice-select.wide { + width: 100%; } + .nice-select.wide .list { + left: 0 !important; + right: 0 !important; } + .nice-select.right { + float: right; } + .nice-select.right .list { + left: auto; + right: 0; } + .nice-select.small { + font-size: 12px; + height: 36px; + line-height: 34px; } + .nice-select.small:after { + height: 4px; + width: 4px; } + .nice-select.small .option { + line-height: 34px; + min-height: 34px; } + .nice-select .list { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); + box-sizing: border-box; + margin-top: 4px; + opacity: 0; + overflow: hidden; + padding: 0; + pointer-events: none; + position: absolute; + top: 100%; + left: 0; + -webkit-transform-origin: 50% 0; + -ms-transform-origin: 50% 0; + transform-origin: 50% 0; + -webkit-transform: scale(0.75) translateY(-21px); + -ms-transform: scale(0.75) translateY(-21px); + transform: scale(0.75) translateY(-21px); + -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + z-index: 9; } + .nice-select .list:hover .option:not(:hover) { + background-color: transparent !important; } + .nice-select .option { + cursor: pointer; + font-weight: 400; + line-height: 40px; + list-style: none; + min-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 29px; + text-align: left; + -webkit-transition: all 0.2s; + transition: all 0.2s; } + .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { + background-color: #f6f6f6; } + .nice-select .option.selected { + font-weight: bold; } + .nice-select .option.disabled { + background-color: transparent; + color: #999; + cursor: default; } + +.no-csspointerevents .nice-select .list { + display: none; } + +.no-csspointerevents .nice-select.open .list { + display: block; } diff --git a/assets/css/normalize.min.css b/assets/css/normalize.min.css new file mode 100755 index 0000000..1926ddf --- /dev/null +++ b/assets/css/normalize.min.css @@ -0,0 +1,290 @@ +/*! normalize.css v1.1.3 | MIT License | git.io/normalize */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1 +} + +audio:not([controls]) { + display: none; + height: 0 +} + +[hidden] { + display: none +} + +html { + font-size: 100%; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100% +} + +html, +button, +input, +select, +textarea { + font-family: sans-serif +} + +body { + margin: 0 +} + +a:focus { + outline: thin dotted +} + +a:active, +a:hover { + outline: 0 +} + +h1 { + font-size: 2em; + margin: .67em 0 +} + +h2 { + font-size: 1.5em; + margin: .83em 0 +} + +h3 { + font-size: 1.17em; + margin: 1em 0 +} + +h4 { + font-size: 1em; + margin: 1.33em 0 +} + +h5 { + font-size: .83em; + margin: 1.67em 0 +} + +h6 { + font-size: .67em; + margin: 2.33em 0 +} + +abbr[title] { + border-bottom: 1px dotted +} + +b, +strong { + font-weight: bold +} + +blockquote { + margin: 1em 40px +} + +dfn { + font-style: italic +} + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0 +} + +mark { + background: #ff0; + color: #000 +} + +p, +pre { + margin: 1em 0 +} + +code, +kbd, +pre, +samp { + font-family: monospace, serif; + _font-family: 'courier new', monospace; + font-size: 1em +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word +} + +q { + quotes: none +} + +q:before, +q:after { + content: ''; + content: none +} + +small { + font-size: 80% +} + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline +} + +sup { + top: -0.5em +} + +sub { + bottom: -0.25em +} + +dl, +menu, +ol, +ul { + margin: 1em 0 +} + +dd { + margin: 0 0 0 40px +} + +menu, +ol, +ul { + padding: 0 0 0 40px +} + +nav ul, +nav ol { + list-style: none; + list-style-image: none +} + +img { + border: 0; + -ms-interpolation-mode: bicubic +} + +svg:not(:root) { + overflow: hidden +} + +figure { + margin: 0 +} + +form { + margin: 0 +} + +fieldset { + border: 1px solid silver; + margin: 0 2px; + padding: .35em .625em .75em +} + +legend { + border: 0; + padding: 0; + white-space: normal; + *margin-left: -7px +} + +button, +input, +select, +textarea { + font-size: 100%; + margin: 0; + vertical-align: baseline; + *vertical-align: middle +} + +button, +input { + line-height: normal +} + +button, +select { + text-transform: none +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; + *overflow: visible +} + +button[disabled], +html input[disabled] { + cursor: default +} + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + padding: 0; + *height: 13px; + *width: 13px +} + +input[type="search"] { + -webkit-appearance: textfield; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0 +} + +textarea { + overflow: auto; + vertical-align: top +} + +table { + border-collapse: collapse; + border-spacing: 0 +} diff --git a/assets/css/owl.carousel.min.css b/assets/css/owl.carousel.min.css new file mode 100755 index 0000000..cdfef4a --- /dev/null +++ b/assets/css/owl.carousel.min.css @@ -0,0 +1,195 @@ +.owl-carousel, +.owl-carousel .owl-item { + -webkit-tap-highlight-color: transparent; + position: relative +} + +.owl-carousel { + display: none; + width: 100%; + z-index: 1 +} + +.owl-carousel .owl-stage { + position: relative; + -ms-touch-action: pan-Y; + -moz-backface-visibility: hidden +} + +.owl-carousel .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0 +} + +.owl-carousel .owl-stage-outer { + position: relative; + overflow: hidden; + -webkit-transform: translate3d(0, 0, 0) +} + +.owl-carousel .owl-item, +.owl-carousel .owl-wrapper { + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + -ms-backface-visibility: hidden; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0) +} + +.owl-carousel .owl-item { + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-touch-callout: none +} + +.owl-carousel .owl-item img { + display: block; + width: 100% +} + +.owl-carousel .owl-dots.disabled, +.owl-carousel .owl-nav.disabled { + display: none +} + +.no-js .owl-carousel, +.owl-carousel.owl-loaded { + display: block +} + +.owl-carousel .owl-dot, +.owl-carousel .owl-nav .owl-next, +.owl-carousel .owl-nav .owl-prev { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.owl-carousel.owl-loading { + opacity: 0; + display: block +} + +.owl-carousel.owl-hidden { + opacity: 0 +} + +.owl-carousel.owl-refresh .owl-item { + visibility: hidden +} + +.owl-carousel.owl-drag .owl-item { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.owl-carousel.owl-grab { + cursor: move; + cursor: grab +} + +.owl-carousel.owl-rtl { + direction: rtl +} + +.owl-carousel.owl-rtl .owl-item { + float: right +} + +.owl-carousel .animated { + animation-duration: 1s; + animation-fill-mode: both +} + +.owl-carousel .owl-animated-in { + z-index: 0 +} + +.owl-carousel .owl-animated-out { + z-index: 1 +} + +.owl-carousel .fadeOut { + animation-name: fadeOut +} + +@keyframes fadeOut { + 0% { + opacity: 1 + } + 100% { + opacity: 0 + } +} + +.owl-height { + transition: height .5s ease-in-out +} + +.owl-carousel .owl-item .owl-lazy { + opacity: 0; + transition: opacity .4s ease +} + +.owl-carousel .owl-item img.owl-lazy { + transform-style: preserve-3d +} + +.owl-carousel .owl-video-wrapper { + position: relative; + height: 100%; + background: #000 +} + +.owl-carousel .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + margin-left: -40px; + margin-top: -40px; + background: url(owl.video.play.png) no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + transition: transform .1s ease +} + +.owl-carousel .owl-video-play-icon:hover { + -ms-transform: scale(1.3, 1.3); + transform: scale(1.3, 1.3) +} + +.owl-carousel .owl-video-playing .owl-video-play-icon, +.owl-carousel .owl-video-playing .owl-video-tn { + display: none +} + +.owl-carousel .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + transition: opacity .4s ease +} + +.owl-carousel .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100% +} diff --git a/assets/css/price_rangs.css b/assets/css/price_rangs.css new file mode 100755 index 0000000..21e73b3 --- /dev/null +++ b/assets/css/price_rangs.css @@ -0,0 +1,258 @@ +/* ===================================================================================================================== +// RangeSlider */ + +.irs { + position: relative; display: block; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + .irs-line { + position: relative; display: block; + overflow: hidden; + outline: none !important; + } + .irs-line-left, .irs-line-mid, .irs-line-right { + position: absolute; display: block; + top: 0; + } + .irs-line-left { + left: 0; width: 11%; + } + .irs-line-mid { + left: 9%; width: 82%; + } + .irs-line-right { + right: 0; width: 11%; + } + + .irs-bar { + position: absolute; display: block; + left: 0; width: 0; + } + .irs-bar-edge { + position: absolute; display: block; + top: 0; left: 0; + } + + .irs-shadow { + position: absolute; display: none; + left: 0; width: 0; + } + + .irs-slider { + position: absolute; display: block; + cursor: default; + z-index: 1; + } + .irs-slider.single { + + } + .irs-slider.from { + + } + .irs-slider.to { + + } + .irs-slider.type_last { + z-index: 2; + } + + .irs-min { + position: absolute; display: block; + left: 0; + cursor: default; + } + .irs-max { + position: absolute; display: block; + right: 0; + cursor: default; + } + + .irs-from, .irs-to, .irs-single { + position: absolute; display: block; + top: 0; left: 0; + cursor: default; + white-space: nowrap; + } + +.irs-grid { + position: absolute; display: none; + bottom: 0; left: 0; + width: 100%; height: 20px; +} +.irs-with-grid .irs-grid { + display: block; +} + .irs-grid-pol { + position: absolute; + top: 0; left: 0; + width: 1px; height: 8px; + background: #000; + } + .irs-grid-pol.small { + height: 4px; + } + .irs-grid-text { + position: absolute; + bottom: 0; left: 0; + white-space: nowrap; + text-align: center; + font-size: 9px; line-height: 9px; + padding: 0 3px; + color: #000; + } + +.irs-disable-mask { + position: absolute; display: block; + top: 0; left: -1%; + width: 102%; height: 100%; + cursor: default; + background: rgba(0,0,0,0.0); + z-index: 2; +} +.lt-ie9 .irs-disable-mask { + background: #000; + filter: alpha(opacity=0); + cursor: not-allowed; +} + +.irs-disabled { + opacity: 0.4; +} + + +.irs-hidden-input { + position: absolute !important; + display: block !important; + top: 0 !important; + left: 0 !important; + width: 0 !important; + height: 0 !important; + font-size: 0 !important; + line-height: 0 !important; + padding: 0 !important; + margin: 0 !important; + outline: none !important; + z-index: -9999 !important; + background: none !important; + border-style: solid !important; + border-color: transparent !important; +} + + +/* +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs { + height: 55px; +} +.irs-with-grid { + height: 75px; +} +.irs-line { + height: 10px; top: 33px; + background: #EEE; + background: linear-gradient(to bottom, #DDD -50%, #FFF 150%); /* W3C */ + border: 1px solid #CCC; + border-radius: 16px; + -moz-border-radius: 16px; +} + .irs-line-left { + height: 8px; + } + .irs-line-mid { + height: 8px; + } + .irs-line-right { + height: 8px; + } + +.irs-bar { + height: 10px; top: 33px; + border-top: 1px solid #428bca; + border-bottom: 1px solid #428bca; + background: #428bca; + background: linear-gradient(to top, rgba(66,139,202,1) 0%,rgba(127,195,232,1) 100%); /* W3C */ +} + .irs-bar-edge { + height: 10px; top: 33px; + width: 14px; + border: 1px solid #428bca; + border-right: 0; + background: #428bca; + background: linear-gradient(to top, rgba(66,139,202,1) 0%,rgba(127,195,232,1) 100%); /* W3C */ + border-radius: 16px 0 0 16px; + -moz-border-radius: 16px 0 0 16px; + } + +.irs-shadow { + height: 2px; top: 38px; + background: #000; + opacity: 0.3; + border-radius: 5px; + -moz-border-radius: 5px; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=30); +} + +.irs-slider { + top: 25px; + width: 27px; height: 27px; + border: 1px solid #AAA; + background: #DDD; + background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(220,220,220,1) 20%,rgba(255,255,255,1) 100%); /* W3C */ + border-radius: 27px; + -moz-border-radius: 27px; + box-shadow: 1px 1px 3px rgba(0,0,0,0.3); + cursor: pointer; +} + +.irs-slider.state_hover, .irs-slider:hover { + background: #FFF; +} + +.irs-min, .irs-max { + color: #333; + font-size: 12px; line-height: 1.333; + text-shadow: none; + top: 0; + padding: 1px 5px; + background: rgba(0,0,0,0.1); + border-radius: 3px; + -moz-border-radius: 3px; +} + +.lt-ie9 .irs-min, .lt-ie9 .irs-max { + background: #ccc; +} + +.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { + background: #999; +} + +.irs-grid { + height: 27px; +} +.irs-grid-pol { + opacity: 0.5; + background: #428bca; +} +.irs-grid-pol.small { + background: #999; +} + +.irs-grid-text { + bottom: 5px; + color: #99a4ac; +} + +.irs-disabled { +} diff --git a/assets/css/responsive.css b/assets/css/responsive.css new file mode 100755 index 0000000..f568d97 --- /dev/null +++ b/assets/css/responsive.css @@ -0,0 +1,32 @@ +/* Normal desktop :1200px. */ +@media (min-width: 1200px) and (max-width: 1500px) { + + +} + + +/* Normal desktop :992px. */ +@media (min-width: 992px) and (max-width: 1200px) { + + +} + + +/* Tablet desktop :768px. */ +@media (min-width: 768px) and (max-width: 991px) { + + +} + + +/* small mobile :320px. */ +@media (max-width: 767px) { + + +} + +/* Large Mobile :480px. */ +@media only screen and (min-width: 480px) and (max-width: 767px) { +.container {width:450px} + +} diff --git a/assets/css/slick.css b/assets/css/slick.css new file mode 100755 index 0000000..57477e8 --- /dev/null +++ b/assets/css/slick.css @@ -0,0 +1,119 @@ +/* Slider */ +.slick-slider +{ + position: relative; + + display: block; + box-sizing: border-box; + + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + -webkit-touch-callout: none; + -khtml-user-select: none; + -ms-touch-action: pan-y; + touch-action: pan-y; + -webkit-tap-highlight-color: transparent; +} + +.slick-list +{ + position: relative; + + display: block; + overflow: hidden; + + margin: 0; + padding: 0; +} +.slick-list:focus +{ + outline: none; +} +.slick-list.dragging +{ + cursor: pointer; + cursor: hand; +} + +.slick-slider .slick-track, +.slick-slider .slick-list +{ + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.slick-track +{ + position: relative; + top: 0; + left: 0; + + display: block; + margin-left: auto; + margin-right: auto; +} +.slick-track:before, +.slick-track:after +{ + display: table; + + content: ''; +} +.slick-track:after +{ + clear: both; +} +.slick-loading .slick-track +{ + visibility: hidden; +} + +.slick-slide +{ + display: none; + float: left; + + height: 100%; + min-height: 1px; +} +[dir='rtl'] .slick-slide +{ + float: right; +} +.slick-slide img +{ + display: block; +} +.slick-slide.slick-loading img +{ + display: none; +} +.slick-slide.dragging img +{ + pointer-events: none; +} +.slick-initialized .slick-slide +{ + display: block; +} +.slick-loading .slick-slide +{ + visibility: hidden; +} +.slick-vertical .slick-slide +{ + display: block; + + height: auto; + + border: 1px solid transparent; +} +.slick-arrow.slick-hidden { + display: none; +} diff --git a/assets/css/slicknav.css b/assets/css/slicknav.css new file mode 100755 index 0000000..719eaf5 --- /dev/null +++ b/assets/css/slicknav.css @@ -0,0 +1,257 @@ +.slicknav_btn { + position: relative; + display: block; + vertical-align: middle; + float: right; + padding: 0.438em 0.625em 0.438em 0.625em; + line-height: 1.125em; + cursor: pointer; } + .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { + margin-top: 0.188em; } + +.slicknav_menu { + *zoom: 1; } + .slicknav_menu .slicknav_menutxt { + display: block; + line-height: 1.188em; + float: left; } + .slicknav_menu .slicknav_icon { + float: left; + width: 1.125em; + height: 0.875em; + margin: 0.188em 0 0 0.438em; } + .slicknav_menu .slicknav_icon:before { + background: transparent; + width: 1.125em; + height: 0.875em; + display: block; + content: ""; + position: absolute; } + .slicknav_menu .slicknav_no-text { + margin: 0; } + .slicknav_menu .slicknav_icon-bar { + display: block; + width: 1.125em; + height: 0.125em;} + .slicknav_menu:before { + content: " "; + display: table; } + .slicknav_menu:after { + content: " "; + display: table; + clear: both; } + +.slicknav_nav { + clear: both; } + .slicknav_nav ul { + display: block; } + .slicknav_nav li { + display: block; } + .slicknav_nav .slicknav_arrow { + font-size: 0.8em; + margin: 0 0 0 0.4em; } + .slicknav_nav .slicknav_item { + cursor: pointer; } + .slicknav_nav .slicknav_item a { + display: inline; } + .slicknav_nav .slicknav_row { + display: block; } + .slicknav_nav a { + display: block; } + .slicknav_nav .slicknav_parent-link a { + display: inline; } + +.slicknav_brand { + float: left; } + +.slicknav_menu { + font-size: 16px; + box-sizing: border-box; + background: #4c4c4c; + padding: 5px; } + .slicknav_menu * { + box-sizing: border-box; } + .slicknav_menu .slicknav_menutxt { + color: #fff; + font-weight: bold; } + .slicknav_menu .slicknav_icon-bar { + background-color: #dca73a !important; + } + + .slicknav_btn { + margin: 5px 5px 6px; + text-decoration: none; + background-color: none; + } + +.slicknav_nav { + color: #fff; + margin: 0; + padding: 0; + font-size: 0.875em; + list-style: none; + overflow: hidden; } + .slicknav_nav ul { + list-style: none; + overflow: hidden; + padding: 0; + margin: 0 0 0 20px; } + .slicknav_nav .slicknav_row { + + /* padding: 5px 10px; */ + margin: 2px 5px; + } + .slicknav_nav .slicknav_row:hover { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + background: #ccc; + color: #fff; } + .slicknav_nav a { + padding: 5px 10px; + margin: 2px 5px; + text-decoration: none; + color: #fff; } + .slicknav_nav a:hover { + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + border-radius: 0px; + background: #ccc; + color: #222; } + .slicknav_nav .slicknav_txtnode { + margin-left: 15px; } + .slicknav_nav .slicknav_item a { + padding: 0; + margin: 0; } + .slicknav_nav .slicknav_parent-link a { + padding: 0; + margin: 0; } + +.slicknav_brand { + color: #fff; + font-size: 18px; + line-height: 30px; + padding: 7px 12px; + height: 44px; } + + + + /*===== mobile menu slicknav =====*/ + +.mobile_menu { + position: absolute; + right: 10px; + width: 96%; + z-index: 99; +} +.slicknav_menu .slicknav_menutxt { + display: none; +} +.slicknav_menu { + background: transparent; + margin-top: 10px; +} +.slicknav_menu .slicknav_icon-bar { + background-color: #ffffff; + height: 3px; + margin: 5px 0; + -webkit-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + width: 30px; + position: relative; +} +.slicknav_btn { + background-color: transparent; + cursor: pointer; + margin-bottom: 10px; + margin-top: -35px; + position: relative; + z-index: 99; +} +/* .slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) { + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; +} +.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) { + -webkit-transform: rotate(45deg) translate(1px, 7px); + -ms-transform: rotate(45deg) translate(1px, 7px); + transform: rotate(45deg) translate(1px, 7px); +} +.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) { + -webkit-transform: rotate(-45deg) translateY(-6px); + -ms-transform: rotate(-45deg) translateY(-6px); + transform: rotate(-45deg) translateY(-6px); + position: relative; + top: -1px; +} */ +.slicknav_menu { + margin: 0; + padding: 0; +} +.slicknav_icon-bar { + background: #fff !important; +} +.slicknav_nav { + background: #fff; + float: right; + margin-top: 11px; + padding: 19px; + width: 100%; + border-bottom: 1px solid #eee; +} +.slicknav_nav a:hover { + background: #F79960 none repeat scroll 0 0; + border-radius: 0; + color: #ffffff; +} + +.slicknav_nav a { + font-size: 14px; + font-weight: 400; + color: #000; + text-transform: capitalize; +} + +.slicknav_nav .slicknav_arrow { + float: right; +} + +.slicknav_nav .slicknav_row:hover, +.slicknav_nav .slicknav_row:hover .slicknav_arrow { + border-radius: 0; + background-color: #F79960; + background-color: transparent; + color: #000; +} +.slicknav_btn { + background-color: transparent; + cursor: pointer; + margin-bottom: -15px; + position: relative; + z-index: 99; + border: none; + border-radius: 3px; + top: -23px; + padding: 5px; + right: 5px; + margin-top: -5px; +} +.slicknav_menu .slicknav_icon { + margin-right: 6px; + margin-top: 3px; + position: relative; + right: 5px; + top: -5px; + padding-bottom: 3px; +} +.slicknav_nav .slicknav_arrow { + float: right; + font-size: 22px; + position: relative; + top: -9px; +} +.slicknav_menu .slicknav_nav a:hover { + background: transparent; + color: #dca73a; +} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100755 index 0000000..cbf2748 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,6320 @@ +@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900|Rufina:400,700&display=swap"); +.white-bg { + background: #be5c5c +} + +.gray-bg { + background: #f5f5f5 +} + +.gray-bg { + background: #f7f7fd +} + +.white-bg { + background: #777777 +} + +.black-bg { + background: #16161a +} + +.theme-bg { + background: #00ffd5 +} + +.brand-bg { + background: #f1f4fa +} + +.testimonial-bg { + background: #f9fafc +} + +.white-color { + color: #777777 +} + +.black-color { + color: #16161a +} + +.theme-color { + color: #00ffd5 +} + +.boxed-btn { + background: #777777; + color: #00ffd5 !important; + display: inline-block; + padding: 18px 44px; + font-family: "Rufina", serif; + font-size: 14px; + font-weight: 400; + border: 0; + border: 1px solid #00ffd5; + letter-spacing: 3px; + text-align: center; + color: #00ffd5; + text-transform: uppercase; + cursor: pointer +} + +.boxed-btn:hover { + background: #00ffd5; + color: #777777 !important; + border: 1px solid #00ffd5 +} + +.boxed-btn:focus { + outline: none +} + +.boxed-btn.large-width { + width: 220px +} + +[data-overlay] { + position: relative; + background-size: cover; + background-repeat: no-repeat; + background-position: center center +} + +[data-overlay]::before { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + content: "" +} + +[data-opacity="1"]::before { + opacity: 0.1 +} + +[data-opacity="2"]::before { + opacity: 0.2 +} + +[data-opacity="3"]::before { + opacity: 0.3 +} + +[data-opacity="4"]::before { + opacity: 0.4 +} + +[data-opacity="5"]::before { + opacity: 0.5 +} + +[data-opacity="6"]::before { + opacity: 0.6 +} + +[data-opacity="7"]::before { + opacity: 0.7 +} + +[data-opacity="8"]::before { + opacity: 0.8 +} + +[data-opacity="9"]::before { + opacity: 0.9 +} + +body { + font-family: "Rubik", sans-serif; + font-weight: normal; + font-style: normal +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Rufina", serif; + color: #000a2d; + margin-top: 0px; + font-style: normal; + font-weight: 500; + text-transform: normal +} + +p { + font-family: "Rubik", sans-serif; + color: #10285d; + font-size: 16px; + line-height: 30px; + margin-bottom: 15px; + font-weight: normal +} + +.bg-img-1 { + background-image: url(../img/slider/slider-img-1.jpg) +} + +.bg-img-2 { + background-image: url(../img/background-img/bg-img-2.jpg) +} + +.cta-bg-1 { + background-image: url(../img/background-img/bg-img-3.jpg) +} + +.img { + max-width: 100%; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.f-left { + float: left +} + +.f-right { + float: right +} + +.fix { + overflow: hidden +} + +.clear { + clear: both +} + +a, +.button { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +a:focus, +.button:focus { + text-decoration: none; + outline: none +} + +a { + color: #635c5c +} + +a:hover { + color: #777777 +} + +a:focus, +a:hover, +.portfolio-cat a:hover, +.footer -menu li a:hover { + text-decoration: none +} + +a, +button { + color: #777777; + outline: medium none +} + +button:focus, +input:focus, +input:focus, +textarea, +textarea:focus { + outline: 0 +} + +.uppercase { + text-transform: uppercase +} + +input:focus::-moz-placeholder { + opacity: 0; + -webkit-transition: .4s; + -o-transition: .4s; + transition: .4s +} + +.capitalize { + text-transform: capitalize +} + +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: inherit +} + +ul { + margin: 0px; + padding: 0px +} + +li { + list-style: none +} + +hr { + border-bottom: 1px solid #eceff8; + border-top: 0 none; + margin: 30px 0; + padding: 0 +} + +.theme-overlay { + position: relative +} + +.theme-overlay::before { + background: #1696e7 none repeat scroll 0 0; + content: ""; + height: 100%; + left: 0; + opacity: 0.6; + position: absolute; + top: 0; + width: 100% +} + +.overlay { + position: relative; + z-index: 0 +} + +.overlay::before { + position: absolute; + content: ""; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1 +} + +.overlay2 { + position: relative; + z-index: 0 +} + +.overlay2::before { + position: absolute; + content: ""; + background-color: #2E2200; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; + opacity: 0.5 +} + +.section-padding { + padding-top: 120px; + padding-bottom: 120px +} + +.separator { + border-top: 1px solid #f2f2f2 +} + +.mb-90 { + margin-bottom: 90px +} + +@media (max-width: 767px) { + .mb-90 { + margin-bottom: 30px + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .mb-90 { + margin-bottom: 45px + } +} + +.owl-carousel .owl-nav div { + background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0; + height: 40px; + left: 20px; + line-height: 40px; + font-size: 22px; + color: #646464; + opacity: 1; + visibility: visible; + position: absolute; + text-align: center; + top: 50%; + transform: translateY(-50%); + transition: all 0.3s ease 0s; + width: 40px +} + +.owl-carousel .owl-nav div.owl-next { + left: auto; + right: -30px +} + +.owl-carousel .owl-nav div.owl-next i { + position: relative; + right: 0; + top: 1px +} + +.owl-carousel .owl-nav div.owl-prev i { + position: relative; + right: 1px; + top: 0px +} + +.owl-carousel:hover .owl-nav div { + opacity: 1; + visibility: visible +} + +.owl-carousel:hover .owl-nav div:hover { + color: #777777; + background: #ff3500 +} + +.btn { + background: #00ffd5; + padding: 27px 44px; + text-transform: capitalize; + font-family: "Rubik", sans-serif; + color: #777777; + cursor: pointer; + display: inline-block; + font-size: 14px; + border-radius: 5px; + -moz-user-select: none; + font-weight: 500; + letter-spacing: 1px; + line-height: 0; + margin-bottom: 0; + margin: 10px; + cursor: pointer; + transition: color 0.4s linear; + position: relative; + z-index: 1; + border: 0; + overflow: hidden; + margin: 0 +} + +.btn::before { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 101%; + height: 101%; + background: #e44239; + z-index: 1; + border-radius: 5px; + transition: transform 0.5s; + transition-timing-function: ease; + transform-origin: 0 0; + transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); + transform: scaleX(0); + border-radius: 0 +} + +.btn:hover::before { + transform: scaleX(1); + color: #777777 !important; + z-index: -1 +} + +.btn.focus, +.btn:focus { + outline: 0; + box-shadow: none +} + +.header-btn { + padding: 27px 18px +} + +@media (max-width: 575px) { + .hero-btn { + margin-bottom: 20 !important + } +} + +@media (max-width: 575px) { + .btn.btn-black.f-right { + float: left; + margin-top: 20px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .btn.btn-black.f-right { + float: left; + margin-top: 20px + } +} + +.submit-btn2 { + background: #00ffd5; + width: 100%; + height: 60px; + padding: 10px 20px; + border: 0; + color: #777777; + text-transform: capitalize; + cursor: pointer; + font-size: 16px; + border-radius: 0px +} + +.border-btn { + border: 1px solid #e3c6c6; + color: #464d65; + background: none; + border-radius: 5px; + text-transform: capitalize; + padding: 25px 57px; + -moz-user-select: none; + cursor: pointer; + display: inline-block; + font-size: 14px; + font-weight: 500; + letter-spacing: 1px; + margin-bottom: 0; + position: relative; + transition: color 0.4s linear; + position: relative; + overflow: hidden; + margin: 0 +} + +@media (max-width: 575px) { + .border-btn { + display: none + } +} + +.border-btn::before { + border: 1px solid transparent; + content: ""; + position: absolute; + left: 0; + top: 0; + width: 101%; + height: 101%; + background: #00ffd5; + z-index: -1; + transition: transform 0.5s; + transition-timing-function: ease; + transform-origin: 0 0; + transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); + transform: scaleY(0); + border-radius: 0 +} + +.border-btn:hover::before { + transform: scaleY(1); + border: 1px solid transparent +} + +.breadcrumb>.active { + color: #888 +} + +#scrollUp, +#back-top { + background: #00ffd5; + height: 50px; + width: 50px; + right: 31px; + bottom: 18px; + position: fixed; + color: #777777; + font-size: 20px; + text-align: center; + border-radius: 50%; + line-height: 48px; + border: 2px solid transparent; + box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2) +} + +@media (max-width: 575px) { + #scrollUp, + #back-top { + right: 16px + } +} + +#scrollUp a i, +#back-top a i { + display: block; + line-height: 50px +} + +#scrollUp:hover { + color: #777777 +} + +.sticky-bar { + left: 0; + margin: auto; + position: fixed; + top: 0; + width: 100%; + -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + z-index: 9999; + -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; + animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; + -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1); + background: #777777 +} + +.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 +} + +.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 +} + +.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 +} + +.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 +} + +.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 +} + +.pt-260 { + padding-top: 260px +} + +.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 +} + +.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-95 { + padding-left: 95px +} + +.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 +} + +.pl-130 { + padding-left: 130px +} + +.pl-135 { + padding-left: 135px +} + +.pl-140 { + padding-left: 140px +} + +.pl-145 { + padding-left: 145px +} + +.pl-150 { + padding-left: 150px +} + +.pl-155 { + padding-left: 155px +} + +.pl-160 { + padding-left: 160px +} + +.pl-165 { + padding-left: 165px +} + +.pl-170 { + padding-left: 170px +} + +.pl-175 { + padding-left: 175px +} + +.pl-180 { + padding-left: 180px +} + +.pl-185 { + padding-left: 185px +} + +.pl-190 { + padding-left: 190px +} + +.pl-195 { + padding-left: 195px +} + +.pl-200 { + padding-left: 200px +} + +.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 +} + +.pr-110 { + padding-right: 110px +} + +.pr-115 { + padding-right: 115px +} + +.pr-120 { + padding-right: 120px +} + +.pr-125 { + padding-right: 125px +} + +.pr-130 { + padding-right: 130px +} + +.pr-135 { + padding-right: 135px +} + +.pr-140 { + padding-right: 140px +} + +.pr-145 { + padding-right: 145px +} + +.pr-150 { + padding-right: 150px +} + +.pr-155 { + padding-right: 155px +} + +.pr-160 { + padding-right: 160px +} + +.pr-165 { + padding-right: 165px +} + +.pr-170 { + padding-right: 170px +} + +.pr-175 { + padding-right: 175px +} + +.pr-180 { + padding-right: 180px +} + +.pr-185 { + padding-right: 185px +} + +.pr-190 { + padding-right: 190px +} + +.pr-195 { + padding-right: 195px +} + +.pr-200 { + padding-right: 200px +} + +.bounce-animate { + animation-name: float-bob; + animation-duration: 2s; + animation-iteration-count: infinite; + -moz-animation-name: float-bob; + -moz-animation-duration: 2s; + -moz-animation-iteration-count: infinite; + -moz-animation-timing-function: linear; + -ms-animation-name: float-bob; + -ms-animation-duration: 2s; + -ms-animation-iteration-count: infinite; + -ms-animation-timing-function: linear; + -o-animation-name: float-bob; + -o-animation-duration: 2s; + -o-animation-iteration-count: infinite; + -o-animation-timing-function: linear +} + +@-webkit-keyframes float-bob { + 0% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px) + } + 50% { + -webkit-transform: translateY(-10px); + transform: translateY(-10px) + } + 100% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px) + } +} + +.heartbeat { + animation: heartbeat 1s infinite alternate +} + +@-webkit-keyframes heartbeat { + to { + -webkit-transform: scale(1.03); + transform: scale(1.03) + } +} + +.rotateme { + -webkit-animation-name: rotateme; + animation-name: rotateme; + -webkit-animation-duration: 30s; + animation-duration: 30s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + animation-timing-function: linear +} + +@keyframes rotateme { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg) + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg) + } +} + +@-webkit-keyframes rotateme { + from { + -webkit-transform: rotate(0deg) + } + to { + -webkit-transform: rotate(360deg) + } +} + +.preloader { + background-color: #f7f7f7; + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 999999; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s; + margin: 0 auto +} + +.preloader .preloader-circle { + width: 100px; + height: 100px; + position: relative; + border-style: solid; + border-width: 1px; + border-top-color: #00ffd5; + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + z-index: 10; + border-radius: 50%; + -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15); + box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15); + background-color: #fff; + -webkit-animation: zoom 2000ms infinite ease; + animation: zoom 2000ms infinite ease; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s +} + +.preloader .preloader-circle2 { + border-top-color: #0078ff +} + +.preloader .preloader-img { + position: absolute; + top: 50%; + z-index: 200; + left: 0; + right: 0; + margin: 0 auto; + text-align: center; + display: inline-block; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + padding-top: 6px; + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s +} + +.preloader .preloader-img img { + max-width: 55px +} + +.preloader .pere-text strong { + font-weight: 800; + color: #dca73a; + text-transform: uppercase +} + +@-webkit-keyframes zoom { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } +} + +@keyframes zoom { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-transition: .6s; + -o-transition: .6s; + transition: .6s + } +} + +.section-padding2 { + padding-top: 200px; + padding-bottom: 200px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padding2 { + padding-top: 200px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding2 { + padding-top: 200px; + padding-bottom: 200px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding2 { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media (max-width: 575px) { + .section-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +.pb-bottom { + padding-bottom: 200px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .pb-bottom { + padding-bottom: 200px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .pb-bottom { + padding-bottom: 50px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .pb-bottom { + padding-bottom: 10px + } +} + +@media (max-width: 575px) { + .pb-bottom { + padding-bottom: 10px + } +} + +.pb-top { + padding-top: 200px +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .pb-top { + padding-top: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .pb-top { + padding-top: 70px + } +} + +@media (max-width: 575px) { + .pb-top { + padding-top: 70px + } +} + +.testimonial-padding { + padding-top: 190px; + padding-bottom: 170px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .testimonial-padding { + padding-top: 190px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .testimonial-padding { + padding-top: 70px; + padding-bottom: 60px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .testimonial-padding { + padding-top: 60px; + padding-bottom: 40px + } +} + +@media (max-width: 575px) { + .testimonial-padding { + padding-top: 60px; + padding-bottom: 40px + } +} + +.w-padding2 { + padding-top: 130px; + padding-bottom: 125px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .w-padding2 { + padding-top: 130px; + padding-bottom: 125px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .w-padding2 { + padding-top: 100px; + padding-bottom: 100px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .w-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +@media (max-width: 575px) { + .w-padding2 { + padding-top: 70px; + padding-bottom: 70px + } +} + +.section-padding30 { + padding-top: 195px; + padding-bottom: 140px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .section-padding30 { + padding-top: 195px; + padding-bottom: 140px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding30 { + padding-top: 150px; + padding-bottom: 90px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding30 { + padding-top: 100px; + padding-bottom: 40px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding30 { + padding-top: 65px; + padding-bottom: 10px + } +} + +@media (max-width: 575px) { + .section-padding30 { + padding-top: 65px; + padding-bottom: 10px + } +} + +.services-padding { + padding-top: 145px; + padding-bottom: 170px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .services-padding { + padding-top: 145px; + padding-bottom: 170px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-padding { + padding-top: 100px; + padding-bottom: 70px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-padding { + padding-top: 65px; + padding-bottom: 70px + } +} + +@media (max-width: 575px) { + .services-padding { + padding-top: 65px; + padding-bottom: 70px + } +} + +.section-paddingt30 { + padding-top: 195px; + padding-bottom: 90px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-paddingt30 { + padding-top: 150px; + padding-bottom: 90px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-paddingt30 { + padding-top: 100px; + padding-bottom: 40px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-paddingt30 { + padding-top: 65px; + padding-bottom: 10px + } +} + +@media (max-width: 575px) { + .section-paddingt30 { + padding-top: 65px; + padding-bottom: 10px + } +} + +.section-padding3 { + padding-top: 150px; + padding-bottom: 0 +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-padding3 { + padding-top: 150px; + padding-bottom: 0 + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .section-padding3 { + padding-top: 60px; + padding-bottom: 0 + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-padding3 { + padding-top: 60px; + padding-bottom: 0 + } +} + +@media (max-width: 575px) { + .section-padding3 { + padding-top: 60px; + padding-bottom: 0 + } +} + +.footer-padding { + padding-top: 150px; + padding-bottom: 136px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .footer-padding { + padding-top: 150px; + padding-bottom: 136px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .footer-padding { + padding-top: 100px; + padding-bottom: 80px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .footer-padding { + padding-top: 80px; + padding-bottom: 40px + } +} + +@media (max-width: 575px) { + .footer-padding { + padding-top: 80px; + padding-bottom: 40px + } +} + +@media (max-width: 575px) { + .section-tittle { + margin-bottom: 50px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-tittle { + margin-bottom: 50px + } +} + +.section-tittle h2 { + font-size: 48px; + display: block; + color: #000a2d; + font-weight: 600 +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .section-tittle h2 { + font-size: 31px + } +} + +@media (max-width: 575px) { + .section-tittle h2 { + font-size: 24px; + line-height: 1.6 + } +} + +.section-bg { + background-size: cover; + background-repeat: no-repeat; + background-position: center center +} + +.white-bg { + background: #77777777 +} + +.gray-bg { + background: #f5f5f5 +} + +.gray-bg { + background: #f7f7fd +} + +.white-bg { + background: #777777 +} + +.black-bg { + background: #16161a +} + +.theme-bg { + background: #00ffd5 +} + +.brand-bg { + background: #f1f4fa +} + +.testimonial-bg { + background: #f9fafc +} + +.white-color { + color: #777777 +} + +.black-color { + color: #16161a +} + +.theme-color { + color: #00ffd5 +} + +.header-area .main-header { + padding: 0px 100px +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .header-area .main-header { + padding: 0px 30px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .header-area .main-header { + padding: 0px 15px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .header-area .main-header { + padding: 22px 50px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .header-area .main-header { + padding: 22px 20px + } +} + +@media (max-width: 575px) { + .header-area .main-header { + padding: 22px 14px + } +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .main-header .main-menu { + margin-right: 30px + } +} + +.main-header .main-menu ul li { + display: inline-block; + position: relative; + z-index: 1 +} + +.main-header .main-menu ul li a { + color: #000019; + font-weight: 500; + padding: 39px 10px; + display: block; + font-size: 16px; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s; + text-transform: capitalize; + position: relative; + margin: 0 23px; + font-family: "Rubik", sans-serif +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .main-header .main-menu ul li a { + padding: 39px 15px; + margin: 0 10px + } +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .main-header .main-menu ul li a { + margin: 0 10px + } +} + +.main-header .main-menu ul li:hover>a { + color: #00ffd5 +} + +.main-header .main-menu ul ul.submenu { + position: absolute; + width: 170px; + background: #fff; + left: 0; + top: 120%; + visibility: hidden; + opacity: 0; + box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); + padding: 17px 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.main-header .main-menu ul ul.submenu>li { + margin-left: 7px; + display: block +} + +.main-header .main-menu ul ul.submenu>li>a { + padding: 6px 10px !important; + font-size: 16px; + text-transform: capitalize; + margin: 0 +} + +.main-header .main-menu ul ul.submenu>li>a:hover { + color: #00ffd5; + background: none +} + +.main-menu ul li.active>a::before { + width: 100% +} + +.main-menu ul li:hover>a::before { + width: 100% +} + +.main-header .main-menu ul ul.submenu>li>a:hover { + padding-left: 15px !important +} + +.main-header .main-menu ul ul.submenu>li>a:hover::before { + width: 10px +} + +.main-header ul>li:hover>ul.submenu { + visibility: visible; + opacity: 1; + top: 100% +} + +.main-header .header-sticky.sticky-bar { + background: #777777 +} + +.header-sticky.sticky-bar .main-menu ul>li>a { + padding: 27px 13px; + margin: 0 10px +} + +.header-transparent { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 9 +} + +.mobile_menu { + position: absolute; + right: 0px; + width: 100%; + z-index: 99 +} + +.mobile_menu .slicknav_menu { + background: transparent; + margin-top: 16px !important +} + +.mobile_menu .slicknav_menu .slicknav_nav a:hover { + background: transparent; + color: #00ffd5 +} + +.mobile_menu .slicknav_menu .slicknav_icon-bar { + background-color: #00ffd5 !important +} + +.mobile_menu .slicknav_btn { + top: -55px +} + +.mobile_menu .slicknav_nav { + margin-top: 0px +} + +.slider-height { + background-image: url(../img/background/main.jpg); + min-height: 1000px; + background-repeat: no-repeat; + background-position: center center; + background-size: cover +} + +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .slider-height { + min-height: 700px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .slider-height { + min-height: 700px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .slider-height { + min-height: 700px + } +} + +@media (max-width: 575px) { + .slider-height { + min-height: 600px + } +} + +.slider-height2 { + background-image: url(../img/background/technology.jpg); + min-height: 400px; + background-repeat: no-repeat; + background-size: cover +} + +@media (max-width: 575px) { + .slider-height2 { + min-height: 260px + } +} + +.slider-area .hero__caption h1 { + font-size: 70px; + font-weight: 700; + margin-bottom: 14px; + color: #002d5b; + line-height: 1.2; + text-transform: capitalize; + margin-bottom: 29px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .slider-area .hero__caption h1 { + font-size: 60px; + line-height: 1.2 + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .slider-area .hero__caption h1 { + font-size: 50px; + line-height: 1.2 + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .slider-area .hero__caption h1 { + font-size: 35px; + line-height: 1.2 + } +} + +@media (max-width: 575px) { + .slider-area .hero__caption h1 { + font-size: 35px; + line-height: 1.2 + } +} + +.slider-area .hero__caption span { + font-size: 18px; + line-height: 1.2; + font-weight: 300; + margin-bottom: 39px; + color: #00ffd5; + margin-bottom: 37px; + text-transform: uppercase; + display: inline-block +} + +@media (max-width: 575px) { + .slider-area .hero__caption span { + margin-bottom: 30px + } +} + +.slider-area .hero__caption p { + color: #464d65; + margin-bottom: 42px +} + +.hero-overly { + position: relative; + z-index: 1 +} + +.hero-overly::before { + position: absolute; + content: ""; + background-color: rgba(1, 10, 28, 0.3); + width: 100%; + height: 100%; + left: 0; + top: 0; + bottom: 0; + right: 0; + z-index: -1; + background-repeat: no-repeat +} + +.slider-area .hero-cap h2 { + font-size: 70px; + font-weight: 900; + text-transform: capitalize; + margin-bottom: 15px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .slider-area .hero-cap h2 { + font-size: 50px + } +} + +@media (max-width: 575px) { + .slider-area .hero-cap h2 { + font-size: 50px + } +} + +.slider-area .hero-cap .breadcrumb { + background: none; + padding: 0; + margin: 0 +} + +.slider-area .hero-cap .breadcrumb a { + color: #00ffd5; + font-size: 18px; + text-transform: capitalize +} + +.slider-area .hero-cap .breadcrumb-item+.breadcrumb-item::before { + color: #4d58ec +} + +@media (max-width: 575px) { + .slider-area .hero-cap.hero-cap2 { + padding-top: 50px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .slider-area .hero-cap.hero-cap2 { + padding-top: 50px + } +} + +.slider-area .hero-cap.hero-cap2 h2 { + font-size: 60px; + font-weight: 700; + text-transform: capitalize +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .slider-area .hero-cap.hero-cap2 h2 { + font-size: 37px + } +} + +@media (max-width: 575px) { + .slider-area .hero-cap.hero-cap2 h2 { + font-size: 26px + } +} + +.about-area .about-caption h3 { + font-size: 30px; + color: #000a2d; + font-weight: 700; + margin-bottom: 35px; + line-height: 1.5 +} + +@media (max-width: 575px) { + .about-area .about-caption h3 { + font-size: 24px; + line-height: 1.6 + } +} + +.about-area .about-caption .pera1 { + margin-bottom: 25px +} + +.about-area .about-caption2 h3 { + font-size: 40px; + color: #000a2d; + font-weight: 700; + margin-bottom: 35px; + line-height: 1.5 +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .about-area .about-caption2 h3 { + font-size: 30px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .about-area .about-caption2 h3 { + font-size: 30px + } +} + +@media (max-width: 575px) { + .about-area .about-caption2 h3 { + font-size: 25px + } +} + +.about-area .about-caption2 p { + color: #464d65; + font-size: 20px; + font-weight: 500; + margin-bottom: 10px +} + +.about-area .about-caption2 .send-cv { + display: flex; + justify-content: space-between +} + +.about-area .about-caption2 .send-cv a { + color: #000a2d; + font-size: 35px; + font-weight: 500; + margin-bottom: 10px; + text-decoration: underline; + display: inline-block +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .about-area .about-caption2 .send-cv a { + font-size: 30px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .about-area .about-caption2 .send-cv a { + font-size: 28px + } +} + +@media (max-width: 575px) { + .about-area .about-caption2 .send-cv a { + font-size: 25px + } +} + +.about-area .about-caption2 .send-cv i { + font-size: 30px; + cursor: pointer; + text-decoration: double underline; + position: relative; + bottom: -10px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .about-area .about-caption2 .send-cv i { + bottom: -6px; + font-size: 23px + } +} + +@media (max-width: 575px) { + .about-area .about-caption2 .send-cv i { + bottom: -6px; + font-size: 23px + } +} + +.about-me .about-me-img img { + width: 100% +} + +.about-me .about-me-caption h2 { + font-size: 48px; + display: block; + color: #000a2d; + font-weight: 600; + margin-bottom: 40px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .about-me .about-me-caption h2 { + font-size: 41px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .about-me .about-me-caption h2 { + font-size: 35px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .about-me .about-me-caption h2 { + font-size: 31px + } +} + +@media (max-width: 575px) { + .about-me .about-me-caption h2 { + font-size: 24px; + line-height: 1.6 + } +} + +.about-me .about-me-caption h5 { + padding-left: 25px; + border-left: 2px solid #ff5f13; + margin-bottom: 30px +} + +.services-area .single-services img { + width: 100% +} + +.services-area .properties__button { + float: right +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-area .properties__button { + float: left + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-area .properties__button { + float: left + } +} + +@media (max-width: 575px) { + .services-area .properties__button { + float: left + } +} + +.services-area .nav-tabs .nav-link { + border: 0; + border-bottom: 2px solid transparent; + padding: 10px 20px +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .services-area .nav-tabs .nav-link { + padding: 10px 10px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-area .nav-tabs .nav-link { + padding: 10px 15px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-area .nav-tabs .nav-link { + padding: 10px 15px + } +} + +@media (max-width: 575px) { + .services-area .nav-tabs .nav-link { + padding: 10px 15px + } +} + +.services-area .nav-tabs::before { + position: absolute; + content: ""; + width: 100%; + height: 2px; + background: #e7ebf2; + bottom: -1px; + left: 0 +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-area .nav-tabs::before { + display: none + } +} + +@media (max-width: 575px) { + .services-area .nav-tabs::before { + display: none + } +} + +.services-area .nav-tabs .nav-item.show .nav-link, +.services-area .nav-tabs .nav-link.active { + background: none; + border-bottom: 2px solid #33a14f; + z-index: 5; + position: relative +} + +.services-area .nav-tabs .nav-item { + display: block; + color: #161e46; + font-weight: 500; + text-transform: capitalize; + font-size: 16px +} + +.services-area .nav-tabs { + margin-bottom: 9px; + padding-bottom: 0px; + position: relative; + border: 0; + display: flex; + justify-content: center +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .services-area .nav-tabs { + justify-content: start + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .services-area .nav-tabs { + justify-content: start + } +} + +@media (max-width: 575px) { + .services-area .nav-tabs { + justify-content: start + } +} + +.tab-pane { + -webkit-transition: all .6s ease-out 0s; + -moz-transition: all .6s ease-out 0s; + -ms-transition: all .6s ease-out 0s; + -o-transition: all .6s ease-out 0s; + transition: all .6s ease-out 0s +} + +.wantToWork-area { + background-image: url(../img/gallery/section_bg02.jpg); + background-size: cover; + background-repeat: no-repeat +} + +.wantToWork-area .wantToWork-caption h2 { + color: #4d58ec; + font-size: 48px; + font-weight: 700; + line-height: 1.5; + margin: 0 +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .wantToWork-area .wantToWork-caption h2 { + font-size: 30px + } +} + +@media (max-width: 575px) { + .wantToWork-area .wantToWork-caption h2 { + font-size: 25px; + margin-bottom: 20px + } +} + +.wantToWork-area .wantToWork-caption p { + font-size: 18px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .wantToWork-area .wantToWork-btn { + float: left; + margin-top: 30px + } +} + +@media (max-width: 575px) { + .wantToWork-area .wantToWork-btn { + float: left; + margin-top: 30px + } +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .wantToWork-area .wantToWork-btn { + float: left; + margin-top: 30px + } +} + +.contact-info-area .contact-caption h3 { + font-size: 48px; + display: block; + color: #000a2d; + font-weight: 600; + margin-bottom: 40px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .contact-info-area .contact-caption h3 { + font-size: 31px + } +} + +@media (max-width: 575px) { + .contact-info-area .contact-caption h3 { + font-size: 28px; + line-height: 1.6 + } +} + +.contact-info-area .contact-caption p { + margin-bottom: 40px +} + +.contact-info-area .contact-wrapper input { + background: #777777; + height: 60px; + width: 100%; + padding: 10px 26px; + border: 0; + color: #a3a3a3; + font-weight: 500; + text-transform: capitalize; + border-radius: 0px; + border: 0; + margin-bottom: 30px +} + +.contact-info-area .contact-wrapper input::placeholder { + color: #9696a7; + font-weight: 300; + font-size: 16px +} + +.contact-info-area .contact-wrapper textarea { + color: #a3a3a3; + background: #777777; + font-weight: 500; + letter-spacing: 2px; + text-transform: capitalize; + height: 160px; + width: 100%; + padding: 30px 26px; + border: 0; + border-radius: 0px; + border: 0; + margin-bottom: 30px +} + +.contact-info-area .contact-wrapper textarea::placeholder { + color: #9696a7; + font-weight: 300; + font-size: 16px +} + +.portfolio-details-area .details-img img { + width: 100% +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .portfolio-details-area .details-caption { + padding-left: 0 + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .portfolio-details-area .details-caption { + padding-left: 0 + } +} + +@media (max-width: 575px) { + .portfolio-details-area .details-caption { + padding-left: 0 + } +} + +.portfolio-details-area .details-caption h3 { + font-size: 36px; + font-weight: 700; + line-height: 1.2; + margin-bottom: 23px +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .portfolio-details-area .details-caption h3 { + font-size: 29px + } +} + +@media (max-width: 575px) { + .portfolio-details-area .details-caption h3 { + font-size: 29px + } +} + +.portfolio-details-area .details-caption p { + color: #677294 +} + +.categories-area { + background-image: url(../img/gallery/shape1.png); + background-size: 71%; + background-repeat: no-repeat; + background-position: left top +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .categories-area { + background-image: unset + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .categories-area { + background-image: unset + } +} + +@media (max-width: 575px) { + .categories-area { + background-image: unset + } +} + +.categories-area.categories-area2 { + background-image: unset +} + +.categories-area .single-cat { + border: 1px solid #e1ebf7; + border-radius: 6px; + padding: 61px 22px; + -webkit-transition: all .4s ease-out 0s; + -moz-transition: all .4s ease-out 0s; + -ms-transition: all .4s ease-out 0s; + -o-transition: all .4s ease-out 0s; + transition: all .4s ease-out 0s; + position: relative; + z-index: 1 +} + +.categories-area .single-cat::before { + position: absolute; + content: ""; + width: 100%; + height: 0; + background: #ffd000; + transition: .6s; + bottom: 0; + left: 0; + z-index: -1; + border-radius: 6px +} + +.categories-area .single-cat .cat-icon span { + color: #4d58ec; + font-size: 50px; + margin-bottom: 30px; + display: block; + margin-bottom: 50px; + width: 100px; + height: 100px; + background: #8dffc6; + line-height: 100px; + text-align: center; + border-radius: 50px; + display: inline-block +} + +.categories-area .single-cat .cat-cap h5>a { + font-size: 25px; + font-weight: 700; + margin-bottom: 21px; + display: block; + -webkit-transition: all .2s ease-out 0s; + -moz-transition: all .2s ease-out 0s; + -ms-transition: all .2s ease-out 0s; + -o-transition: all .2s ease-out 0s; + transition: all .2s ease-out 0s +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .categories-area .single-cat .cat-cap h5>a { + font-size: 21px + } +} + +@media (max-width: 575px) { + .categories-area .single-cat .cat-cap h5>a { + font-size: 21px + } +} + +.categories-area .single-cat .cat-cap p { + margin-bottom: 36px; + color: #57667e; + font-size: 16px; + -webkit-transition: all .2s ease-out 0s; + -moz-transition: all .2s ease-out 0s; + -ms-transition: all .2s ease-out 0s; + -o-transition: all .2s ease-out 0s; + transition: all .2s ease-out 0s; + margin: 0 +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .categories-area .single-cat .cat-cap p { + font-size: 15px + } +} + +.categories-area .single-cat .cat-cap a { + color: #1c165c; + font-size: 16px; + font-weight: 600; + -webkit-transition: all .2s ease-out 0s; + -moz-transition: all .2s ease-out 0s; + -ms-transition: all .2s ease-out 0s; + -o-transition: all .2s ease-out 0s; + transition: all .2s ease-out 0s +} + +.categories-area .single-cat:hover { + border: 1px solid transparent +} + +.categories-area .single-cat:hover::before { + height: 100% +} + +.categories-area .single-cat:hover .cat-icon span { + background: #777777 +} + +.categories-area .single-cat:hover .cat-cap h5 { + color: #fff +} + +.categories-area .single-cat:hover .cat-cap p { + color: #777777 +} + +.categories-area .single-cat:hover .cat-cap a { + color: #777777 +} + +.footer-area { + background: #080827 +} + +.footer-area .footer-top .footer-top-cap img { + margin-bottom: 30px +} + +.footer-area .footer-top .footer-top-cap span a { + font-size: 50px; + display: block; + color: #777777; + font-weight: 400; + margin-bottom: 20px +} + +@media (max-width: 575px) { + .footer-area .footer-top .footer-top-cap span a { + font-size: 27px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .footer-area .footer-top .footer-top-cap span a { + font-size: 45px + } +} + +.footer-area .footer-top .footer-top-cap span a:hvoer { + color: #777777 +} + +.footer-area .footer-top .footer-top-cap p { + color: #c5c5dd; + margin-bottom: 1px +} + +.footer-area .footer-bottom { + padding-bottom: 50px; + padding-top: 20px +} + +.footer-area .footer-bottom .footer-copy-right p { + color: #393a50; + font-weight: 300; + font-size: 16px; + line-height: 2; + margin-bottom: 12px +} + +.footer-area .footer-bottom .footer-copy-right p i { + color: #4d58ec +} + +.footer-area .footer-bottom .footer-copy-right p a { + color: #4d58ec +} + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .footer-area .footer-social { + float: left; + padding-top: 10px + } +} + +@media only screen and (min-width: 576px) and (max-width: 767px) { + .footer-area .footer-social { + float: left; + padding-top: 10px + } +} + +@media (max-width: 575px) { + .footer-area .footer-social { + float: left; + padding-top: 10px + } +} + +.footer-area .footer-social a { + color: #848493; + font-size: 14px; + text-align: center; + margin-left: 16px +} + +.footer-area .footer-social a:first-child { + margin-left: 0px +} + +.footer-area .footer-social a:hover { + color: #777777 +} + +.hero-caption span { + color: #777777; + font-size: 16px; + display: block; + margin-bottom: 24px; + font-weight: 600; + padding-left: 95px; + position: relative +} + +.hero-caption span::before { + position: absolute; + content: ""; + width: 75px; + height: 3px; + background: #4d58ec; + left: 0; + top: 52%; + transform: translateY(-50%) +} + +.hero-caption h2 { + color: #fff; + font-size: 50px; + font-weight: 700 +} + +.latest-blog-area .custom-row { + margin: 0 -15px +} + +.latest-blog-area .blog-wrapper { + border: 1px solid #f0f0f0; + border-radius: 5px; + padding: 50px 40px; + position: relative; + background: #fff +} + +.latest-blog-area .blog-wrapper .blog-inner .blog-top { + display: flex; + align-items: center; + margin-bottom: 30px +} + +.latest-blog-area .blog-wrapper .blog-inner .blog-top p { + margin-top: 30px; + margin-bottom: 34px +} + +.latest-blog-area .blog-wrapper .blog-inner .blog-top .comment-person { + margin-left: 20px +} + +.latest-blog-area .blog-wrapper .blog-inner .blog-top .comment-person h2 { + color: #4d58ec; + font-size: 18px; + font-weight: 600 +} + +.latest-blog-area .blog-wrapper .blog-inner .blog-top .comment-person span { + color: #57667e; + font-weight: 300; + font-size: 14px +} + +.blog-active button { + cursor: pointer +} + +.blog-active .slick-arrow { + position: absolute; + top: -154px; + right: 10px; + background: none; + border: none; + background: red; + width: 50px; + height: 50px; + line-height: 50px; + background: #fff; + color: #ff5a5a; + border: 2px solid #f5f5f5; + padding: 0; + border-radius: 50%; + cursor: pointer +} + +.blog-active .slick-prev.slick-arrow { + right: 65px +} + +.latest-blog-area .area-heading { + margin-bottom: 70px +} + +.blog_area a { + color: "Rufina", serif !important; + text-decoration: none; + transition: .4s +} + +.blog_area a:hover, +.blog_area a :hover { + background: -webkit-linear-gradient(131deg, #4d58ec 0%, #4d58ec 99%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-decoration: none; + transition: .4s +} + +.single-blog { + overflow: hidden; + margin-bottom: 30px +} + +.single-blog:hover { + box-shadow: 0px 10px 20px 0px rgba(42, 34, 123, 0.1) +} + +.single-blog .thumb { + overflow: hidden; + position: relative +} + +.single-blog .thumb:after { + content: ''; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #000; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-blog h4 { + border-bottom: 1px solid #dfdfdf; + padding-bottom: 34px; + margin-bottom: 25px +} + +.single-blog a { + font-size: 20px; + font-weight: 600 +} + +.single-blog .date { + color: #666666; + text-align: left; + display: inline-block; + font-size: 13px; + font-weight: 300 +} + +.single-blog .tag { + text-align: left; + display: inline-block; + float: left; + font-size: 13px; + font-weight: 300; + margin-right: 22px; + position: relative +} + +.single-blog .tag:after { + content: ''; + position: absolute; + width: 1px; + height: 10px; + background: #acacac; + right: -12px; + top: 7px +} + +@media (max-width: 1199px) { + .single-blog .tag { + margin-right: 8px + } + .single-blog .tag:after { + display: none + } +} + +.single-blog .likes { + margin-right: 16px +} + +@media (max-width: 800px) { + .single-blog { + margin-bottom: 30px + } +} + +.single-blog .single-blog-content { + padding: 30px +} + +.single-blog .single-blog-content .meta-bottom p { + font-size: 13px; + font-weight: 300 +} + +.single-blog .single-blog-content .meta-bottom i { + color: #fdcb9e; + font-size: 13px; + margin-right: 7px +} + +@media (max-width: 1199px) { + .single-blog .single-blog-content { + padding: 15px + } +} + +.single-blog:hover .thumb:after { + opacity: .7; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +@media (max-width: 1199px) { + .single-blog h4 { + transition: all 300ms linear 0s; + border-bottom: 1px solid #dfdfdf; + padding-bottom: 14px; + margin-bottom: 12px + } + .single-blog h4 a { + font-size: 18px + } +} + +.full_image.single-blog { + position: relative +} + +.full_image.single-blog .single-blog-content { + position: absolute; + left: 35px; + bottom: 0; + opacity: 0; + visibility: hidden; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +@media (min-width: 992px) { + .full_image.single-blog .single-blog-content { + bottom: 100px + } +} + +.full_image.single-blog h4 { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s; + border-bottom: none; + padding-bottom: 5px +} + +.full_image.single-blog a { + font-size: 20px; + font-weight: 600 +} + +.full_image.single-blog .date { + color: #fff +} + +.full_image.single-blog:hover .single-blog-content { + opacity: 1; + visibility: visible; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.l_blog_item .l_blog_text .date { + margin-top: 24px; + margin-bottom: 15px +} + +.l_blog_item .l_blog_text .date a { + font-size: 12px +} + +.l_blog_item .l_blog_text h4 { + font-size: 18px; + border-bottom: 1px solid #eeeeee; + margin-bottom: 0px; + padding-bottom: 20px; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.l_blog_item .l_blog_text p { + margin-bottom: 0px; + padding-top: 20px +} + +.causes_slider .owl-dots { + text-align: center; + margin-top: 80px +} + +.causes_slider .owl-dots .owl-dot { + height: 14px; + width: 14px; + background: #eeeeee; + display: inline-block; + margin-right: 7px +} + +.causes_slider .owl-dots .owl-dot:last-child { + margin-right: 0px +} + +.causes_item { + background: #fff +} + +.causes_item .causes_img { + position: relative +} + +.causes_item .causes_img .c_parcent { + position: absolute; + bottom: 0px; + width: 100%; + left: 0px; + height: 3px; + background: rgba(255, 255, 255, 0.5) +} + +.causes_item .causes_img .c_parcent span { + width: 70%; + height: 3px; + position: absolute; + left: 0px; + bottom: 0px +} + +.causes_item .causes_img .c_parcent span:before { + content: "75%"; + position: absolute; + right: -10px; + bottom: 0px; + color: #fff; + padding: 0px 5px +} + +.causes_item .causes_text { + padding: 30px 35px 40px 30px +} + +.causes_item .causes_text h4 { + font-size: 18px; + font-weight: 600; + margin-bottom: 15px; + cursor: pointer +} + +.causes_item .causes_text p { + font-size: 14px; + line-height: 24px; + font-weight: 300; + margin-bottom: 0px +} + +.causes_item .causes_bottom a { + width: 50%; + border: 1px solid; + text-align: center; + float: left; + line-height: 50px; + color: #fff; + font-size: 14px; + font-weight: 500 +} + +.causes_item .causes_bottom a+a { + border-color: #eeeeee; + background: #fff; + font-size: 14px +} + +.latest_blog_area { + background: #f9f9ff +} + +.single-recent-blog-post { + margin-bottom: 30px +} + +.single-recent-blog-post .thumb { + overflow: hidden +} + +.single-recent-blog-post .thumb img { + transition: all 0.7s linear +} + +.single-recent-blog-post .details { + padding-top: 30px +} + +.single-recent-blog-post .details .sec_h4 { + line-height: 24px; + padding: 10px 0px 13px; + transition: all 0.3s linear +} + +.single-recent-blog-post .date { + font-size: 14px; + line-height: 24px; + font-weight: 400 +} + +.single-recent-blog-post:hover img { + transform: scale(1.23) rotate(10deg) +} + +.tags .tag_btn { + font-size: 12px; + font-weight: 500; + line-height: 20px; + border: 1px solid #eeeeee; + display: inline-block; + padding: 1px 18px; + text-align: center +} + +.tags .tag_btn+.tag_btn { + margin-left: 2px +} + +.blog_categorie_area { + padding-top: 30px; + padding-bottom: 30px +} + +@media (min-width: 900px) { + .blog_categorie_area { + padding-top: 80px; + padding-bottom: 80px + } +} + +@media (min-width: 1100px) { + .blog_categorie_area { + padding-top: 120px; + padding-bottom: 120px + } +} + +.categories_post { + position: relative; + text-align: center; + cursor: pointer +} + +.categories_post img { + max-width: 100% +} + +.categories_post .categories_details { + position: absolute; + top: 20px; + left: 20px; + right: 20px; + bottom: 20px; + background: rgba(34, 34, 34, 0.75); + color: #fff; + transition: all 0.3s linear; + display: flex; + align-items: center; + justify-content: center +} + +.categories_post .categories_details h5 { + margin-bottom: 0px; + font-size: 18px; + line-height: 26px; + text-transform: uppercase; + color: #fff; + position: relative +} + +.categories_post .categories_details p { + font-weight: 300; + font-size: 14px; + line-height: 26px; + margin-bottom: 0px +} + +.categories_post .categories_details .border_line { + margin: 10px 0px; + background: #fff; + width: 100%; + height: 1px +} + +.categories_post:hover .categories_details { + background: rgba(222, 99, 32, 0.85) +} + +.blog_item { + margin-bottom: 50px +} + +.blog_details { + padding: 30px 0 20px 10px; + box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3) +} + +@media (min-width: 768px) { + .blog_details { + padding: 60px 30px 35px 35px + } +} + +.blog_details p { + margin-bottom: 30px +} + +.blog_details a { + color: #242b5e +} + +.blog_details a:hover { + color: #4d58ec +} + +.blog_details h2 { + font-size: 18px; + font-weight: 600; + margin-bottom: 8px +} + +@media (min-width: 768px) { + .blog_details h2 { + font-size: 24px; + margin-bottom: 15px + } +} + +.blog-info-link li { + float: left; + font-size: 14px +} + +.blog-info-link li a { + color: #999999 +} + +.blog-info-link li i, +.blog-info-link li span { + font-size: 13px; + margin-right: 5px +} + +.blog-info-link li::after { + content: "|"; + padding-left: 10px; + padding-right: 10px +} + +.blog-info-link li:last-child::after { + display: none +} + +.blog-info-link::after { + content: ""; + display: block; + clear: both; + display: table +} + +.blog_item_img { + position: relative +} + +.blog_item_img .blog_item_date { + position: absolute; + bottom: -10px; + left: 10px; + display: block; + color: #fff; + background-color: #4d58ec; + padding: 8px 15px; + border-radius: 5px +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date { + bottom: -20px; + left: 40px; + padding: 13px 30px + } +} + +.blog_item_img .blog_item_date h3 { + font-size: 22px; + font-weight: 600; + color: #fff; + margin-bottom: 0; + line-height: 1.2 +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date h3 { + font-size: 30px + } +} + +.blog_item_img .blog_item_date p { + font-size: 18px; + margin-bottom: 0; + color: #fff +} + +@media (min-width: 768px) { + .blog_item_img .blog_item_date p { + font-size: 18px + } +} + +.blog_right_sidebar .widget_title { + font-size: 20px; + margin-bottom: 40px +} + +.blog_right_sidebar .widget_title::after { + content: ""; + display: block; + padding-top: 15px; + border-bottom: 1px solid #f0e9ff +} + +.blog_right_sidebar .single_sidebar_widget { + background: #fbf9ff; + padding: 30px; + margin-bottom: 30px +} + +.blog_right_sidebar .single_sidebar_widget .btn_1 { + margin-top: 0px +} + +.blog_right_sidebar .search_widget .form-control { + height: 50px; + border-color: #f0e9ff; + font-size: 13px; + color: #999999; + padding-left: 20px; + border-radius: 0; + border-right: 0 +} + +.blog_right_sidebar .search_widget .form-control::placeholder { + color: #999999 +} + +.blog_right_sidebar .search_widget .form-control:focus { + border-color: #f0e9ff; + outline: 0; + box-shadow: none +} + +.blog_right_sidebar .search_widget .input-group button { + background: #4d58ec; + border-left: 0; + border: 1px solid #f0e9ff; + padding: 4px 15px; + border-left: 0; + cursor: pointer +} + +.blog_right_sidebar .search_widget .input-group button i { + color: #fff +} + +.blog_right_sidebar .search_widget .input-group button span { + font-size: 14px; + color: #999999 +} + +.blog_right_sidebar .newsletter_widget .form-control { + height: 50px; + border-color: #f0e9ff; + font-size: 13px; + color: #999999; + padding-left: 20px; + border-radius: 0 +} + +.blog_right_sidebar .newsletter_widget .form-control::placeholder { + color: #999999 +} + +.blog_right_sidebar .newsletter_widget .form-control:focus { + border-color: #f0e9ff; + outline: 0; + box-shadow: none +} + +.blog_right_sidebar .newsletter_widget .input-group button { + background: #fff; + border-left: 0; + border: 1px solid #f0e9ff; + padding: 4px 15px; + border-left: 0 +} + +.blog_right_sidebar .newsletter_widget .input-group button i, +.blog_right_sidebar .newsletter_widget .input-group button span { + font-size: 14px; + color: #fff +} + +.blog_right_sidebar .post_category_widget .cat-list li { + border-bottom: 1px solid #f0e9ff; + transition: all 0.3s ease 0s; + padding-bottom: 12px +} + +.blog_right_sidebar .post_category_widget .cat-list li:last-child { + border-bottom: 0 +} + +.blog_right_sidebar .post_category_widget .cat-list li a { + font-size: 14px; + line-height: 20px; + color: #888888 +} + +.blog_right_sidebar .post_category_widget .cat-list li a p { + margin-bottom: 0px +} + +.blog_right_sidebar .post_category_widget .cat-list li+li { + padding-top: 15px +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body { + justify-content: center; + align-self: center; + padding-left: 20px +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body h3 { + font-size: 16px; + line-height: 20px; + margin-bottom: 6px; + transition: all 0.3s linear +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover { + color: #fff +} + +.blog_right_sidebar .popular_post_widget .post_item .media-body p { + font-size: 14px; + line-height: 21px; + margin-bottom: 0px +} + +.blog_right_sidebar .popular_post_widget .post_item+.post_item { + margin-top: 20px +} + +.blog_right_sidebar .tag_cloud_widget ul li { + display: inline-block +} + +.blog_right_sidebar .tag_cloud_widget ul li a { + display: inline-block; + border: 1px solid #eeeeee; + background: #fff; + padding: 4px 20px; + margin-bottom: 8px; + margin-right: 3px; + transition: all 0.3s ease 0s; + color: #888888; + font-size: 13px +} + +.blog_right_sidebar .tag_cloud_widget ul li a:hover { + background: #4d58ec; + color: #fff !important; + -webkit-text-fill-color: #fff; + text-decoration: none; + -webkit-transition: 0.5s; + transition: 0.5s +} + +.blog_right_sidebar .instagram_feeds .instagram_row { + display: flex; + margin-right: -6px; + margin-left: -6px +} + +.blog_right_sidebar .instagram_feeds .instagram_row li { + width: 33.33%; + float: left; + padding-right: 6px; + padding-left: 6px; + margin-bottom: 15px +} + +.blog_right_sidebar .br { + width: 100%; + height: 1px; + background: #eee; + margin: 30px 0px +} + +.blog-pagination { + margin-top: 80px +} + +.blog-pagination .page-link { + font-size: 14px; + position: relative; + display: block; + padding: 0; + text-align: center; + margin-left: -1px; + line-height: 45px; + width: 45px; + height: 45px; + border-radius: 0 !important; + color: #8a8a8a; + border: 1px solid #f0e9ff; + margin-right: 10px +} + +.blog-pagination .page-link i, +.blog-pagination .page-link span { + font-size: 13px +} + +.blog-pagination .page-item.active .page-link { + background-color: #fbf9ff; + border-color: #f0e9ff; + color: #888888 +} + +.blog-pagination .page-item:last-child .page-link { + margin-right: 0 +} + +.single-post-area .blog_details { + box-shadow: none; + padding: 0 +} + +.single-post-area .social-links { + padding-top: 10px +} + +.single-post-area .social-links li { + display: inline-block; + margin-bottom: 10px +} + +.single-post-area .social-links li a { + color: #cccccc; + padding: 7px; + font-size: 14px; + transition: all 0.2s linear +} + +.single-post-area .blog_details { + padding-top: 26px +} + +.single-post-area .blog_details p { + margin-bottom: 20px; + font-size: 15px +} + +.single-post-area .quote-wrapper { + background: rgba(130, 139, 178, 0.1); + padding: 15px; + line-height: 1.733; + color: #888888; + font-style: italic; + margin-top: 25px; + margin-bottom: 25px +} + +@media (min-width: 768px) { + .single-post-area .quote-wrapper { + padding: 30px + } +} + +.single-post-area .quotes { + background: #fff; + padding: 15px 15px 15px 20px; + border-left: 2px solid +} + +@media (min-width: 768px) { + .single-post-area .quotes { + padding: 25px 25px 25px 30px + } +} + +.single-post-area .arrow { + position: absolute +} + +.single-post-area .arrow .lnr { + font-size: 20px; + font-weight: 600 +} + +.single-post-area .thumb .overlay-bg { + background: rgba(0, 0, 0, 0.8) +} + +.single-post-area .navigation-top { + padding-top: 15px; + border-top: 1px solid #f0e9ff +} + +.single-post-area .navigation-top p { + margin-bottom: 0 +} + +.single-post-area .navigation-top .like-info { + font-size: 14px +} + +.single-post-area .navigation-top .like-info i, +.single-post-area .navigation-top .like-info span { + font-size: 16px; + margin-right: 5px +} + +.single-post-area .navigation-top .comment-count { + font-size: 14px +} + +.single-post-area .navigation-top .comment-count i, +.single-post-area .navigation-top .comment-count span { + font-size: 16px; + margin-right: 5px +} + +.single-post-area .navigation-top .social-icons li { + display: inline-block; + margin-right: 15px +} + +.single-post-area .navigation-top .social-icons li:last-child { + margin: 0 +} + +.single-post-area .navigation-top .social-icons li i, +.single-post-area .navigation-top .social-icons li span { + font-size: 14px; + color: #999999 +} + +.single-post-area .blog-author { + padding: 40px 30px; + background: #fbf9ff; + margin-top: 50px +} + +@media (max-width: 600px) { + .single-post-area .blog-author { + padding: 20px 8px + } +} + +.single-post-area .blog-author img { + width: 90px; + height: 90px; + border-radius: 50%; + margin-right: 30px +} + +@media (max-width: 600px) { + .single-post-area .blog-author img { + margin-right: 15px; + width: 45px; + height: 45px + } +} + +.single-post-area .blog-author a { + display: inline-block +} + +.single-post-area .blog-author a:hover { + color: #4d58ec +} + +.single-post-area .blog-author p { + margin-bottom: 0; + font-size: 15px +} + +.single-post-area .blog-author h4 { + font-size: 16px +} + +.single-post-area .navigation-area { + border-bottom: 1px solid #eee; + padding-bottom: 30px; + margin-top: 55px +} + +.single-post-area .navigation-area p { + margin-bottom: 0px +} + +.single-post-area .navigation-area h4 { + font-size: 18px; + line-height: 25px +} + +.single-post-area .navigation-area .nav-left { + text-align: left +} + +.single-post-area .navigation-area .nav-left .thumb { + margin-right: 20px; + background: #000 +} + +.single-post-area .navigation-area .nav-left .thumb img { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-left .lnr { + margin-left: 20px; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-left:hover .lnr { + opacity: 1 +} + +.single-post-area .navigation-area .nav-left:hover .thumb img { + opacity: .5 +} + +@media (max-width: 767px) { + .single-post-area .navigation-area .nav-left { + margin-bottom: 30px + } +} + +.single-post-area .navigation-area .nav-right { + text-align: right +} + +.single-post-area .navigation-area .nav-right .thumb { + margin-left: 20px; + background: #000 +} + +.single-post-area .navigation-area .nav-right .thumb img { + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-right .lnr { + margin-right: 20px; + opacity: 0; + -webkit-transition: all .3s ease-out 0s; + -moz-transition: all .3s ease-out 0s; + -ms-transition: all .3s ease-out 0s; + -o-transition: all .3s ease-out 0s; + transition: all .3s ease-out 0s +} + +.single-post-area .navigation-area .nav-right:hover .lnr { + opacity: 1 +} + +.single-post-area .navigation-area .nav-right:hover .thumb img { + opacity: .5 +} + +@media (max-width: 991px) { + .single-post-area .sidebar-widgets { + padding-bottom: 0px + } +} + +.comments-area { + background: transparent; + border-top: 1px solid #eee; + padding: 45px 0; + margin-top: 50px +} + +@media (max-width: 414px) { + .comments-area { + padding: 50px 8px + } +} + +.comments-area h4 { + margin-bottom: 35px; + font-size: 18px +} + +.comments-area h5 { + font-size: 16px; + margin-bottom: 0px +} + +.comments-area .comment-list { + padding-bottom: 48px +} + +.comments-area .comment-list:last-child { + padding-bottom: 0px +} + +.comments-area .comment-list.left-padding { + padding-left: 25px +} + +@media (max-width: 413px) { + .comments-area .comment-list .single-comment h5 { + font-size: 12px + } + .comments-area .comment-list .single-comment .date { + font-size: 11px + } + .comments-area .comment-list .single-comment .comment { + font-size: 10px + } +} + +.comments-area .thumb { + margin-right: 20px +} + +.comments-area .thumb img { + width: 70px; + border-radius: 50% +} + +.comments-area .date { + font-size: 14px; + color: #999999; + margin-bottom: 0; + margin-left: 20px +} + +.comments-area .comment { + margin-bottom: 10px; + color: #777777; + font-size: 15px +} + +.comments-area .btn-reply { + background-color: transparent; + color: #888888; + padding: 5px 18px; + font-size: 14px; + display: block; + font-weight: 400 +} + +.comment-form { + border-top: 1px solid #eee; + padding-top: 45px; + margin-top: 50px; + margin-bottom: 20px +} + +.comment-form .form-group { + margin-bottom: 30px +} + +.comment-form h4 { + margin-bottom: 40px; + font-size: 18px; + line-height: 22px +} + +.comment-form .name { + padding-left: 0px +} + +@media (max-width: 767px) { + .comment-form .name { + padding-right: 0px; + margin-bottom: 1rem + } +} + +.comment-form .email { + padding-right: 0px +} + +@media (max-width: 991px) { + .comment-form .email { + padding-left: 0px + } +} + +.comment-form .form-control { + border: 1px solid #f0e9ff; + border-radius: 5px; + height: 48px; + padding-left: 18px; + font-size: 13px; + background: transparent +} + +.comment-form .form-control:focus { + outline: 0; + box-shadow: none +} + +.comment-form .form-control::placeholder { + font-weight: 300; + color: #999999 +} + +.comment-form .form-control::placeholder { + color: #777777 +} + +.comment-form textarea { + padding-top: 18px; + border-radius: 12px; + height: 100% !important +} + +.comment-form ::-webkit-input-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form ::-moz-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form :-ms-input-placeholder { + font-size: 13px; + color: #777 +} + +.comment-form :-moz-placeholder { + font-size: 13px; + color: #777 +} + +.dropdown .dropdown-menu { + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + -ms-transition: all 0.3s; + -o-transition: all 0.3s; + transition: all 0.3s +} + +.contact-info { + margin-bottom: 25px +} + +.contact-info__icon { + margin-right: 20px +} + +.contact-info__icon i, +.contact-info__icon span { + color: #8f9195; + font-size: 27px +} + +.contact-info .media-body h3 { + font-size: 16px; + margin-bottom: 0; + font-size: 16px; + color: #2a2a2a +} + +.contact-info .media-body h3 a:hover { + color: #1f2b7b +} + +.contact-info .media-body p { + color: #8a8a8a +} + +.contact-title { + font-size: 27px; + font-weight: 600; + margin-bottom: 20px +} + +.form-contact label { + font-size: 14px +} + +.form-contact .form-group { + margin-bottom: 30px +} + +.form-contact .form-control { + border: 1px solid #e5e6e9; + border-radius: 0px; + height: 48px; + padding-left: 18px; + font-size: 13px; + background: transparent +} + +.form-contact .form-control:focus { + outline: 0; + box-shadow: none +} + +.form-contact .form-control::placeholder { + font-weight: 300; + color: #999999 +} + +.form-contact textarea { + border-radius: 0px; + height: 100% !important +} + +.modal-message .modal-dialog { + position: absolute; + top: 36%; + left: 50%; + transform: translateX(-50%) translateY(-50%) !important; + margin: 0px; + max-width: 500px; + width: 100% +} + +.modal-message .modal-dialog .modal-content .modal-header { + text-align: center; + display: block; + border-bottom: none; + padding-top: 50px; + padding-bottom: 50px +} + +.modal-message .modal-dialog .modal-content .modal-header .close { + position: absolute; + right: -15px; + top: -15px; + padding: 0px; + color: #fff; + opacity: 1; + cursor: pointer +} + +.modal-message .modal-dialog .modal-content .modal-header h2 { + display: block; + text-align: center; + padding-bottom: 10px +} + +.modal-message .modal-dialog .modal-content .modal-header p { + display: block +} + +.contact-section { + padding: 130px 0 100px +} + +@media (max-width: 991px) { + .contact-section { + padding: 70px 0 40px + } +} + +@media only screen and (min-width: 992px) and (max-width: 1200px) { + .contact-section { + padding: 80px 0 50px + } +} + +.contact-section .btn_2 { + background-color: #191d34; + padding: 18px 60px; + border-radius: 50px; + margin-top: 0 +} + +.contact-section .btn_2:hover { + background-color: #1f2b7b +} + +.breadcam_bg { + background-image: url(../img/banner/bradcam.png) +} + +.breadcam_bg_1 { + background-image: url(../img/banner/bradcam2.png) +} + +.breadcam_bg_2 { + background-image: url(../img/banner/bradcam3.png) +} + +.bradcam_area { + background-size: cover; + background-position: center center; + padding: 160px 0; + background-position: bottom; + background-repeat: no-repeat +} + +@media (max-width: 767px) { + .bradcam_area { + padding: 150px 0 + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .bradcam_area { + padding: 150px 0 + } +} + +.bradcam_area h3 { + font-size: 50px; + color: #fff; + font-weight: 900; + margin-bottom: 0; + font-family: "Rufina", serif; + text-transform: capitalize +} + +@media (max-width: 767px) { + .bradcam_area h3 { + font-size: 30px + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .bradcam_area h3 { + font-size: 40px + } +} + +.popup_box { + background: #fff; + display: inline-block; + z-index: 9; + width: 681px; + padding: 60px 40px +} + +@media (max-width: 767px) { + .popup_box { + width: 320px; + padding: 45px 30px + } +} + +@media only screen and (min-width: 480px) and (max-width: 767px) { + .popup_box { + width: 420px !important; + padding: 45px 30px + } +} + +.popup_box h3 { + text-align: center; + font-size: 22px; + color: #1F1F1F; + margin-bottom: 46px +} + +.popup_box .boxed-btn3 { + width: 100%; + text-transform: capitalize +} + +.popup_box .nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border: solid 1px #E2E2E2; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: "Rubik", sans-serif; + font-weight: normal; + width: 100% !important; + line-height: 50px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; + border-radius: 0; + margin-bottom: 30px; + height: 50px !important; + font-size: 16px; + font-weight: 400; + color: #919191 +} + +.popup_box .nice-select::after { + content: "\f0d7"; + display: block; + height: 5px; + margin-top: -5px; + pointer-events: none; + position: absolute; + right: 17px; + top: 3px; + transition: all 0.15s ease-in-out; + width: 5px; + font-family: fontawesome; + color: #919191; + font-size: 15px +} + +.popup_box .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); + height: 200px; + overflow-y: scroll +} + +.popup_box .nice-select.list { + height: 200px; + overflow-y: scroll +} + +#test-form { + display: inline-block; + margin: auto; + text-align: center; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%) +} + +@media (max-width: 767px) { + #test-form { + top: 0; + left: 0; + width: 100%; + height: 100%; + -webkit-transform: none; + -ms-transform: none; + transform: none + } +} + +#test-form .mfp-close-btn-in .mfp-close { + color: #333; + display: none !important +} + +#test-form button.mfp-close { + display: none !important +} + +@media (max-width: 767px) { + #test-form button.mfp-close { + display: block !important; + position: absolute; + left: 0; + right: 0; + margin: auto + } +} + +#test-form button.mfp-close { + 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; + width: 40px; + height: 40px; + background: #4A3600; + text-align: center; + line-height: 20px; + position: absolute; + right: 0; + border-bottom-right-radius: 20px; + border-bottom-left-radius: 20px; + position: absolute; + right: -6px; + color: #fff !important +} + +.mfp-bg { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1042; + overflow: hidden; + position: fixed; + background: #4A3600; + opacity: 0.6 +} + +@media (max-width: 767px) { + .gj-picker.gj-picker-md.timepicker { + width: 310px; + left: 6px !important + } +} + +@media (max-width: 767px) { + .gj-picker.gj-picker-md.datepicker.gj-unselectable { + width: 320px; + left: 0 !important + } +} + +.flex-center-start { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: start +} + +.overlay::before { + background-image: -moz-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%); + background-image: -webkit-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%); + background-image: -ms-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, #000 100%) +} + +.sample-text-area { + background: #fff; + padding: 100px 0 70px 0 +} + +.text-heading { + margin-bottom: 30px; + font-size: 24px +} + +b, +sup, +sub, +u, +del { + color: #1f2b7b +} + +.typography h1, +.typography h2, +.typography h3, +.typography h4, +.typography h5, +.typography h6 { + color: #828bb2 +} + +.button-area { + background: #fff +} + +.button-area .border-top-generic { + padding: 70px 15px; + border-top: 1px dotted #eee +} + +.button-group-area .genric-btn { + margin-right: 10px; + margin-top: 10px +} + +.button-group-area .genric-btn:last-child { + margin-right: 0 +} + +.genric-btn { + display: inline-block; + outline: none; + line-height: 40px; + padding: 0 30px; + font-size: .8em; + text-align: center; + text-decoration: none; + font-weight: 500; + cursor: pointer; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s +} + +.genric-btn:focus { + outline: none +} + +.genric-btn.e-large { + padding: 0 40px; + line-height: 50px +} + +.genric-btn.large { + line-height: 45px +} + +.genric-btn.medium { + line-height: 30px +} + +.genric-btn.small { + line-height: 25px +} + +.genric-btn.radius { + border-radius: 3px +} + +.genric-btn.circle { + border-radius: 20px +} + +.genric-btn.arrow { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center +} + +.genric-btn.arrow span { + margin-left: 10px +} + +.genric-btn.default { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.default:hover { + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.default-border { + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.default-border:hover { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.primary { + color: #fff; + background: #1f2b7b; + border: 1px solid transparent +} + +.genric-btn.primary:hover { + color: #1f2b7b; + border: 1px solid #1f2b7b; + background: #fff +} + +.genric-btn.primary-border { + color: #1f2b7b; + border: 1px solid #1f2b7b; + background: #fff +} + +.genric-btn.primary-border:hover { + color: #fff; + background: #1f2b7b; + border: 1px solid transparent +} + +.genric-btn.success { + color: #fff; + background: #4cd3e3; + border: 1px solid transparent +} + +.genric-btn.success:hover { + color: #4cd3e3; + border: 1px solid #4cd3e3; + background: #fff +} + +.genric-btn.success-border { + color: #4cd3e3; + border: 1px solid #4cd3e3; + background: #fff +} + +.genric-btn.success-border:hover { + color: #fff; + background: #4cd3e3; + border: 1px solid transparent +} + +.genric-btn.info { + color: #fff; + background: #38a4ff; + border: 1px solid transparent +} + +.genric-btn.info:hover { + color: #38a4ff; + border: 1px solid #38a4ff; + background: #fff +} + +.genric-btn.info-border { + color: #38a4ff; + border: 1px solid #38a4ff; + background: #fff +} + +.genric-btn.info-border:hover { + color: #fff; + background: #38a4ff; + border: 1px solid transparent +} + +.genric-btn.warning { + color: #fff; + background: #f4e700; + border: 1px solid transparent +} + +.genric-btn.warning:hover { + color: #f4e700; + border: 1px solid #f4e700; + background: #fff +} + +.genric-btn.warning-border { + color: #f4e700; + border: 1px solid #f4e700; + background: #fff +} + +.genric-btn.warning-border:hover { + color: #fff; + background: #f4e700; + border: 1px solid transparent +} + +.genric-btn.danger { + color: #fff; + background: #f44a40; + border: 1px solid transparent +} + +.genric-btn.danger:hover { + color: #f44a40; + border: 1px solid #f44a40; + background: #fff +} + +.genric-btn.danger-border { + color: #f44a40; + border: 1px solid #f44a40; + background: #fff +} + +.genric-btn.danger-border:hover { + color: #fff; + background: #f44a40; + border: 1px solid transparent +} + +.genric-btn.link { + color: #415094; + background: #f9f9ff; + text-decoration: underline; + border: 1px solid transparent +} + +.genric-btn.link:hover { + color: #415094; + border: 1px solid #f9f9ff; + background: #fff +} + +.genric-btn.link-border { + color: #415094; + border: 1px solid #f9f9ff; + background: #fff; + text-decoration: underline +} + +.genric-btn.link-border:hover { + color: #415094; + background: #f9f9ff; + border: 1px solid transparent +} + +.genric-btn.disable { + color: #222, 0.3; + background: #f9f9ff; + border: 1px solid transparent; + cursor: not-allowed +} + +.generic-blockquote { + padding: 30px 50px 30px 30px; + background: #f9f9ff; + border-left: 2px solid #1f2b7b +} + +.progress-table-wrap { + overflow-x: scroll +} + +.progress-table { + background: #f9f9ff; + padding: 15px 0px 30px 0px; + min-width: 800px +} + +.progress-table .serial { + width: 11.83%; + padding-left: 30px +} + +.progress-table .country { + width: 28.07% +} + +.progress-table .visit { + width: 19.74% +} + +.progress-table .percentage { + width: 40.36%; + padding-right: 50px +} + +.progress-table .table-head { + display: flex +} + +.progress-table .table-head .serial, +.progress-table .table-head .country, +.progress-table .table-head .visit, +.progress-table .table-head .percentage { + color: #415094; + line-height: 40px; + text-transform: uppercase; + font-weight: 500 +} + +.progress-table .table-row { + padding: 15px 0; + border-top: 1px solid #edf3fd; + display: flex +} + +.progress-table .table-row .serial, +.progress-table .table-row .country, +.progress-table .table-row .visit, +.progress-table .table-row .percentage { + display: flex; + align-items: center +} + +.progress-table .table-row .country img { + margin-right: 15px +} + +.progress-table .table-row .percentage .progress { + width: 80%; + border-radius: 0px; + background: transparent +} + +.progress-table .table-row .percentage .progress .progress-bar { + height: 5px; + line-height: 5px +} + +.progress-table .table-row .percentage .progress .progress-bar.color-1 { + background-color: #6382e6 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-2 { + background-color: #e66686 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-3 { + background-color: #f09359 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-4 { + background-color: #73fbaf +} + +.progress-table .table-row .percentage .progress .progress-bar.color-5 { + background-color: #73fbaf +} + +.progress-table .table-row .percentage .progress .progress-bar.color-6 { + background-color: #6382e6 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-7 { + background-color: #a367e7 +} + +.progress-table .table-row .percentage .progress .progress-bar.color-8 { + background-color: #e66686 +} + +.single-gallery-image { + margin-top: 30px; + background-repeat: no-repeat !important; + background-position: center center !important; + background-size: cover !important; + height: 200px +} + +.list-style { + width: 14px; + height: 14px +} + +.unordered-list li { + position: relative; + padding-left: 30px; + line-height: 1.82em !important +} + +.unordered-list li:before { + content: ""; + position: absolute; + width: 14px; + height: 14px; + border: 3px solid #1f2b7b; + background: #fff; + top: 4px; + left: 0; + border-radius: 50% +} + +.ordered-list { + margin-left: 30px +} + +.ordered-list li { + list-style-type: decimal-leading-zero; + color: #1f2b7b; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list li span { + font-weight: 300; + color: #828bb2 +} + +.ordered-list-alpha li { + margin-left: 30px; + list-style-type: lower-alpha; + color: #1f2b7b; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list-alpha li span { + font-weight: 300; + color: #828bb2 +} + +.ordered-list-roman li { + margin-left: 30px; + list-style-type: lower-roman; + color: #1f2b7b; + font-weight: 500; + line-height: 1.82em !important +} + +.ordered-list-roman li span { + font-weight: 300; + color: #828bb2 +} + +.single-input { + display: block; + width: 100%; + line-height: 40px; + border: none; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input:focus { + outline: none +} + +.input-group-icon { + position: relative +} + +.input-group-icon .icon { + position: absolute; + left: 20px; + top: 0; + line-height: 40px; + z-index: 3 +} + +.input-group-icon .icon i { + color: #797979 +} + +.input-group-icon .single-input { + padding-left: 45px +} + +.single-textarea { + display: block; + width: 100%; + line-height: 40px; + border: none; + outline: none; + background: #f9f9ff; + padding: 0 20px; + height: 100px; + resize: none +} + +.single-textarea:focus { + outline: none +} + +.single-input-primary { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-primary:focus { + outline: none; + border: 1px solid #1f2b7b +} + +.single-input-accent { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-accent:focus { + outline: none; + border: 1px solid #eb6b55 +} + +.single-input-secondary { + display: block; + width: 100%; + line-height: 40px; + border: 1px solid transparent; + outline: none; + background: #f9f9ff; + padding: 0 20px +} + +.single-input-secondary:focus { + outline: none; + border: 1px solid #f09359 +} + +.default-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.default-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0; + cursor: pointer +} + +.default-switch input+label { + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #1f2b7b; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.default-switch input:checked+label { + left: 19px +} + +.primary-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-switch input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100% +} + +.primary-switch input+label:before { + content: ""; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background: transparent; + border-radius: 8.5px; + cursor: pointer; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s +} + +.primary-switch input+label:after { + content: ""; + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #fff; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.primary-switch input:checked+label:after { + left: 19px +} + +.primary-switch input:checked+label:before { + background: #1f2b7b +} + +.confirm-switch { + width: 35px; + height: 17px; + border-radius: 8.5px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-switch input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-switch input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100% +} + +.confirm-switch input+label:before { + content: ""; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background: transparent; + border-radius: 8.5px; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + cursor: pointer +} + +.confirm-switch input+label:after { + content: ""; + position: absolute; + top: 1px; + left: 1px; + width: 15px; + height: 15px; + border-radius: 50%; + background: #fff; + -webkit-transition: all 0.2s; + -moz-transition: all 0.2s; + -o-transition: all 0.2s; + transition: all 0.2s; + box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2); + cursor: pointer +} + +.confirm-switch input:checked+label:after { + left: 19px +} + +.confirm-switch input:checked+label:before { + background: #4cd3e3 +} + +.primary-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.primary-checkbox input:checked+label { + background: url(../img/elements/primary-check.png) no-repeat center center/cover; + border: none +} + +.confirm-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.confirm-checkbox input:checked+label { + background: url(../img/elements/success-check.png) no-repeat center center/cover; + border: none +} + +.disabled-checkbox { + width: 16px; + height: 16px; + border-radius: 3px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.disabled-checkbox input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.disabled-checkbox input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 3px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.disabled-checkbox input:disabled { + cursor: not-allowed; + z-index: 3 +} + +.disabled-checkbox input:checked+label { + background: url(../img/elements/disabled-check.png) no-repeat center center/cover; + border: none +} + +.primary-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.primary-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.primary-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.primary-radio input:checked+label { + background: url(../img/elements/primary-radio.png) no-repeat center center/cover; + border: none +} + +.confirm-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.confirm-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.confirm-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.confirm-radio input:checked+label { + background: url(../img/elements/success-radio.png) no-repeat center center/cover; + border: none +} + +.disabled-radio { + width: 16px; + height: 16px; + border-radius: 8px; + background: #f9f9ff; + position: relative; + cursor: pointer +} + +.disabled-radio input { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0 +} + +.disabled-radio input+label { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 8px; + cursor: pointer; + border: 1px solid #f1f1f1 +} + +.disabled-radio input:disabled { + cursor: not-allowed; + z-index: 3 +} + +.disabled-radio input:checked+label { + background: url(../img/elements/disabled-radio.png) no-repeat center center/cover; + border: none +} + +.default-select { + height: 40px +} + +.default-select .nice-select { + border: none; + border-radius: 0px; + height: 40px; + background: #f9f9ff; + padding-left: 20px; + padding-right: 40px +} + +.default-select .nice-select .list { + margin-top: 0; + border: none; + border-radius: 0px; + box-shadow: none; + width: 100%; + padding: 10px 0 10px 0px +} + +.default-select .nice-select .list .option { + font-weight: 300; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + line-height: 28px; + min-height: 28px; + font-size: 12px; + padding-left: 20px +} + +.default-select .nice-select .list .option.selected { + color: #1f2b7b; + background: transparent +} + +.default-select .nice-select .list .option:hover { + color: #1f2b7b; + background: transparent +} + +.default-select .current { + margin-right: 50px; + font-weight: 300 +} + +.default-select .nice-select::after { + right: 20px +} + +.form-select { + height: 40px; + width: 100% +} + +.form-select .nice-select { + border: none; + border-radius: 0px; + height: 40px; + background: #f9f9ff; + padding-left: 45px; + padding-right: 40px; + width: 100% +} + +.form-select .nice-select .list { + margin-top: 0; + border: none; + border-radius: 0px; + box-shadow: none; + width: 100%; + padding: 10px 0 10px 0px +} + +.form-select .nice-select .list .option { + font-weight: 300; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; + line-height: 28px; + min-height: 28px; + font-size: 12px; + padding-left: 45px +} + +.form-select .nice-select .list .option.selected { + color: #1f2b7b; + background: transparent +} + +.form-select .nice-select .list .option:hover { + color: #1f2b7b; + background: transparent +} + +.form-select .current { + margin-right: 50px; + font-weight: 300 +} + +.form-select .nice-select::after { + right: 20px +} + +.mt-10 { + margin-top: 10px +} + +.section-top-border { + padding: 50px 0; + border-top: 1px dotted #eee +} + +.mb-30 { + margin-bottom: 30px +} + +.mt-30 { + margin-top: 30px +} + +.switch-wrap { + margin-bottom: 10px +} diff --git a/assets/css/style.map b/assets/css/style.map new file mode 100755 index 0000000..df5b310 --- /dev/null +++ b/assets/css/style.map @@ -0,0 +1,54 @@ +{ + "version": 3, + "file": "style.css", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_color.scss", + "../scss/_mixins.scss", + "../scss/_overlay.scss", + "../scss/_common.scss", + "../scss/_headerMenu.scss", + "../scss/_h1-hero.scss", + "../scss/_services_section.scss", + "../scss/_categories.scss", + "../scss/_testimonial.scss", + "../scss/_subscribe-area.scss", + "../scss/_listing.scss", + "../scss/_listing-details.scss", + "../scss/_pagination.scss", + "../scss/_footer.scss", + "../scss/_services.scss", + "../scss/_blog_page.scss", + "../scss/_contact.scss", + "../scss/_bradcam.scss", + "../scss/_extend.scss", + "../scss/_elements.scss" + ], + "sourcesContent": [ + "/* Theme Description\r\n-------------------------------------------------\r\n\r\n\t Theme Name:\r\n\t Author:\r\n\t Support:\r\n\t Description:\r\n\t Version:\r\n\t \r\n------------------------------------------------- \r\n*/\r\n\r\n/* CSS Index\r\n-------------------------------------------------\r\n\r\n\t1. Theme default css\r\n\t2. header\r\n\t3. slider\r\n\t4. about-area\r\n\t5. features-box\r\n\t6. department\r\n\t7. team\r\n\t8. video-area\r\n\t9. counter\r\n\t10. footer\r\n\r\n-------------------------------------------------\r\n*/\r\n\r\n// Default\r\n\t@import 'variables';\r\n\t@import 'mixins';\r\n\t@import 'overlay';\r\n\t@import 'common';\r\n\t@import 'color';\r\n\r\n\r\n// Homepage1\r\n\t@import 'headerMenu';\r\n\t@import 'h1-hero';\r\n\r\n\r\n\t// @import 'location';\r\n\t// @import 'pepole-visit';\r\n\r\n\r\n\r\n\t@import 'services_section';\r\n\t@import 'categories';\r\n\t@import 'testimonial';\r\n\t@import 'subscribe-area';\r\n\t@import 'listing';\r\n\t@import 'listing-details';\r\n\t@import 'pagination';\r\n\r\n\r\n\r\n\t// @import 'search-domin';\r\n\t// @import 'all_startups';\r\n\t// @import 'work-company';\r\n\t// @import 'pricing';\r\n\t// @import 'testimonial';\r\n\t// @import 'support-area';\r\n\r\n\r\n\r\n\t@import 'footer';\r\n\r\n\r\n// inner Page\r\n\t@import 'services';\r\n\t// @import 'about-details';\r\n\r\n\r\n// Default Element Page\r\n\t@import 'blog_page';\r\n\t@import 'contact';\r\n\t@import 'bradcam';\r\n\t@import 'extend';\r\n\t@import 'elements';", + "@import 'color';\r\n\r\n\r\n// Font Family\r\n $font_1 :'Rufina', serif; //Heading Font\r\n $font_2 :'Rubik', sans-serif; //Body Font , Menu\r\n \r\n\r\n\r\n/*------------------- Responsive --------------------------*/\r\n\r\n $laptop: 'only screen and (min-width: 1200px) and (max-width: 1600px)';\r\n $lg :'only screen and (min-width: 992px) and (max-width: 1199px)';\r\n $md:'only screen and (min-width: 768px) and (max-width: 991px)';\r\n $xs:'(max-width: 575px)';\r\n $sm: 'only screen and (min-width: 576px) and (max-width: 767px)';\r\n\r\n// Extra Responsive\r\n\r\n $medium_device : 'only screen and (min-width: 992px) and (max-width: 1200px)';\r\n $tab_device:'only screen and (min-width: 768px) and (max-width: 991px)';\r\n $large_mobile: 'only screen and (min-width: 576px) and (max-width: 767px)';\r\n $tab: '(max-width: 991px)';\r\n $tab2: '(max-width: 1199px)';\r\n $small_mobile:'(max-width: 576px)';\r\n $xs_mobile:'(max-width: 420px)';\r\n $sm_mobile:'only screen and (min-width: 421px) and (max-width: 575px)';\r\n $big_screen:'only screen and (min-width: 1200px) and (max-width: 1440px)';\r\n $big_screen2:'only screen and (min-width: 1200px) and (max-width: 1300px)';\r\n $big_screen3:'only screen and (min-width: 1441px) and (max-width: 1500px)';\r\n $big_screen4:'only screen and (min-width: 1501px) and (max-width: 1750px)';\r\n $extra_big_screen: 'only screen and (min-width: 1200px) and (max-width: 3640px)';\r\n\r\n\r\n// More Extra Responsive\r\n $large_device_2:'(min-width: 1501px) and (max-width: 1700px)';\r\n $mid_device:'(min-width: 992px) and (max-width: 1200px)';\r\n $tablet_device:'(min-width: 768px) and (max-width: 991px)';\r\n $mobile_device:'(max-width: 767px)';\r\n $large_mobile:'only screen and (min-width: 480px) and (max-width: 767px)';\r\n\r\n// Custom\r\n $large1:'only screen and (min-width: 1200px) and (max-width: 1360px)';\r\n $large2:'(min-width: 1200px) and (max-width: 1500px)';\r\n $large3:'only screen and (min-width: 1601px) and (max-width: 1800px)';\r\n\r\n\r\n\r\n\r\n/*\r\n\t@include transition(.4s);\r\n\tcolor:$theme-color;\r\n*/\r\n\r\n\r\n// Elemet Page btn\r\n$heading_color2: #112e41;\r\n$white_color:#fff;\r\n\r\n.boxed-btn {\r\n\tbackground: #fff;\r\n color: $theme-color !important;\r\n \r\n\tdisplay: inline-block;\r\n\tpadding: 18px 44px;\r\n\tfont-family: $font_1;\r\n\tfont-size: 14px;\r\n font-weight: 400;\r\n border: 0;\r\n border: 1px solid $theme-color;\r\n letter-spacing: 3px;\r\n\r\n text-align: center;\r\n color: $theme-color;\r\n text-transform: uppercase;\r\n cursor: pointer;\r\n &:hover{\r\n background: $theme-color;\r\n color: #fff !important;\r\n border: 1px solid $theme-color;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n &.large-width{\r\n width: 220px;\r\n }\r\n}\r\n\r\n\r\n\r\n", + "\r\n/*------------- Color Variable --------------*/\r\n\r\n//Colors\r\n\t$white: #ffffff;\r\n\t$black: #16161a;\r\n\t$gray:#f7f7fd;\r\n\r\n// font-color\r\n\t$heading-color:#000a2d;\r\n\t$heading_color2: #242b5e;\r\n\r\n//Theme color\r\n\t$theme-color: #ec5b53;\r\n\t$theme-color2: #1f2b7b;\r\n\t$theme-color3: #f27420;\r\n\t$theme-color4: #ff3500;\r\n\t\r\n// Body Font\r\n\t$body-text-color: #464d65;\r\n\t$hr-border-color:#eceff8;\r\n\r\n// btn and Section color\r\n\t$btn_bg: #ec5b53;\r\n\r\n// Section Bg\r\n\t$section_bg1: #454545;\r\n\r\n\r\n\r\n\r\n\r\n.white-bg{\r\n\tbackground: #ffffff;\r\n}\r\n.gray-bg{\r\n\tbackground: #f5f5f5;\r\n}\r\n\r\n\t$gray-color: #bebebe;\r\n\t$gray-color-2: #bdbdbd;\r\n\t$gray-color3:#5c5c5c;\r\n\t$white_color:#fff;\r\n\r\n\r\n// font color\r\n\t$font_color1: #10285d;\r\n\r\n\t$border_color: #fdcb9e;\r\n\t$footer_bg: #303030;\r\n\t$sidebar_bg: #fbf9ff;\r\n\r\n\r\n\r\n\r\n// bg\r\n\t$brand-bg: #f1f4fa;\r\n\t$testimonial-bg:#f9fafc;\r\n\r\n\r\n// Soft color\r\n\t$black-soft:#7e7e7e;\r\n\r\n// Section Bg color\r\n\t$blue-bg1:#00163e;\r\n\r\n\r\n\r\n\r\n/*-------------Color include--------------*/\r\n\r\n\r\n/*-- Background color---*/\r\n\r\n.gray-bg {\r\n\tbackground: $gray;\r\n}\r\n.white-bg {\r\n\tbackground:$white;\r\n}\r\n.black-bg {\r\n\tbackground: $black;\r\n}\r\n.theme-bg {\r\n\tbackground:$theme-color;\r\n}\r\n.brand-bg{\r\n\tbackground: $brand-bg;\r\n}\r\n.testimonial-bg{\r\n\tbackground: $testimonial-bg;\r\n}\r\n\r\n\r\n/*--- color------*/\r\n.white-color {\r\n\tcolor: $white;\r\n}\r\n.black-color {\r\n\tcolor: $black;\r\n}\r\n.theme-color {\r\n\tcolor: $theme-color;\r\n}", + "@mixin transition($time) {\r\n\t-webkit-transition: all $time ease-out 0s;\r\n\t-moz-transition: all $time ease-out 0s;\r\n\t-ms-transition: all $time ease-out 0s;\r\n\t-o-transition: all $time ease-out 0s;\r\n\ttransition: all $time ease-out 0s;\r\n}\r\n\r\n@mixin transform($value) {\r\n -webkit-transform: $value;\r\n -ms-transform: $value;\r\n transform: $value;\r\n}\r\n", + "/*--\r\n - Overlay\r\n------------------------------------------*/\r\n[data-overlay] {\r\n position: relative;\r\n background-size: cover;\r\n background-repeat: no-repeat;\r\n background-position: center center;\r\n &::before {\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n right: 0;\r\n bottom: 0;\r\n content: \"\";\r\n }\r\n}\r\n\r\n\r\n/*-- Overlay Opacity --*/\r\n[data-opacity=\"1\"] {\r\n &::before {\r\n opacity: 0.1;\r\n }\r\n}\r\n[data-opacity=\"2\"] {\r\n &::before {\r\n opacity: 0.2;\r\n }\r\n}\r\n[data-opacity=\"3\"] {\r\n &::before {\r\n opacity: 0.3;\r\n }\r\n}\r\n[data-opacity=\"4\"] {\r\n &::before {\r\n opacity: 0.4;\r\n }\r\n}\r\n[data-opacity=\"5\"] {\r\n &::before {\r\n opacity: 0.5;\r\n }\r\n}\r\n[data-opacity=\"6\"] {\r\n &::before {\r\n opacity: 0.6;\r\n }\r\n}\r\n[data-opacity=\"7\"] {\r\n &::before {\r\n opacity: 0.7;\r\n }\r\n}\r\n[data-opacity=\"8\"] {\r\n &::before {\r\n opacity: 0.8;\r\n }\r\n}\r\n[data-opacity=\"9\"] {\r\n &::before {\r\n opacity: 0.9;\r\n }\r\n}\r\n\r\n\r\n", + "\r\n/* 1. Theme default css */\r\n@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900|Rufina:400,700&display=swap');\r\nbody {\r\n\tfont-family: $font_2;\r\n\tfont-weight: normal;\r\n\tfont-style: normal;\r\n}\r\nh1,\r\nh2,\r\nh3,\r\nh4,\r\nh5,\r\nh6 {\r\n\tfont-family: $font_1;\r\n\tcolor:$heading-color;\r\n\r\n\tmargin-top: 0px;\r\n\tfont-style: normal;\r\n\tfont-weight: 500;\r\n\ttext-transform: normal;\r\n}\r\np {\r\n\tfont-family:$font_2;\r\n\tcolor: $font_color1;\r\n\r\n\tfont-size: 16px;\r\n\tline-height: 30px;\r\n\tmargin-bottom: 15px;\r\n\tfont-weight: normal;\r\n}\r\n\r\n// background-image\r\n.bg-img-1{\r\n background-image: url(../img/slider/slider-img-1.jpg);\r\n}\r\n.bg-img-2{\r\n background-image: url(../img/background-img/bg-img-2.jpg);\r\n}\r\n.cta-bg-1{\r\n background-image: url(../img/background-img/bg-img-3.jpg);\r\n\r\n}\r\n\r\n.img {\r\n\tmax-width: 100%;\r\n\t@include transition(.3s);\r\n}\r\n.f-left {\r\n\tfloat: left\r\n}\r\n.f-right {\r\n\tfloat: right\r\n}\r\n.fix {\r\n\toverflow: hidden\r\n}\r\n.clear{\r\n clear: both;\r\n}\r\n\r\na,\r\n.button {\r\n\t@include transition(.3s);\r\n}\r\na:focus,\r\n.button:focus {\r\n\ttext-decoration: none;\r\n\toutline: none;\r\n}\r\na{\r\n\tcolor: rgb(99, 92, 92);\r\n}\r\na:hover{\r\n\tcolor: #fff;\r\n}\r\na:focus,\r\na:hover,\r\n.portfolio-cat a:hover,\r\n.footer -menu li a:hover {\r\n\ttext-decoration: none;\r\n}\r\na,\r\nbutton {\r\n\tcolor: #fff;\r\n\toutline: medium none;\r\n}\r\nbutton:focus,input:focus,input:focus,textarea,textarea:focus{outline: 0}\r\n.uppercase {\r\n\ttext-transform: uppercase;\r\n}\r\n\r\ninput:focus::-moz-placeholder {\r\n\topacity: 0;\r\n\t-webkit-transition: .4s;\r\n\t-o-transition: .4s;\r\n\ttransition: .4s;\r\n}\r\n\r\n.capitalize {\r\n\ttext-transform: capitalize;\r\n}\r\n\r\nh1 a,\r\nh2 a,\r\nh3 a,\r\nh4 a,\r\nh5 a,\r\nh6 a {\r\n\tcolor: inherit;\r\n}\r\n\r\nul {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\nli {\r\n\tlist-style: none\r\n}\r\n\r\nhr {\r\n\tborder-bottom: 1px solid #eceff8;\r\n\tborder-top: 0 none;\r\n\tmargin: 30px 0;\r\n\tpadding: 0;\r\n}\r\n\r\n/* Theme-overlay */\r\n.theme-overlay {\r\n\tposition: relative\r\n}\r\n.theme-overlay::before {\r\n\tbackground: #1696e7 none repeat scroll 0 0;\r\n\tcontent: \"\";\r\n\theight: 100%;\r\n\tleft: 0;\r\n\topacity: 0.6;\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\twidth: 100%;\r\n}\r\n.overlay{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\t@extend %overlay;\r\n}\r\n.overlay2{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay2::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #2E2200;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: 0.5;\r\n}\r\n\r\n// Section Padding\r\n\t.section-padding{\r\n\t\tpadding-top: 120px;\r\n\t\tpadding-bottom: 120px;\r\n\t}\r\n\t.separator {\r\n\t\tborder-top: 1px solid #f2f2f2\r\n\t}\r\n\r\n\t.mb-90{\r\n\t\tmargin-bottom: 90px;\r\n\t\t@media #{$mobile_device}{\r\n\t\t\tmargin-bottom: 30px;\r\n\t\t}\r\n\t\t@media #{$tablet_device}{\r\n\t\t\tmargin-bottom: 45px;\r\n\t\t}\r\n\t}\r\n\r\n/* owl-carousel button style */\r\n.owl-carousel {\r\n\t.owl-nav div {\r\n\tbackground: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;\r\n\theight: 40px;\r\n\tleft: 20px;\r\n\tline-height: 40px;\r\n\r\n\tfont-size: 22px;\r\n\tcolor: #646464;\r\n\topacity: 1;\r\n\tvisibility: visible;\r\n\tposition: absolute;\r\n\ttext-align: center;\r\n\ttop: 50%;\r\n\ttransform: translateY(-50%);\r\n\ttransition: all 0.3s ease 0s;\r\n\twidth: 40px;\r\n\t}\r\n\t.owl-nav{\r\n\t\tdiv{\r\n\t\t\t&.owl-next{\r\n\t\t\t\tleft: auto;\r\n\t\t\t\tright: -30px;\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 0;\r\n\t\t\t\t\ttop: 1px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t&.owl-prev{\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 1px;\r\n\t\t\t\t\ttop: 0px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t&:hover{\r\n\t\t.owl-nav{\r\n\t\t\tdiv{\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tvisibility: visible;\r\n\t\t\t\t&:hover{\r\n\t\t\t\t\tcolor: #fff;\r\n\t\t\t\t\tbackground: $theme-color4;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n.btn {\r\n\t\tbackground: $btn_bg;\r\n\r\n\t\tpadding: 27px 44px;\r\n\t\ttext-transform: capitalize;\r\n\t\tfont-family: $font_2;\r\n\t\tcolor: #fff;\r\n\t\tcursor: pointer;\r\n\t\tdisplay: inline-block;\r\n\t\tfont-size: 14px;\r\n\t\tborder-radius: 5px;\r\n\r\n\t\t-moz-user-select: none;\r\n\t\tfont-weight: 500;\r\n\t\tletter-spacing: 1px;\r\n\t\tline-height: 0;\r\n\t\tmargin-bottom: 0;\r\n\r\n\t\tmargin: 10px;\r\n\t\tcursor: pointer;\r\n\t\ttransition: color 0.4s linear;\r\n\t\tposition: relative;\r\n\t\tz-index: 1;\r\n\t\tborder: 0;\r\n\t\toverflow: hidden;\r\n\t\tmargin:0;\r\n\r\n\t&::before{\r\n\t\tcontent: \"\";\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 101%;\r\n\t\theight: 101%;\r\n\t\tbackground:#e44239;\r\n\t\tz-index: 1;\r\n\t\tborder-radius: 5px;\r\n\t\ttransition: transform 0.5s;\r\n\t\ttransition-timing-function: ease;\r\n\t\ttransform-origin: 0 0;\r\n\t\ttransition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);\r\n\t\t// \r\n\t\ttransform: scaleX(0);\r\n\t\tborder-radius: 0;\r\n\t}\r\n}\r\n.btn:hover::before {\r\n\ttransform: scaleX(1);\r\n\tcolor: #fff !important;\r\n\tz-index: -1;\r\n}\r\n\r\n.white-btn{\r\n\tbackground: #fff;\r\n\tcolor: #020230;\r\n}\r\n\r\n.btn.focus, .btn:focus {\r\n\toutline: 0;\r\n\tbox-shadow:none; \r\n}\r\n.header-btn{\r\n\tpadding: 27px 18px;\r\n}\r\n// Custom Btn\r\n\r\n.list-btn{\r\n\twidth: 100%;\r\n\tborder-radius: 5px;\r\n}\r\n.border-btn{\r\n\tborder: 2px solid $theme-color;\r\n\tcolor: $theme-color;\r\n\tfont: $font_1;\r\n\tbackground: none;\r\n\tborder-radius: 5px;\r\n\t-moz-user-select: none;\r\n\tpadding:28px 50px;\r\n\tmargin: 10px;\r\n\ttext-transform: uppercase;\r\n\tcursor: pointer;\r\n\tdisplay: inline-block;\r\n\tfont-size: 14px;\r\n\tfont-weight: 500;\r\n\tletter-spacing: 1px;\r\n\tmargin-bottom: 0;\r\n\tposition: relative;\r\n\ttransition: color 0.4s linear;\r\n\tposition: relative;\r\n\toverflow: hidden;\r\n\tmargin: 0;\r\n\t&::before{\r\n\t\tborder: 2px solid transparent;\r\n\t\tcontent: \"\";\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 100%;\r\n\t\tbackground:$theme-color;\r\n\t\tz-index: -1;\r\n\t\ttransition: transform 0.5s;\r\n\t\ttransition-timing-function: ease;\r\n\t\ttransform-origin: 0 0;\r\n\t\ttransition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);\r\n\t\t// \r\n\t\ttransform: scaleY(0);\r\n\t\tborder-radius: 0;\r\n\t}\r\n}\r\n.border-btn:hover::before {\r\n\ttransform: scaleY(1);\r\n\torder: 2px solid transparent;\r\n}\r\n\r\n\r\n.send-btn{\r\n background: $theme_color;\r\n color: #fff;\r\n font-size: 14px;\r\n width: 100%;\r\n height: 55px;\r\n border: none;\r\n border-radius: 5px;\r\n\tcursor: pointer;\r\n\ttransition: color 0.4s linear;\r\n\tposition: relative;\r\n\toverflow: hidden;\r\n\tz-index: 1;\r\n\r\n\t&::before{\r\n\t\tborder: 2px solid transparent;\r\n\t\tcontent: \"\";\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 100%;\r\n\t\tbackground:#e6373d;\r\n\t\tcolor:$theme_color;\r\n\t\tz-index: -1;\r\n\t\ttransition: transform 0.5s;\r\n\t\ttransition-timing-function: ease;\r\n\t\ttransform-origin: 0 0;\r\n\t\ttransition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);\r\n\t\t// \r\n\t\ttransform: scaleX(0);\r\n\t}\r\n}\r\n.send-btn:hover::before {\r\n\ttransform: scaleY(1);\r\n\torder: 2px solid transparent;\r\n\tcolor:red;\r\n\t\r\n}\r\n\r\n\r\n\r\n\r\n/* button style */\r\n\t.breadcrumb > .active {\r\n\t\tcolor: #888;\r\n\t}\r\n/* scrollUp */\r\n\t#scrollUp,#back-top {\r\n\t\tbackground:$theme-color;\r\n\t\theight: 50px;\r\n\t\twidth: 50px;\r\n\t\tright: 31px;\r\n\t\tbottom: 18px;\r\n\t\tposition: fixed;\r\n\t\t@media #{$xs}{\r\n\t\t\tright: 16px;\r\n\t\t}\r\n\t\tcolor: #fff;\r\n\t\tfont-size: 20px;\r\n\t\ttext-align: center;\r\n\t\tborder-radius: 50%;\r\n\t\tline-height: 48px;\r\n\t\tborder: 2px solid transparent;\r\n\t\tbox-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);\r\n\t\ta i {\r\n\t\t\tdisplay: block;\r\n\t\t\tline-height: 50px;\r\n\t\t}\r\n\r\n\t}\r\n\r\n\t#scrollUp:hover {\r\n\t\tcolor: #fff;\r\n\t}\r\n\r\n/* Sticky*/\r\n\t.sticky-bar {\r\n\t\tleft: 0;\r\n\t\tmargin: auto;\r\n\t\tposition: fixed;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\t-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);\r\n\t\tbox-shadow:0 10px 15px rgba(25, 25, 25, 0.1);\r\n\t\tz-index: 9999;\r\n\t\t-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;\r\n\t\tanimation: 300ms ease-in-out 0s normal none 1 running fadeInDown;\r\n\t\t-webkit-box-shadow:0 10px 15px rgba(25, 25, 25, 0.1);\r\n\t\tbackground: #fff;\r\n\t}\r\n/* Sticky end */\r\n\r\n\r\n\r\n\r\n\r\n\r\n/*--- Margin & Padding --*/\r\n\r\n\t/*-- Margin Top --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.mt-#{5 * $i}{margin-top: 5px * $i;}\r\n\t}\r\n\r\n\t/*-- Margin Bottom --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.mb-#{5 * $i}{margin-bottom: 5px *$i;}\r\n\t}\r\n\t/*-- Margin Left --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.ml-#{5 * $i}{margin-left: 5px * $i;}\r\n\t}\r\n\r\n\t/*-- Margin Right --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.mr-#{5 * $i}{margin-right: 5px *$i;}\r\n\t}\r\n\r\n\t/*-- Padding Top --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.pt-#{5 * $i}{padding-top: 5px *$i;}\r\n\t}\r\n\t.pt-260{\r\n\t\tpadding-top: 260px;\r\n\t}\r\n\t/*-- Padding Bottom --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.pb-#{5 * $i}{padding-bottom: 5px *$i;}\r\n\t}\r\n\r\n\t/*-- Padding Left --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.pl-#{5 * $i}{padding-left: 5px *$i;}\r\n\t}\r\n\r\n\t/*-- Padding Right --*/\r\n\t@for $i from 1 through 40 {\r\n\t\t.pr-#{5 * $i}{padding-right: 5px *$i;}\r\n\t}\r\n\r\n\r\n// others common css here :)\r\n\r\n\r\n\r\n/*-- Some Animated CSS -- */\r\n\r\n/* bounce-animate */\r\n.bounce-animate{\r\n\tanimation-name: float-bob;\r\n\tanimation-duration: 2s;\r\n\tanimation-iteration-count: infinite;\r\n\t/* animation-timing-function: linear; */\r\n\t-moz-animation-name: float-bob;\r\n\t-moz-animation-duration: 2s;\r\n\t-moz-animation-iteration-count: infinite;\r\n\t-moz-animation-timing-function: linear;\r\n\t-ms-animation-name: float-bob;\r\n\t-ms-animation-duration: 2s;\r\n\t-ms-animation-iteration-count: infinite;\r\n\t-ms-animation-timing-function: linear;\r\n\t-o-animation-name: float-bob;\r\n\t-o-animation-duration: 2s;\r\n\t-o-animation-iteration-count: infinite;\r\n\t-o-animation-timing-function: linear;\r\n\t}\r\n @-webkit-keyframes float-bob {\r\n\t0% {\r\n\t -webkit-transform: translateY(-20px);\r\n\t transform: translateY(-20px); }\r\n\t50% {\r\n\t -webkit-transform: translateY(-10px);\r\n\t transform: translateY(-10px); }\r\n\t100% {\r\n\t -webkit-transform: translateY(-20px);\r\n\t transform: translateY(-20px); } }\r\n\t \r\n/* heartbeat */\r\n\t.heartbeat {\r\n\t\tanimation: heartbeat 1s infinite alternate;\r\n\t}\r\n\r\n\t@-webkit-keyframes heartbeat {\r\n\t\tto {\r\n\t\t\t-webkit-transform: scale(1.03);\r\n\t\t\ttransform: scale(1.03);\r\n\t\t}\r\n\t}\r\n\r\n/* rotateme */\r\n\t.rotateme {\r\n\t\t-webkit-animation-name: rotateme;\r\n\t\tanimation-name: rotateme;\r\n\t\t-webkit-animation-duration: 30s;\r\n\t\tanimation-duration: 30s;\r\n\t\t-webkit-animation-iteration-count: infinite;\r\n\t\tanimation-iteration-count: infinite;\r\n\t\t-webkit-animation-timing-function: linear;\r\n\t\tanimation-timing-function: linear;\r\n\t}\r\n\t@keyframes rotateme {\r\n\t\tfrom {\r\n\t\t\t-webkit-transform: rotate(0deg);\r\n\t\t\ttransform: rotate(0deg);\r\n\t\t}\r\n\t\tto {\r\n\t\t\t-webkit-transform: rotate(360deg);\r\n\t\t\ttransform: rotate(360deg);\r\n\t\t}\r\n\t}\r\n\r\n\t@-webkit-keyframes rotateme {\r\n\t\tfrom {\r\n\t\t\t-webkit-transform: rotate(0deg);\r\n\t\t}\r\n\r\n\t\tto {\r\n\t\t\t-webkit-transform: rotate(360deg);\r\n\t\t}\r\n\t}\r\n\r\n/* 20. preloader */\r\n\t.preloader {\r\n\t\tbackground-color: #f7f7f7;\r\n\t\twidth: 100%;\r\n\t\theight: 100%;\r\n\t\tposition: fixed;\r\n\t\ttop: 0;\r\n\t\tleft: 0;\r\n\t\tright: 0;\r\n\t\tbottom: 0;\r\n\t\tz-index: 999999;\r\n\t\t-webkit-transition: .6s;\r\n\t\t-o-transition: .6s;\r\n\t\ttransition: .6s;\r\n\t\tmargin: 0 auto;\r\n\t}\r\n\r\n\t.preloader .preloader-circle {\r\n\t\twidth: 100px;\r\n\t\theight: 100px;\r\n\t\tposition: relative;\r\n\t\tborder-style: solid;\r\n\t\tborder-width: 1px;\r\n\t\t// border-top-color:$theme-color;\r\n\t\tborder-top-color:$theme-color;\r\n\t\tborder-bottom-color: transparent;\r\n\t\tborder-left-color: transparent;\r\n\t\tborder-right-color: transparent;\r\n\t\tz-index: 10;\r\n\t\tborder-radius: 50%;\r\n\t\t-webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);\r\n\t\tbox-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);\r\n\t\tbackground-color: #fff;\r\n\t\t-webkit-animation: zoom 2000ms infinite ease;\r\n\t\tanimation: zoom 2000ms infinite ease;\r\n\t\t-webkit-transition: .6s;\r\n\t\t-o-transition: .6s;\r\n\t\ttransition: .6s;\r\n\t}\r\n\t.preloader .preloader-circle2 {\r\n\t\tborder-top-color: #0078ff;\r\n\t}\r\n\t.preloader .preloader-img {\r\n\t\tposition: absolute;\r\n\t\ttop: 50%;\r\n\t\tz-index: 200;\r\n\t\tleft: 0;\r\n\t\tright: 0;\r\n\t\tmargin: 0 auto;\r\n\t\ttext-align: center;\r\n\t\tdisplay: inline-block;\r\n\t\t-webkit-transform: translateY(-50%);\r\n\t\t-ms-transform: translateY(-50%);\r\n\t\ttransform: translateY(-50%);\r\n\t\tpadding-top: 6px;\r\n\t\t-webkit-transition: .6s;\r\n\t\t-o-transition: .6s;\r\n\t\ttransition: .6s;\r\n\t}\r\n\r\n\t.preloader .preloader-img img {\r\n\t\tmax-width: 55px;\r\n\t}\r\n\t.preloader .pere-text strong{\r\n\t\tfont-weight: 800;\r\n\t\tcolor:#dca73a ;\r\n\t\ttext-transform: uppercase;\r\n\t}\r\n\t@-webkit-keyframes zoom {\r\n\t\t0% {\r\n\t\t\t-webkit-transform: rotate(0deg);\r\n\t\t\ttransform: rotate(0deg);\r\n\t\t\t-webkit-transition: .6s;\r\n\t\t\t-o-transition: .6s;\r\n\t\t\ttransition: .6s;\r\n\t\t}\r\n\r\n\t\t100% {\r\n\t\t\t-webkit-transform: rotate(360deg);\r\n\t\t\ttransform: rotate(360deg);\r\n\t\t\t-webkit-transition: .6s;\r\n\t\t\t-o-transition: .6s;\r\n\t\t\ttransition: .6s;\r\n\t\t}\r\n\t}\r\n\r\n\t@keyframes zoom {\r\n\t\t0% {\r\n\t\t\t-webkit-transform: rotate(0deg);\r\n\t\t\ttransform: rotate(0deg);\r\n\t\t\t-webkit-transition: .6s;\r\n\t\t\t-o-transition: .6s;\r\n\t\t\ttransition: .6s;\r\n\t\t}\r\n\r\n\t\t100% {\r\n\t\t\t-webkit-transform: rotate(360deg);\r\n\t\t\ttransform: rotate(360deg);\r\n\t\t\t-webkit-transition: .6s;\r\n\t\t\t-o-transition: .6s;\r\n\t\t\ttransition: .6s;\r\n\t\t}\r\n\t}\r\n\r\n\r\n/*-- Section Padding -- */\r\n\r\n\t.section-padding2{\r\n\t\tpadding-top: 200px;\r\n\t\tpadding-bottom: 200px;\r\n\t\t@media #{$laptop}{\r\n\t\t\tpadding-top: 200px;\r\n\t\t\tpadding-bottom: 200px;\r\n\t\t}\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 200px;\r\n\t\t\tpadding-bottom: 200px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 100px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 70px;\r\n\t\t\tpadding-bottom: 70px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 70px;\r\n\t\t\tpadding-bottom: 70px;\r\n\t\t}\r\n\t}\t\r\n\t.testimonial-padding{\r\n\t\tpadding-top: 190px;\r\n\t\tpadding-bottom: 170px;\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 190px;\r\n\t\t\tpadding-bottom: 170px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 70px;\r\n\t\t\tpadding-bottom: 60px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 60px;\r\n\t\t\tpadding-bottom: 40px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 60px;\r\n\t\t\tpadding-bottom: 40px;\r\n\t\t}\r\n\t}\t\r\n\t\r\n\t.section-padding30{\r\n\t\tpadding-top: 195px;\r\n\t\tpadding-bottom: 140px;\r\n\t\t@media #{$laptop}{\r\n\t\t\tpadding-top: 195px;\r\n\t\t\tpadding-bottom: 140px;\r\n\t\t}\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 150px;\r\n\t\t\tpadding-bottom: 90px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 40px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 65px;\r\n\t\t\tpadding-bottom: 10px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 65px;\r\n\t\t\tpadding-bottom: 10px;\r\n\t\t}\r\n\t}\r\n\t.section-padding03{\r\n\t\tpadding-top: 200px;\r\n\t\tpadding-bottom: 80px;\r\n\r\n\t\t@media #{$laptop}{\r\n\t\t\tpadding-top: 200px;\r\n\t\t\tpadding-bottom: 80px;\r\n\t\t}\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 100px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 120px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 10px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 70px;\r\n\t\t\tpadding-bottom: 10px;\r\n\t\t}\r\n\t}\r\n\r\n\t.section-padding3{\r\n\t\tpadding-top: 200px;\r\n\t\tpadding-bottom: 200px;\r\n\t\t@media #{$laptop}{\r\n\t\t\tpadding-top: 200px;\r\n\t\t\tpadding-bottom: 200px;\r\n\t\t}\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 150px;\r\n\t\t\tpadding-bottom: 150px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 50px;\r\n\t\t\tpadding-bottom: 100px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 60px;\r\n\t\t\tpadding-bottom: 60px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 40px;\r\n\t\t\tpadding-bottom: 70px;\r\n\t\t}\r\n\t}\r\n\t\r\n\t.footer-padding{\r\n\t\tpadding-top: 170px;\r\n\t\tpadding-bottom: 50px;\r\n\t\t@media #{$laptop}{\r\n\t\t\tpadding-top: 170px;\r\n\t\t\tpadding-bottom: 50px;\r\n\t\t}\r\n\t\t@media #{$lg}{\r\n\t\t\tpadding-top: 170px;\r\n\t\t\tpadding-bottom: 50px;\r\n\t\t}\r\n\t\t@media #{$md}{\r\n\t\t\tpadding-top: 100px;\r\n\t\t\tpadding-bottom: 50px;\r\n\t\t}\r\n\t\t@media #{$sm}{\r\n\t\t\tpadding-top: 80px;\r\n\t\t\tpadding-bottom: 0px;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\tpadding-top: 80px;\r\n\t\t\tpadding-bottom: 0px;\r\n\t\t}\r\n\t}\r\n\r\n\r\n// section Tittle\r\n.section-tittle{\r\n\t@media #{$xs}{\r\n\t\tmargin-bottom: 50px;\r\n\t}\r\n\t@media #{$sm}{\r\n\t\tmargin-bottom: 50px;\r\n\t}\r\n\tspan{\r\n\t\tfont-size: 30px;\r\n\t\tfont-weight: 700;\r\n\t\tmargin-bottom: 22px;\r\n\t\tcolor:#ff3d1c;\r\n\t\tdisplay: inline-block;\r\n\t}\r\n\th2 {\r\n\t\tfont-size: 50px;\r\n\t\tdisplay: block;\r\n\t\tcolor: $heading-color;\r\n\t\tfont-weight: 600;\r\n\t\t@media #{$sm}{\r\n\t\t\tfont-size: 31px;\r\n\t\t\ttext-align: center;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\ttext-align: center;\r\n\t\t\tfont-size: 31px;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n.section-tittle2{\r\n\tspan{\r\n\t\tcolor:#31ff7a;\r\n\t}\r\n\th2 {\r\n\t\tcolor: #fff\r\n\t}\r\n}\r\n.section-tittle5{\r\n\th2 {\r\n\t\tfont-size: 36px;\r\n\t\t@media #{$sm}{\r\n\t\t\tfont-size: 31px;\r\n\t\t\ttext-align: left;\r\n\t\t}\r\n\t\t@media #{$xs}{\r\n\t\t\ttext-align: left;\r\n\t\t\tfont-size: 31px;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n.section-bg{\r\n background-size: cover;\r\n background-repeat: no-repeat;\r\n background-position: center center;\r\n}", + "// Header left right padding\r\n.header-area {\r\n .main-header {\r\n padding: 0px 100px;\r\n @media #{$laptop}{\r\n padding: 0px 80px;\r\n }\r\n @media #{$lg}{\r\n padding: 0px 15px;\r\n }\r\n // mobile menu show\r\n @media #{$md}{\r\n padding: 22px 50px;\r\n }\r\n @media #{$sm}{\r\n padding: 22px 20px;\r\n }\r\n @media #{$xs}{\r\n padding: 22px 20px;\r\n }\r\n }\r\n}\r\n// Header Bottom\r\n.main-header{\r\n .main-menu{\r\n @media #{$laptop}{\r\n margin-right: 30px;\r\n }\r\n & ul{\r\n & li{\r\n display: inline-block;\r\n position: relative;\r\n z-index: 1;\r\n\r\n & a{\r\n color: #000019;\r\n font-weight: 500;\r\n padding: 39px 10px;\r\n display: block;\r\n font-size: 16px;\r\n @include transition(.3s);\r\n text-transform: capitalize;\r\n position: relative;\r\n margin: 0 23px;\r\n font-family: $font_2;\r\n @media #{$lg}{\r\n padding: 39px 15px;\r\n margin: 0 10px;\r\n }\r\n }\r\n &:hover{\r\n & > a{\r\n color:$theme-color;\r\n }\r\n }\r\n }\r\n & ul.submenu{\r\n position: absolute;\r\n width: 170px;\r\n background: #fff;\r\n left: 0;\r\n top: 120%;\r\n visibility: hidden;\r\n opacity: 0;\r\n box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);\r\n padding: 17px 0;\r\n // border-top: 5px solid $theme-color;\r\n @include transition(.3s);\r\n & > li{\r\n margin-left: 7px;\r\n display: block;\r\n & > a{\r\n padding: 6px 10px !important;\r\n font-size: 16px;\r\n text-transform: capitalize;\r\n margin: 0;\r\n &:hover{\r\n color:$theme-color;\r\n background: none;\r\n }\r\n }\r\n } \r\n }\r\n }\r\n }\r\n .logo{\r\n & img{\r\n \r\n }\r\n }\r\n}\r\n\r\n.main-menu ul li.active > a::before {\r\n\twidth: 100%;\r\n}\r\n.main-menu ul li:hover > a::before {\r\n\twidth: 100%;\r\n}\r\n.main-header .main-menu ul ul.submenu > li > a:hover {\r\n\tpadding-left: 15px !important;\r\n}\r\n.main-header .main-menu ul ul.submenu > li > a:hover::before {\r\n\twidth: 10px;\r\n}\r\n\r\n\r\n.main-header ul > li:hover > ul.submenu {\r\n\tvisibility: visible;\r\n opacity: 1;\r\n top: 100%;\r\n}\r\n\r\n.main-header .header-sticky.sticky-bar{\r\n\tbackground: #fff;\r\n}\r\n.header-sticky.sticky-bar .main-menu ul>li>a {\r\n padding:27px 13px;\r\n margin: 0 10px;\r\n}\r\n.header-transparent {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tright: 0;\r\n\tleft: 0;\r\n\tz-index: 9;\r\n}\r\n// Mobile Menu slick Nav\r\n.mobile_menu {\r\n position: absolute;\r\n right: 0px;\r\n width: 100%;\r\n z-index: 99;\r\n .slicknav_menu {\r\n background: transparent;\r\n margin-top: 16px !important;\r\n }\r\n .slicknav_menu .slicknav_nav a:hover {\r\n background: transparent;\r\n color: $theme-color;\r\n }\r\n .slicknav_menu .slicknav_icon-bar {\r\n background-color: $theme-color !important;\r\n }\r\n .slicknav_btn {\r\n top: -43px;\r\n }\r\n .slicknav_nav {\r\n margin-top: 0px;\r\n }\r\n}", + "\r\n.slider-height {\r\n background-image: url(../img/hero/h1_hero.jpg);\r\n min-height: 830px;\r\n background-repeat:no-repeat ;\r\n background-position: center center;\r\n @media #{$laptop}{\r\n min-height: 700px;\r\n }\r\n @media #{$md}{\r\n min-height: 600px;\r\n }\r\n @media #{$xs}{\r\n min-height: 470px;\r\n }\r\n}\r\n\r\n.slider-height2{\r\n min-height: 300px;\r\n background-repeat:no-repeat ;\r\n background-position: center center;\r\n @media #{$xs}{\r\n min-height: 260px;\r\n }\r\n}\r\n\r\n.slider-area{\r\n .hero__caption{\r\n & h1{\r\n font-size: 70px;\r\n font-weight: 900;\r\n margin-bottom: 14px;\r\n color: #002d5b;\r\n font-family: $font_1;\r\n line-height: 1.2;\r\n text-transform: uppercase;\r\n margin-bottom: 53px;\r\n @media #{$lg}{\r\n font-size: 60px;\r\n line-height: 1.2;\r\n }\r\n @media #{$md}{\r\n font-size: 50px;\r\n line-height: 1.2;\r\n }\r\n @media #{$xs}{\r\n font-size: 35px;\r\n line-height: 1.2;\r\n }\r\n }\r\n & p{\r\n font-size: 18px;\r\n line-height: 1.2;\r\n font-weight: 300;\r\n margin-bottom: 39px;\r\n color: $theme_color;\r\n margin-bottom: 7px;\r\n text-transform: uppercase;\r\n @media #{$xs}{\r\n margin-bottom: 30px;\r\n }\r\n }\r\n }\r\n\r\n}\r\n\r\n//\r\n.hero-overly {\r\n position: relative;\r\n z-index: 1;\r\n &::before {\r\n position: absolute;\r\n content: \"\";\r\n background-color: rgba(1, 10, 28, 0.3);\r\n width: 100%;\r\n height: 100%;\r\n left: 0;\r\n top: 0;\r\n bottom: 0;\r\n right: 0;\r\n z-index: -1;\r\n background-repeat: no-repeat;\r\n }\r\n}\r\n\r\n// Another Hero Page\r\n.slider-area{\r\n .hero-cap{\r\n & h2{\r\n color: #fff;\r\n font-size: 50px;\r\n font-weight: 700;\r\n text-transform: capitalize;\r\n }\r\n }\r\n}\r\n", + ".services-area{\r\n // Single Offers\r\n @media #{$md}{\r\n padding-top: 100px;\r\n padding-bottom:80px;\r\n }\r\n\r\n @media #{$sm}{\r\n padding-top: 70px;\r\n padding-bottom: 20px;\r\n }\r\n\r\n @media #{$xs}{\r\n padding-top: 70px;\r\n padding-bottom: 20px;\r\n }\r\n .single-services{\r\n .services-icon{\r\n margin-bottom: 50px;\r\n width: 67px;\r\n height: 67px;\r\n background: #fff;\r\n line-height: 67px;\r\n text-align: center;\r\n border-radius: 50px;\r\n display: inline-block;\r\n position: relative;\r\n\r\n // Animated start\r\n &::before{\r\n content: \"\";\r\n position: absolute;\r\n top: -12px;\r\n left: -12px;\r\n width: 90px;\r\n height: 90px;\r\n background: transparent;\r\n border-radius: 50%;\r\n transition: .5s;\r\n border: 2px dashed #31ff7a;\r\n box-sizing:border-box;\r\n animation: animate 10s linear infinite;\r\n }\r\n @keyframes animate{\r\n 0%{\r\n transform: scale(1) rotate(0deg);\r\n }\r\n 100%{\r\n transform: scale(1) rotate(360deg);\r\n }\r\n }\r\n // Animated End\r\n span{\r\n color: $theme-color;\r\n font-size: 38px;\r\n padding-top: 3px;\r\n display: block;\r\n }\r\n }\r\n .services-cap{\r\n h5{\r\n & > a{\r\n color: #fff;\r\n font-size: 20px;\r\n font-weight: 700;\r\n margin-bottom: 21px;\r\n display: block;\r\n @include transition(.4s);\r\n @media #{$sm}{\r\n font-size: 29px;\r\n }\r\n }\r\n }\r\n p{\r\n margin-bottom: 0px;\r\n color: #bcbdca;\r\n font-size: 16px;\r\n @media #{$sm}{\r\n font-size: 15px;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n // Bottom Shape\r\n .single-services{\r\n position: relative;\r\n .shape1{\r\n position: absolute;\r\n right: -61%;\r\n top: 40px;\r\n @media #{$lg}{\r\n right: -75%;\r\n top: 40px;\r\n }\r\n }\r\n .shape2{\r\n position: absolute;\r\n right: -61%;\r\n top: 40px;\r\n @media #{$lg}{\r\n right: -80%;\r\n top: 40px;\r\n }\r\n }\r\n }", + ".categories-area {\r\n .single-cat{\r\n border: 1px solid #e1ebf7;\r\n border-radius: 6px;\r\n padding: 61px 22px;\r\n @include transition(.4s);\r\n position: relative;\r\n z-index: 1;\r\n\r\n &::before {\r\n position: absolute;\r\n content: \"\";\r\n width: 100%;\r\n height: 0;\r\n background:#ff3d1c;\r\n transition: .6s;\r\n bottom: 0;\r\n left: 0;\r\n z-index: -1;\r\n border-radius: 6px;\r\n }\r\n .cat-icon{\r\n span{\r\n color: $theme-color;\r\n font-size: 50px;\r\n margin-bottom: 30px;\r\n display: block;\r\n }\r\n }\r\n .cat-cap{\r\n h5{\r\n & > a{\r\n font-size: 25px;\r\n font-weight: 700;\r\n margin-bottom: 21px;\r\n display: block;\r\n @include transition(.2s);\r\n @media #{$sm}{\r\n font-size: 29px;\r\n }\r\n }\r\n }\r\n p{\r\n margin-bottom: 36px;\r\n color: #57667e;\r\n font-size: 16px;\r\n @include transition(.2s);\r\n @media #{$sm}{\r\n font-size: 15px;\r\n\r\n }\r\n }\r\n a{\r\n color: #1c165c;\r\n font-size: 16px;\r\n font-weight: 600;\r\n @include transition(.2s);\r\n }\r\n }\r\n\r\n\r\n // Hover Effect In single \r\n &:hover{\r\n border: 1px solid transparent;\r\n // background: #ff3d1c;\r\n\r\n &::before {\r\n height: 100%;\r\n }\r\n .cat-icon{\r\n span{\r\n color: #fff;\r\n }\r\n }\r\n .cat-cap{\r\n h5{\r\n color: #fff;\r\n }\r\n p{\r\n color: #fff;\r\n }\r\n a{\r\n color: #fff;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n// ul li::before{\r\n// content: \"\";\r\n// position: absolute;\r\n// top: 0;\r\n// left: 0;\r\n// width: 100%;\r\n// height: 100%;\r\n// background: transparent;\r\n// border-radius: 50%;\r\n// transform: scale(1);\r\n// transition: .5s;\r\n// border: 2px dashed red;\r\n// box-sizing:border-box;\r\n// animation: animate 10s linear infinite;\r\n\r\n// }\r\n\r\n// @keyframes animate{\r\n// 0%{\r\n// transform: scale(0.92) rotate(0deg);\r\n// }\r\n// 100%{\r\n// transform: scale(0.92) rotate(360deg);\r\n// }\r\n// }", + ".testimonial-area{\r\n position: relative;\r\n .testimonial-caption{\r\n padding-left: 80px;\r\n @media #{$md}{\r\n padding-left: 40px;\r\n }\r\n @media #{$sm}{\r\n padding-left: 40px;\r\n }\r\n @media #{$xs}{\r\n padding-left: 40px;\r\n }\r\n .testimonial-top-cap{\r\n & img{\r\n margin-bottom: 50px;\r\n width: auto;\r\n display: inline-block;\r\n @media #{$md}{\r\n margin-bottom: 30px;\r\n }\r\n @media #{$xs}{\r\n margin-bottom: 30px;\r\n }\r\n }\r\n & p{\r\n line-height: 1.5;\r\n padding-right: 100px;\r\n margin-bottom: 50px;\r\n font-size: 20px;\r\n @media #{$lg}{\r\n font-size: 20px;\r\n }\r\n @media #{$md}{\r\n font-size: 20px;\r\n padding-right: 40px;\r\n }\r\n @media #{$md}{\r\n font-size: 18px;\r\n padding-right: 30px;\r\n margin-bottom: 60px;\r\n }\r\n @media #{$sm}{\r\n font-size: 18px;\r\n padding-right: 30px;\r\n margin-bottom: 60px;\r\n }\r\n @media #{$xs}{\r\n font-size: 15px;\r\n padding-right: 30px;\r\n margin-bottom: 60px;\r\n }\r\n }\r\n }\r\n .testimonial-founder{\r\n .founder-img{\r\n\r\n }\r\n .founder-text{\r\n margin-left: 20px;\r\n & span{\r\n color:$theme-color;\r\n font-size: 30px;\r\n font-weight: 600;\r\n }\r\n & p{\r\n color: #57667e;\r\n font-weight:500;\r\n line-height:1.5 ;\r\n }\r\n }\r\n }\r\n }\r\n .testimonial-banner{\r\n position: relative;\r\n right: -55px;\r\n @media #{$large1}{\r\n left: 0px;\r\n }\r\n @media #{$lg}{\r\n left: 0px;\r\n }\r\n @media #{$md}{\r\n left: 0px;\r\n }\r\n @media #{$sm}{\r\n left: 0px;\r\n }\r\n @media #{$xs}{\r\n left: 0px;\r\n }\r\n img{\r\n width: 100%;\r\n }\r\n }\r\n // Shape\r\n .testimonial-shape{\r\n position: absolute;\r\n left: 0em;\r\n top: 31%;\r\n }\r\n}\r\n\r\n/* Homepage1 Testimonial */\r\n.h1-testimonial-active{\r\n button.slick-arrow {\r\n position: absolute;\r\n top: 50%;\r\n left: 0px;\r\n transform: translateY(-50%);\r\n border: 0;\r\n padding: 0;\r\n z-index: 2;\r\n cursor: pointer;\r\n font-size: 20px;\r\n @include transition(.3s);\r\n color: $theme-color;\r\n background: none;\r\n @media #{$sm}{\r\n left: -28px;\r\n }\r\n @media #{$sm}{\r\n left: -28px;\r\n }\r\n } \r\n button.slick-next {\r\n left: auto;\r\n right: 0px;\r\n @media #{$sm}{\r\n right: -28px;\r\n }\r\n }\r\n\r\n\r\n}\r\n\r\n.slick-initialized .slick-slide {\r\n outline: 0;\r\n}", + ".subscribe-area{\r\n // Form Style Slider\r\n @media #{$md}{\r\n padding-top: 100px;\r\n padding-bottom:100px;\r\n }\r\n @media #{$sm}{\r\n padding-top: 70px;\r\n padding-bottom: 70px;\r\n }\r\n @media #{$xs}{\r\n padding-top: 70px;\r\n padding-bottom: 70px;\r\n }\r\n form.search-box{\r\n display: flex;\r\n flex-wrap: wrap;\r\n justify-content: space-between;\r\n border-radius: 50px;\r\n\r\n .input-form{\r\n width: 73%;\r\n position: relative;\r\n\r\n // Border Radius\r\n border-top-left-radius: 50px;\r\n overflow: hidden;\r\n border-bottom-left-radius: 50px;\r\n @media #{$sm}{\r\n width: 66%;\r\n }\r\n @media #{$xs}{\r\n width: 100%;\r\n border-top-left-radius: 0px;\r\n border-bottom-left-radius: 0px;\r\n }\r\n input{\r\n height: 60px;\r\n width: 100%;\r\n color: #777777;\r\n font-size: 18px;\r\n font-weight: 400;\r\n padding: 9px 33px 9px 32px;\r\n border: none;\r\n border-radius: 0px;\r\n @media #{$xs}{\r\n margin-bottom: 20px;\r\n }\r\n @media #{$sm}{\r\n padding: 9px 33px 9px 25px;\r\n }\r\n &::placeholder {\r\n color: #616875;\r\n @media #{$xs}{\r\n font-size: 13px;\r\n \r\n }\r\n }\r\n }\r\n }\r\n .search-form{\r\n width: 27%;\r\n\r\n // Border Radius\r\n border-top-right-radius: 50px;\r\n overflow: hidden;\r\n border-bottom-right-radius: 50px;\r\n @media #{$sm}{\r\n width: 34%;\r\n }\r\n @media #{$xs}{\r\n width: 100%;\r\n border-top-right-radius: 0px;\r\n border-bottom-right-radius: 0px;\r\n }\r\n\r\n a{\r\n width: 100%;\r\n height: 60px;\r\n background:$btn-bg;\r\n font-size: 20px;\r\n line-height: 1;\r\n text-align: center;\r\n color: #fff;\r\n display: block;\r\n padding: 15px;\r\n border-radius: 0px;\r\n text-transform: capitalize;\r\n font-family: $font_1;\r\n letter-spacing: 0.1em;\r\n line-height: 1.2;\r\n line-height: 29px;\r\n font-size: 16px;\r\n }\r\n }\r\n }\r\n}\r\n", + ".listing-area{\r\n @media #{$xs}{\r\n padding-top: 70px;\r\n padding-bottom: 70px;\r\n }\r\n @media #{$sm}{\r\n padding-top: 70px;\r\n padding-bottom: 70px;\r\n }\r\n .count{\r\n span{\r\n color:#001d38;\r\n font-size: 18px;\r\n @media #{$xs}{\r\n margin-bottom: 30px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.category-listing{\r\n border: 1px solid #ededed;\r\n padding: 30px 19px 30px 30px;\r\n @media #{$lg}{\r\n padding: 30px 19px 30px 16px;\r\n }\r\n @media #{$md}{\r\n padding: 30px 19px 30px 16px;\r\n }\r\n .single-listing{\r\n // input\r\n .input-form input {\r\n width: 100%;\r\n height: 45px;\r\n background: #fff;\r\n color: #777777;\r\n font-size: 18px;\r\n font-weight: 400;\r\n padding: 9px 33px 9px 18px;\r\n border: 1px solid #ededed;\r\n border-radius: 5px;\r\n position: relative;\r\n margin-bottom: 20px;\r\n }\r\n .select-job-items1, .select-job-items2,{\r\n .nice-select {\r\n width: 100%;\r\n height: 45px;\r\n background: #fff;\r\n border-radius: 5px;\r\n padding: 11px 19px 11px 18px;\r\n color: #616875;\r\n line-height: 20px;\r\n border: 1px solid #ededed;\r\n margin-bottom: 20px;\r\n @media #{$xs}{\r\n padding-left: 25px;\r\n }\r\n @media #{$sm}{\r\n padding-left: 25px;\r\n }\r\n .list {\r\n width: 100%;\r\n }\r\n &.open .list {\r\n width: 100%;\r\n border-radius: 0;\r\n border: 0;\r\n }\r\n &::after {\r\n border-bottom: 1px solid #a9b6cd;\r\n border-right: 1px solid #a9b6cd;\r\n height: 12px;\r\n width: 12px;\r\n margin-top: -9px;\r\n right: 29px;\r\n }\r\n }\r\n }\r\n\r\n /* check_box Start */\r\n .select-Categories{\r\n .container {\r\n display: block;\r\n position: relative;\r\n padding-left: 35px;\r\n margin-bottom: 12px;\r\n cursor: pointer;\r\n font-size: 22px;\r\n -webkit-user-select: none;\r\n -moz-user-select: none;\r\n -ms-user-select: none;\r\n user-select: none;\r\n color: #666666;\r\n font-size: 16px;\r\n @media #{$xs}{\r\n font-size: 14px;\r\n }\r\n }\r\n .container input {\r\n position: absolute;\r\n opacity: 0;\r\n cursor: pointer;\r\n height: 0;\r\n width: 0;\r\n }\r\n .checkmark {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n height: 24px;\r\n width: 24px;\r\n border: 1px solid #ddd;\r\n }\r\n .container input:checked ~ .checkmark {\r\n background-color: #ff4357;\r\n border: 2px solid transparent;\r\n border-radius: 5px;\r\n }\r\n .checkmark:after {\r\n content: \"\";\r\n position: absolute;\r\n display: none;\r\n }\r\n .container input:checked ~ .checkmark:after {\r\n display: block;\r\n }\r\n .container .checkmark::after {\r\n left: 8px;\r\n top: 1px;\r\n width: 6px;\r\n height: 14px;\r\n border: solid white;\r\n border-width: 0px 2px 2px 0;\r\n -webkit-transform: rotate(45deg);\r\n -ms-transform: rotate(45deg);\r\n transform: rotate(45deg);\r\n }\r\n }\r\n /* check_box Start */\r\n }\r\n}\r\n\r\n// Range Style Start\r\n .range_item{\r\n p{\r\n margin-bottom: 0;\r\n }\r\n }\r\n .price_value input {\r\n border: 0px;\r\n text-align: center;\r\n max-width: 50px;\r\n background-color: transparent;\r\n }\r\n .price_value {\r\n align-items: center;\r\n }\r\n .irs-to,\r\n .irs-from,\r\n .irs-max,\r\n .irs-min {\r\n display: none;\r\n }\r\n \r\n .price_rangs_aside {\r\n .l_w_title {\r\n h3 {\r\n line-height: 20px;\r\n margin-bottom: 0px;\r\n }\r\n }\r\n }\r\n .irs-bar {\r\n height: 2px;\r\n top: 33px;\r\n border-top: 1px solid #ff3368;\r\n border-bottom: 1px solid #ff3368;\r\n background: #ff3368;\r\n background: linear-gradient(to top, #ff3368 0%, #ff3368 100%);\r\n }\r\n .irs-line {\r\n height: 2px;\r\n top: 33px;\r\n /* background: #e8eff1; */\r\n background: linear-gradient(to bottom, #ffeaef -50%, #ffeaef 150%);\r\n border: 1px solid #ffeaef;\r\n border-radius: 16px;\r\n -moz-border-radius: 16px;\r\n }\r\n .irs-slider {\r\n height: 15px;\r\n width: 15px;\r\n border: 1px solid #ff3368;\r\n background-color: #ff3368;\r\n background:#fff;\r\n top: 26px;\r\n box-shadow: none;\r\n border-radius: 4px;\r\n }\r\n .product_bar_item{\r\n @media #{$tab}{\r\n width: 100% !important;\r\n }\r\n }\r\n @media #{$tab}{\r\n .product_top_bar{\r\n margin-top: 70px;\r\n h2{\r\n font-size: 25px;\r\n }\r\n }\r\n .product_bar_single {\r\n margin-left: 0;\r\n margin-right: 5px;\r\n }\r\n .product_bar_single .nice-select {\r\n padding-left: 15px;\r\n padding-right: 35px;\r\n }\r\n }\r\n // Range Style End", + ".listing-details-area{\r\n .single-listing{\r\n .list-img {\r\n overflow: hidden;\r\n border-radius: 5px 5px 0 0;\r\n img {\r\n width: 100%;\r\n transform: scale(1);\r\n transition: all 0.6s ease-out 0s;\r\n }\r\n }\r\n .list-caption {\r\n border: 1px solid #e1ebf7;\r\n padding: 31px 24px 18px 24px;\r\n border-top: 0;\r\n position: relative;\r\n z-index: 0;\r\n span {\r\n color: #fff;\r\n position: absolute;\r\n top: -18px;\r\n right: 7px;\r\n font-size: 16px;\r\n font-weight: 500;\r\n width: 96px;\r\n height: 35px;\r\n background: #ff3d1c;\r\n border-radius: 30px;\r\n text-align: center;\r\n line-height: 35px;\r\n }\r\n h3 {\r\n padding-right: 48px;\r\n margin-bottom: 17px;\r\n @media #{$md}{\r\n padding-right: 0px;\r\n }\r\n @media #{$sm}{\r\n padding-right: 0px;\r\n }\r\n @media #{$xs}{\r\n padding-right: 0px;\r\n }\r\n\r\n a{\r\n color: #1c1930;\r\n font-weight: 700;\r\n font-size: 25px;\r\n }\r\n }\r\n p{\r\n color:#57667e;\r\n @media #{$laptop}{\r\n padding-right: 59px;\r\n }\r\n }\r\n\r\n }\r\n .list-footer{\r\n border-top: 1px solid #e1ebf7;\r\n margin-top: 20px;\r\n padding-top: 20px;\r\n ul{\r\n display: flex;\r\n justify-content: space-between;\r\n li{\r\n color: #727272;\r\n font-size: 14px;\r\n }\r\n }\r\n }\r\n // Hover\r\n &:hover .list-img img {\r\n transform: scale(1.1);\r\n }\r\n }\r\n \r\n}\r\n\r\n\r\n// \r\n\r\n\r\n// Form Style Slider\r\nform.search-box2{\r\n border: 8px solid rgba(255, 255, 255,.2);\r\n display: flex;\r\n flex-wrap: wrap;\r\n justify-content: space-between;\r\n border-radius: 50px;\r\n @media #{$sm}{\r\n border: none;\r\n }\r\n @media #{$xs}{\r\n border: none;\r\n }\r\n .input-form{\r\n width: 45%;\r\n position: relative;\r\n\r\n // Border Radius\r\n border-top-left-radius: 50px;\r\n overflow: hidden;\r\n border-bottom-left-radius: 50px;\r\n @media #{$sm}{\r\n width: 66%;\r\n border-top-left-radius: 0px;\r\n border-bottom-left-radius: 0px;\r\n }\r\n @media #{$xs}{\r\n width: 100%;\r\n border-top-left-radius: 0px;\r\n border-bottom-left-radius: 0px;\r\n }\r\n input{\r\n height: 60px;\r\n width: 100%;\r\n color: #777777;\r\n font-size: 18px;\r\n font-weight: 400;\r\n padding: 9px 33px 9px 32px;\r\n border: none;\r\n border-radius: 0px;\r\n position: relative;\r\n @media #{$xs}{\r\n margin-bottom: 20px;\r\n }\r\n @media #{$sm}{\r\n padding: 9px 33px 9px 25px;\r\n margin-bottom: 20px;\r\n }\r\n &::placeholder {\r\n color: #616875;\r\n @media #{$xs}{\r\n font-size: 13px;\r\n \r\n }\r\n }\r\n }\r\n &::before {\r\n position: absolute;\r\n content: '';\r\n width: 1px;\r\n height: 60px;\r\n background:#e0e4f8;\r\n right: 22px;\r\n top: 50%;\r\n z-index: 1;\r\n transform: translateY(-50%);\r\n @media #{$sm}{\r\n top: 38%;\r\n }\r\n @media #{$xs}{\r\n display: none;\r\n }\r\n }\r\n }\r\n .select-form{\r\n width: 34%;\r\n @media #{$xs}{\r\n width: 100%;\r\n }\r\n .nice-select {\r\n width: 100%;\r\n height: 60px;\r\n background: #fff;\r\n border-radius: 0px;\r\n padding: 11px 19px 11px 10px;\r\n color: #616875;\r\n line-height: 42px;\r\n border: 0;\r\n @media #{$xs}{\r\n margin-bottom: 20px;\r\n padding-left: 25px;\r\n }\r\n @media #{$sm}{\r\n margin-bottom: 20px;\r\n padding-left: 25px;\r\n }\r\n .list {\r\n width: 100%;\r\n }\r\n &.open .list {\r\n width: 100%;\r\n border-radius: 0;\r\n border: 0;\r\n }\r\n &::after {\r\n border-bottom: 1px solid #a9b6cd;\r\n border-right: 1px solid #a9b6cd;\r\n height: 12px;\r\n width: 12px;\r\n margin-top: -7px;\r\n right: 29px;\r\n }\r\n }\r\n\r\n }\r\n .search-form{\r\n width: 21%;\r\n\r\n // Border Radius\r\n border-top-right-radius: 50px;\r\n overflow: hidden;\r\n border-bottom-right-radius: 50px;\r\n @media #{$sm}{\r\n width: 100%;\r\n border-top-right-radius: 0px;\r\n border-bottom-right-radius: 0px;\r\n }\r\n @media #{$xs}{\r\n width: 100%;\r\n border-top-right-radius: 0px;\r\n border-bottom-right-radius: 0px;\r\n }\r\n a{\r\n width: 100%;\r\n height: 60px;\r\n background:$btn-bg;\r\n font-size: 20px;\r\n line-height: 1;\r\n text-align: center;\r\n color: #fff;\r\n display: block;\r\n padding: 15px;\r\n border-radius: 0px;\r\n text-transform: capitalize;\r\n font-family: $font_1;\r\n line-height: 31px;\r\n font-size: 15px;\r\n }\r\n }\r\n\r\n}", + "\r\n// Pagination Area\r\n.pagination-area{\r\n @media #{$lg}{\r\n padding-bottom: 50px;\r\n }\r\n @media #{$md}{\r\n padding-bottom: 50px;\r\n }\r\n @media #{$sm}{\r\n padding-bottom: 50px;\r\n }\r\n @media #{$xs}{\r\n padding-bottom: 50px;\r\n }\r\n .page-item {\r\n margin: 0;\r\n }\r\n .page-item:first-child {margin: 0;}\r\n .page-link {\r\n border:0;\r\n font-size: 15px;\r\n text-align: center;\r\n background: none;\r\n box-shadow: none;\r\n outline: 0;\r\n color:#727272;\r\n padding:16px 18px;\r\n background: #fff;\r\n margin: 0 7px;\r\n border-radius: 50%;\r\n border: 1px solid #f0f0f0;\r\n }\r\n .page-item:first-child .page-link {\r\n margin-left: 0;\r\n border-top-left-radius: 50%;\r\n border-bottom-left-radius: 50%;\r\n }\r\n .page-item:last-child .page-link {\r\n border-top-right-radius: 50%;\r\n border-bottom-right-radius: 50%;\r\n border: 1px solid $theme-color;\r\n }\r\n .page-link:hover {\r\n color:$theme-color;\r\n }\r\n .page-item.active .page-link {\r\n z-index: 1;\r\n border: 0;\r\n position: relative;\r\n box-shadow: none;\r\n outline: 0;\r\n background:#fff;\r\n color:#727272;\r\n border: 1px solid #f0f0f0;\r\n }\r\n}", + ".footer-area{\r\n background-image: url(../img/gallery/footer_bg.jpg);\r\n background-size: cover;\r\n background-repeat: no-repeat;\r\n .footer-logo{\r\n margin-bottom:40px;\r\n }\r\n .footer-pera{\r\n & p{\r\n color:#8ba4b1;\r\n padding-right: 125px;\r\n\r\n @media #{$laptop}{\r\n padding-right: 138px;\r\n }\r\n @media #{$lg}{\r\n padding-right: 95px;\r\n }\r\n @media #{$md}{\r\n padding-right: 13px;\r\n }\r\n @media #{$sm}{\r\n padding-right: 80px;\r\n }\r\n @media #{$xs}{\r\n padding-right: 30px;\r\n }\r\n font-size: 16px;\r\n margin-bottom: 50px;\r\n line-height: 1.8;\r\n }\r\n &.footer-pera2 p{\r\n padding: 0;\r\n }\r\n }\r\n .footer-tittle{\r\n & h4{\r\n color:#fff;\r\n font-size: 20px;\r\n margin-bottom: 29px;\r\n font-weight: 500;\r\n text-transform: capitalize;\r\n font-family: $font_2;\r\n span{\r\n color:#fff;\r\n }\r\n }\r\n & ul{\r\n & li{\r\n color: #8ba4b1;\r\n margin-bottom: 15px;\r\n & a{\r\n color: #8ba4b1;\r\n font-weight: 300;\r\n &:hover{\r\n color: $theme-color;\r\n padding-left: 5px;\r\n }\r\n }\r\n &.app-log{\r\n margin-bottom: 30px;\r\n display: block;\r\n }\r\n }\r\n }\r\n P{\r\n color: #8ba4b1;\r\n }\r\n }\r\n // Footer SociaL\r\n .footer-social {\r\n @media #{$md}{\r\n float: left; \r\n padding-top: 10px;\r\n }\r\n @media #{$sm}{\r\n float: left; \r\n padding-top: 10px;\r\n }\r\n @media #{$xs}{\r\n float: left; \r\n padding-top: 10px;\r\n }\r\n a {\r\n color: #8ba4b1;\r\n width: 40px;\r\n height: 40px;\r\n border-radius: 50%;\r\n font-size: 14px;\r\n border: 1px solid #e5e5e5;\r\n line-height: 40px;\r\n display: inline-block;\r\n text-align: center;\r\n margin-left: 8px;\r\n i {\r\n display: inline-block;\r\n }\r\n &:hover {\r\n background: $theme-color;\r\n border: 1px solid transparent;\r\n color: #fff;\r\n }\r\n }\r\n \r\n }\r\n //copy Right \r\n .footer-bottom{\r\n border-top: 1px solid #1c2e4c;\r\n padding: 40px 0px 23px;\r\n @media #{$xs}{\r\n padding: 35px 0px 20px;\r\n }\r\n .footer-copy-right{\r\n & p{\r\n color: #8ba4b1;\r\n font-weight: 300;\r\n font-size: 16px;\r\n line-height: 2;\r\n margin-bottom: 12px;\r\n & i{\r\n color:$theme-color;\r\n }\r\n & a{\r\n color: $theme-color;\r\n &:hover{\r\n // color: #fff;\r\n }\r\n \r\n }\r\n }\r\n }\r\n }\r\n\r\n}\r\n\r\n\r\n\r\n", + ".hero-caption{\r\n & span{\r\n color: #fff;\r\n font-size: 16px;\r\n display: block;\r\n margin-bottom: 24px;\r\n font-weight: 600;\r\n padding-left: 95px;\r\n position: relative;\r\n &::before{\r\n position: absolute;\r\n content: \"\";\r\n width: 75px;\r\n height: 3px;\r\n background:$theme-color;\r\n left: 0;\r\n top: 52%;\r\n transform: translateY(-50%);\r\n }\r\n }\r\n & h2{\r\n color: #fff;\r\n font-size: 50px;\r\n font-weight: 700;\r\n }\r\n}", + ".home-blog-area{\n .single-team{\n .team-img {\n overflow: hidden;\n margin-bottom: 19px;\n border-radius: 12px;\n img {\n width: 100%;\n transform: scale(1);\n transition: all 0.6s ease-out 0s;\n }\n }\n .team-caption {\n span {\n color: #ff3d1c;\n font-size: 14px;\n font-weight: 500;\n display: block;\n margin-bottom: 17px;\n }\n h3 {\n padding-right: 48px;\n margin-bottom: 17px;\n @media #{$md}{\n padding-right: 0px;\n }\n @media #{$sm}{\n padding-right: 0px;\n }\n @media #{$xs}{\n padding-right: 0px;\n }\n\n a{\n color: #1c1930;\n font-weight: 700;\n font-size: 25px;\n }\n }\n p{\n color:#57667e;\n }\n\n }\n\n // Hover\n &:hover .team-img img {\n transform: scale(1.1);\n }\n }\n \n}\n\n\n/* Start Blog Area css\n============================================================================================ */\n\n\n.latest-blog-area {\n .area-heading {\n margin-bottom: 70px;\n }\n}\n.blog_area{\n a{\n color: $font_1 !important;\n text-decoration: none;\n transition: .4s;\n &:hover, :hover{\n background: -webkit-linear-gradient( 131deg, $theme-color 0%, $theme-color 99%);\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n text-decoration: none;\n transition: .4s;\n }\n }\n}\n\n.single-blog {\n overflow: hidden;\n margin-bottom: 30px;\n \n &:hover {\n box-shadow: 0px 10px 20px 0px rgba(42, 34, 123, 0.1);\n }\n\n .thumb {\n overflow: hidden;\n position: relative;\n\n &:after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n background: #000;\n opacity: 0;\n @include transition(.3s);\n }\n }\n\n h4 {\n // @include transition(.3s);\n border-bottom: 1px solid #dfdfdf;\n padding-bottom: 34px;\n margin-bottom: 25px;\n }\n\n a {\n // color: $dip;\n font-size: 20px;\n font-weight: 600;\n\n &:hover {\n // // color: $baseColor;\n }\n }\n\n .date {\n color: #666666;\n text-align: left;\n display: inline-block;\n font-size: 13px;\n font-weight: 300;\n }\n\n .tag {\n // color: $baseColor;\n text-align: left;\n display: inline-block;\n float: left;\n font-size: 13px;\n font-weight: 300;\n margin-right: 22px;\n position: relative;\n\n &:after {\n content: '';\n position: absolute;\n width: 1px;\n height: 10px;\n background: #acacac;\n right: -12px;\n top: 7px;\n\n }\n\n @media(max-width:1199px) {\n margin-right: 8px;\n\n &:after {\n display: none;\n }\n }\n }\n\n .likes {\n margin-right: 16px;\n }\n\n @media(max-width:800px) {\n margin-bottom: 30px;\n }\n\n .single-blog-content {\n padding: 30px;\n\n .meta-bottom {\n p {\n font-size: 13px;\n font-weight: 300;\n }\n\n i {\n color: $border_color;\n font-size: 13px;\n margin-right: 7px;\n }\n }\n\n @media(max-width:1199px) {\n padding: 15px;\n }\n }\n\n &:hover {\n .thumb {\n &:after {\n opacity: .7;\n @include transition(.3s);\n }\n }\n }\n\n @media(max-width:1199px) {\n h4 {\n transition: all 300ms linear 0s;\n border-bottom: 1px solid #dfdfdf;\n padding-bottom: 14px;\n margin-bottom: 12px;\n\n a {\n font-size: 18px;\n }\n }\n }\n\n}\n\n.full_image.single-blog {\n position: relative;\n\n .single-blog-content {\n position: absolute;\n left: 35px;\n bottom: 0;\n opacity: 0;\n visibility: hidden;\n @include transition(.3s);\n\n .meta-bottom {\n p {\n // color: $white_color;\n }\n }\n\n @media (min-width: 992px) {\n bottom: 100px;\n }\n }\n\n h4 {\n @include transition(.3s);\n border-bottom: none;\n padding-bottom: 5px;\n }\n\n a {\n // color: $white_color;\n font-size: 20px;\n font-weight: 600;\n\n &:hover {\n // color: $baseColor;\n }\n }\n\n .date {\n color: #fff;\n }\n\n &:hover {\n .single-blog-content {\n opacity: 1;\n visibility: visible;\n @include transition(.3s);\n }\n }\n\n}\n\n/* End Blog Area css\n============================================================================================ */\n\n\n\n/* Latest Blog Area css\n============================================================================================ */\n.latest_blog_area {}\n\n.latest_blog_inner {}\n\n.l_blog_item {\n .l_blog_img {}\n\n .l_blog_text {\n .date {\n margin-top: 24px;\n margin-bottom: 15px;\n\n a {\n // color: $pfont;\n font-size: 12px;\n }\n }\n\n h4 {\n font-size: 18px;\n // color: $title-color;\n border-bottom: 1px solid #eeeeee;\n margin-bottom: 0px;\n padding-bottom: 20px;\n @include transition(.3s);\n\n &:hover {\n // // color: $baseColor;\n }\n }\n\n p {\n margin-bottom: 0px;\n padding-top: 20px;\n }\n }\n}\n\n/* End Latest Blog Area css\n============================================================================================ */\n\n\n/* Causes Area css\n============================================================================================ */\n.causes_area {}\n\n.causes_slider {\n .owl-dots {\n text-align: center;\n margin-top: 80px;\n\n .owl-dot {\n height: 14px;\n width: 14px;\n background: #eeeeee;\n display: inline-block;\n margin-right: 7px;\n\n &:last-child {\n margin-right: 0px;\n }\n\n &.active {\n // background: $baseColor;\n }\n }\n }\n}\n\n.causes_item {\n background: #fff;\n\n .causes_img {\n position: relative;\n\n .c_parcent {\n position: absolute;\n bottom: 0px;\n width: 100%;\n left: 0px;\n height: 3px;\n background: rgba(255, 255, 255, .5);\n\n span {\n width: 70%;\n height: 3px;\n // background: $title-color;\n position: absolute;\n left: 0px;\n bottom: 0px;\n\n &:before {\n content: \"75%\";\n position: absolute;\n right: -10px;\n bottom: 0px;\n // background: $title-color; \n color: #fff;\n padding: 0px 5px;\n }\n }\n }\n }\n\n .causes_text {\n padding: 30px 35px 40px 30px;\n\n h4 {\n // color: $title-color;\n // font-family: $rob;\n font-size: 18px;\n font-weight: 600;\n margin-bottom: 15px;\n cursor: pointer;\n\n &:hover {\n // // color: $title-color;\n }\n }\n\n p {\n font-size: 14px;\n line-height: 24px;\n // color: $pfont;\n font-weight: 300;\n margin-bottom: 0px;\n }\n }\n\n .causes_bottom {\n a {\n width: 50%;\n border: 1px solid;\n text-align: center;\n float: left;\n line-height: 50px;\n // background: $title-color;\n color: #fff;\n // font-family: $rob;\n font-size: 14px;\n font-weight: 500;\n\n &+a {\n border-color: #eeeeee;\n background: #fff;\n font-size: 14px;\n // color: $title-color;\n }\n }\n }\n}\n\n/* End Causes Area css\n============================================================================================ */\n\n\n\n/*================= latest_blog_area css =============*/\n.latest_blog_area {\n background: #f9f9ff;\n}\n\n.single-recent-blog-post {\n margin-bottom: 30px;\n\n .thumb {\n overflow: hidden;\n\n img {\n transition: all 0.7s linear;\n }\n }\n\n .details {\n padding-top: 30px;\n\n .sec_h4 {\n line-height: 24px;\n padding: 10px 0px 13px;\n transition: all 0.3s linear;\n\n &:hover {\n // color: $pfont;\n }\n }\n }\n\n .date {\n font-size: 14px;\n line-height: 24px;\n font-weight: 400;\n }\n\n &:hover {\n img {\n transform: scale(1.23) rotate(10deg);\n }\n }\n}\n\n.tags {\n .tag_btn {\n font-size: 12px;\n font-weight: 500;\n line-height: 20px;\n border: 1px solid #eeeeee;\n display: inline-block;\n padding: 1px 18px;\n text-align: center;\n\n // color: $title-color;\n &:before {\n // background: $title-color;\n }\n\n &+.tag_btn {\n margin-left: 2px;\n }\n }\n}\n\n/*========= blog_categorie_area css ===========*/\n.blog_categorie_area {\n padding-top: 30px;\n padding-bottom: 30px;\n // background: $lightGray;\n\n @media(min-width: 900px) {\n padding-top: 80px;\n padding-bottom: 80px;\n }\n\n @media(min-width: 1100px) {\n padding-top: 120px;\n padding-bottom: 120px;\n }\n}\n\n.categories_post {\n position: relative;\n text-align: center;\n cursor: pointer;\n\n img {\n max-width: 100%;\n }\n\n .categories_details {\n position: absolute;\n top: 20px;\n left: 20px;\n right: 20px;\n bottom: 20px;\n background: rgba(34, 34, 34, 0.75);\n color: #fff;\n transition: all 0.3s linear;\n display: flex;\n align-items: center;\n justify-content: center;\n\n h5 {\n margin-bottom: 0px;\n font-size: 18px;\n line-height: 26px;\n text-transform: uppercase;\n color: #fff;\n position: relative;\n // &:before{\n // content: \"\";\n // height: 1px;\n // width: 100%;\n // background: #fff;\n // position: absolute;\n // bottom: 0px;\n // left: 0px;\n // }\n }\n\n p {\n font-weight: 300;\n font-size: 14px;\n line-height: 26px;\n margin-bottom: 0px;\n }\n\n .border_line {\n margin: 10px 0px;\n background: #fff;\n width: 100%;\n height: 1px;\n }\n }\n\n &:hover {\n .categories_details {\n background: rgba(222, 99, 32, 0.85);\n }\n }\n}\n\n\n\n/*============ blog_left_sidebar css ==============*/\n.blog_area {\n // background: $lightGray;\n}\n\n.blog_left_sidebar {}\n\n.blog_item {\n margin-bottom: 50px;\n}\n\n.blog_details {\n padding: 30px 0 20px 10px;\n box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3);\n\n @media(min-width: 768px) {\n padding: 60px 30px 35px 35px;\n }\n\n p {\n margin-bottom: 30px;\n }\n\n a {\n color: $heading_color2;\n\n &:hover {\n color: $btn_bg;\n }\n }\n\n h2 {\n font-size: 18px;\n font-weight: 600;\n margin-bottom: 8px;\n\n @media(min-width: 768px) {\n font-size: 24px;\n margin-bottom: 15px;\n }\n }\n}\n\n.blog-info-link {\n\n li {\n float: left;\n font-size: 14px;\n\n a {\n color: #999999;\n }\n\n i,\n span {\n font-size: 13px;\n margin-right: 5px;\n }\n\n &::after {\n content: \"|\";\n padding-left: 10px;\n padding-right: 10px;\n }\n\n &:last-child::after {\n display: none;\n }\n }\n\n &::after {\n content: \"\";\n display: block;\n clear: both;\n display: table;\n }\n}\n\n.blog_item_img {\n position: relative;\n\n .blog_item_date {\n position: absolute;\n bottom: -10px;\n left: 10px;\n display: block;\n color: $white_color;\n background-color: $theme-color;\n padding: 8px 15px;\n border-radius: 5px;\n\n @media(min-width: 768px) {\n bottom: -20px;\n left: 40px;\n padding: 13px 30px;\n }\n\n h3 {\n font-size: 22px;\n font-weight: 600;\n color: $white_color;\n margin-bottom: 0;\n line-height: 1.2;\n\n @media(min-width: 768px) {\n font-size: 30px;\n }\n }\n\n p {\n font-size: 18px;\n margin-bottom: 0;\n color: $white_color;\n\n @media(min-width: 768px) {\n font-size: 18px;\n }\n }\n }\n}\n\n\n\n\n.blog_right_sidebar {\n\n // border: 1px solid #eeeeee;\n // background: #fafaff;\n // padding: 30px;\n .widget_title {\n font-size: 20px;\n margin-bottom: 40px;\n // color: $title-color;\n\n &::after {\n content: \"\";\n display: block;\n padding-top: 15px;\n border-bottom: 1px solid #f0e9ff;\n }\n }\n\n .single_sidebar_widget {\n background: #fbf9ff;\n padding: 30px;\n margin-bottom: 30px;\n .btn_1{\n margin-top: 0px;\n }\n }\n\n\n .search_widget {\n\n .form-control {\n height: 50px;\n border-color: #f0e9ff;\n font-size: 13px;\n color: #999999;\n padding-left: 20px;\n border-radius: 0;\n border-right: 0;\n\n &::placeholder {\n color: #999999;\n }\n\n &:focus {\n border-color: #f0e9ff;\n outline: 0;\n box-shadow: none;\n }\n }\n\n .input-group {\n\n button {\n background:$theme-color;\n border-left: 0;\n border: 1px solid #f0e9ff;\n padding: 4px 15px;\n border-left: 0;\n cursor: pointer;\n\n i{\n color: #fff;\n }\n span {\n font-size: 14px;\n color: #999999;\n }\n }\n }\n\n }\n\n .newsletter_widget {\n\n .form-control {\n height: 50px;\n border-color: #f0e9ff;\n font-size: 13px;\n color: #999999;\n padding-left: 20px;\n border-radius: 0;\n // border-right: 0;\n\n &::placeholder {\n color: #999999;\n }\n\n &:focus {\n border-color: #f0e9ff;\n outline: 0;\n box-shadow: none;\n }\n }\n\n .input-group {\n\n button {\n background: $white_color;\n border-left: 0;\n border: 1px solid #f0e9ff;\n padding: 4px 15px;\n border-left: 0;\n\n i,\n span {\n font-size: 14px;\n color: #fff;\n }\n }\n }\n\n }\n\n\n .post_category_widget {\n .cat-list {\n li {\n border-bottom: 1px solid #f0e9ff;\n transition: all 0.3s ease 0s;\n padding-bottom: 12px;\n\n &:last-child {\n border-bottom: 0;\n }\n\n a {\n font-size: 14px;\n line-height: 20px;\n color: #888888;\n\n p {\n margin-bottom: 0px;\n }\n }\n\n &+li {\n padding-top: 15px;\n }\n\n &:hover {\n\n // border-// color: $title-color;\n a {\n // // color: $baseColor;\n }\n }\n }\n }\n }\n\n .popular_post_widget {\n .post_item {\n .media-body {\n justify-content: center;\n align-self: center;\n padding-left: 20px;\n\n h3 {\n font-size: 16px;\n line-height: 20px;\n margin-bottom: 6px;\n transition: all 0.3s linear;\n\n }\n\n a {\n\n // color: $title_color;\n &:hover {\n color: $white_color;\n }\n\n }\n\n p {\n font-size: 14px;\n line-height: 21px;\n margin-bottom: 0px;\n }\n }\n\n &+.post_item {\n margin-top: 20px;\n }\n }\n }\n\n .tag_cloud_widget {\n ul {\n li {\n display: inline-block;\n \n a {\n display: inline-block;\n border: 1px solid #eeeeee;\n background: #fff;\n padding: 4px 20px;\n margin-bottom: 8px;\n margin-right: 3px;\n transition: all 0.3s ease 0s;\n color: #888888;\n font-size: 13px;\n\n &:hover {\n background: $theme-color;\n color: #fff !important;\n -webkit-text-fill-color: #fff;\n text-decoration: none;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n }\n }\n }\n }\n }\n\n .instagram_feeds {\n\n .instagram_row {\n display: flex;\n margin-right: -6px;\n margin-left: -6px;\n\n\n li {\n width: 33.33%;\n float: left;\n padding-right: 6px;\n padding-left: 6px;\n margin-bottom: 15px;\n }\n }\n }\n\n\n\n\n\n\n\n // .author_widget{\n // text-align: center;\n // h4{\n // font-size: 18px;\n // line-height: 20px;\n // // color: $title-color;\n // margin-bottom: 5px;\n // margin-top: 30px;\n // }\n // p{\n // margin-bottom: 0px;\n // }\n // .social_icon{\n // padding: 7px 0px 15px;\n // a{\n // font-size: 14px;\n // // color: $title-color;\n // transition: all 0.2s linear;\n // & + a{\n // margin-left: 20px;\n // }\n // &:hover{\n // // color: $title-color;\n // }\n // }\n // }\n // }\n\n\n // .newsletter_widget{\n // text-align: center;\n // p{\n\n // }\n // .form-group{\n // margin-bottom: 8px;\n // }\n // .input-group-prepend {\n // margin-right: -1px;\n // }\n // .input-group-text {\n // background: #fff;\n // border-radius: 0px;\n // vertical-align: top;\n // font-size: 12px;\n // line-height: 36px;\n // padding: 0px 0px 0px 15px;\n // border: 1px solid #eeeeee;\n // border-right: 0px;\n\n // i{\n // color: #cccccc;\n // }\n // }\n // .form-control{\n // font-size: 12px;\n // line-height: 24px;\n // color: #cccccc;\n // border: 1px solid #eeeeee;\n // border-left: 0px;\n // border-radius: 0px;\n // @include placeholder{\n // color: #cccccc;\n // }\n // &:focus{\n // outline: none;\n // box-shadow: none;\n // }\n // }\n // .bbtns{\n // background: $title-color;\n // color: #fff;\n // font-size: 12px;\n // line-height: 38px;\n // display: inline-block;\n // font-weight: 500;\n // padding: 0px 24px 0px 24px;\n // border-radius: 0;\n // }\n // .text-bottom{\n // font-size: 12px;\n // }\n // }\n\n .br {\n width: 100%;\n height: 1px;\n background: rgb(238, 238, 238);\n margin: 30px 0px;\n }\n}\n\n\n// .page-link {\n// background: transparent;\n// font-weight: 400;\n// }\n\n// .blog-pagination .page-item.active .page-link {\n// background-// color: $title-color;\n// border-color: transparent;\n// color:#fff;\n// }\n\n\n.blog-pagination {\n margin-top: 80px;\n}\n\n.blog-pagination .page-link {\n font-size: 14px;\n position: relative;\n display: block;\n padding: 0;\n text-align: center;\n // padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 45px;\n width: 45px;\n height: 45px;\n border-radius: 0 !important;\n color: #8a8a8a;\n border: 1px solid #f0e9ff;\n margin-right: 10px;\n\n\n i,\n span {\n font-size: 13px;\n }\n\n &:hover {\n // background-color: $baseColor;\n // color: $white_color;\n }\n}\n\n.blog-pagination .page-item.active {\n .page-link {\n background-color: #fbf9ff;\n border-color: #f0e9ff;\n color: #888888;\n }\n}\n\n.blog-pagination .page-item:last-child .page-link {\n margin-right: 0;\n}\n\n// .blog-pagination .page-link .lnr {\n// font-weight: 600;\n// }\n\n// .blog-pagination .page-item:last-child .page-link,\n// .blog-pagination .page-item:first-child .page-link {\n// border-radius: 0;\n// }\n\n// .blog-pagination .page-link:hover {\n// color: #fff;\n// text-decoration: none;\n// background-// color: $title-color;\n// border-color: #eee;\n// }\n\n\n\n/*============ Start Blog Single Styles =============*/\n\n.single-post-area {\n .blog_details {\n box-shadow: none;\n padding: 0;\n }\n\n .social-links {\n padding-top: 10px;\n\n li {\n display: inline-block;\n margin-bottom: 10px;\n\n a {\n color: #cccccc;\n padding: 7px;\n font-size: 14px;\n transition: all 0.2s linear;\n\n &:hover {\n // color: $title-color;\n }\n }\n }\n }\n\n .blog_details {\n padding-top: 26px;\n\n p {\n margin-bottom: 20px;\n font-size: 15px;\n }\n\n h2 {\n // color: $title-color;\n }\n }\n\n .quote-wrapper {\n background: rgba(130, 139, 178, 0.1);\n padding: 15px;\n line-height: 1.733;\n color: #888888;\n font-style: italic;\n margin-top: 25px;\n margin-bottom: 25px;\n\n @media(min-width: 768px) {\n padding: 30px;\n }\n }\n\n .quotes {\n background: $white_color;\n padding: 15px 15px 15px 20px;\n border-left: 2px solid;\n\n @media(min-width: 768px) {\n padding: 25px 25px 25px 30px;\n }\n }\n\n .arrow {\n position: absolute;\n\n .lnr {\n font-size: 20px;\n font-weight: 600;\n }\n }\n\n .thumb {\n .overlay-bg {\n background: rgba(#000, .8);\n }\n }\n\n .navigation-top {\n padding-top: 15px;\n border-top: 1px solid #f0e9ff;\n\n p {\n margin-bottom: 0;\n }\n\n .like-info {\n font-size: 14px;\n\n i,\n span {\n font-size: 16px;\n margin-right: 5px;\n }\n }\n\n .comment-count {\n font-size: 14px;\n\n i,\n span {\n font-size: 16px;\n margin-right: 5px;\n }\n }\n\n .social-icons {\n\n li {\n display: inline-block;\n margin-right: 15px;\n\n &:last-child {\n margin: 0;\n }\n\n i,\n span {\n font-size: 14px;\n color: #999999;\n }\n\n &:hover {\n\n i,\n span {\n // // color: $baseColor;\n }\n }\n }\n }\n }\n\n\n .blog-author {\n padding: 40px 30px;\n background: #fbf9ff;\n margin-top: 50px;\n\n @media(max-width: 600px) {\n padding: 20px 8px;\n }\n\n img {\n width: 90px;\n height: 90px;\n border-radius: 50%;\n margin-right: 30px;\n\n @media(max-width: 600px) {\n margin-right: 15px;\n width: 45px;\n height: 45px;\n }\n }\n\n a {\n display: inline-block;\n\n // color: $title-color;\n &:hover {\n color: $btn_bg;\n }\n }\n\n p {\n margin-bottom: 0;\n font-size: 15px;\n }\n\n h4 {\n font-size: 16px;\n }\n }\n\n\n\n .navigation-area {\n border-bottom: 1px solid #eee;\n padding-bottom: 30px;\n margin-top: 55px;\n\n p {\n margin-bottom: 0px;\n }\n\n h4 {\n font-size: 18px;\n line-height: 25px;\n // color: $title-color;\n }\n\n .nav-left {\n text-align: left;\n\n .thumb {\n margin-right: 20px;\n background: #000;\n\n img {\n @include transition(.3s);\n }\n }\n\n .lnr {\n margin-left: 20px;\n opacity: 0;\n @include transition(.3s);\n }\n\n &:hover {\n .lnr {\n opacity: 1;\n }\n\n .thumb {\n img {\n opacity: .5;\n }\n }\n }\n\n @media(max-width:767px) {\n margin-bottom: 30px;\n }\n }\n\n .nav-right {\n text-align: right;\n\n .thumb {\n margin-left: 20px;\n background: #000;\n\n img {\n @include transition(.3s);\n }\n }\n\n .lnr {\n margin-right: 20px;\n opacity: 0;\n @include transition(.3s);\n }\n\n &:hover {\n .lnr {\n opacity: 1;\n }\n\n .thumb {\n img {\n opacity: .5;\n }\n }\n }\n }\n }\n\n .sidebar-widgets {\n @media(max-width: 991px) {\n padding-bottom: 0px;\n }\n }\n}\n\n.comments-area {\n background: transparent;\n // border: 1px solid #eee;\n border-top: 1px solid #eee;\n padding: 45px 0;\n margin-top: 50px;\n\n @media(max-width: 414px) {\n padding: 50px 8px;\n }\n\n h4 {\n // text-align: center;\n margin-bottom: 35px;\n // color: $title-color;\n font-size: 18px;\n }\n\n h5 {\n font-size: 16px;\n margin-bottom: 0px;\n }\n\n a {\n // color: $title-color;\n }\n\n .comment-list {\n padding-bottom: 48px;\n\n &:last-child {\n padding-bottom: 0px;\n }\n\n &.left-padding {\n padding-left: 25px;\n }\n\n @media(max-width:413px) {\n .single-comment {\n h5 {\n font-size: 12px;\n }\n\n .date {\n font-size: 11px;\n }\n\n .comment {\n font-size: 10px;\n }\n }\n }\n }\n\n .thumb {\n margin-right: 20px;\n\n img {\n width: 70px;\n border-radius: 50%;\n }\n }\n\n .date {\n font-size: 14px;\n color: #999999;\n margin-bottom: 0;\n margin-left: 20px;\n }\n\n .comment {\n margin-bottom: 10px;\n color: #777777;\n font-size: 15px;\n }\n\n .btn-reply {\n background-color: transparent;\n color: #888888;\n // border:1px solid #eee;\n padding: 5px 18px;\n font-size: 14px;\n display: block;\n font-weight: 400;\n // @include transition(.3s);\n // &:hover {\n // background-// color: $title-color;\n // color: #fff;\n // font-weight: 700;\n // }\n }\n}\n\n.comment-form {\n // background:#fafaff;\n // text-align: center;\n border-top: 1px solid #eee;\n padding-top: 45px;\n margin-top: 50px;\n margin-bottom: 20px;\n\n .form-group {\n margin-bottom: 30px;\n }\n\n h4 {\n // text-align: center;\n margin-bottom: 40px;\n font-size: 18px;\n line-height: 22px;\n // color: $title-color;\n }\n\n .name {\n padding-left: 0px;\n\n @media(max-width: 767px) {\n padding-right: 0px;\n margin-bottom: 1rem;\n }\n }\n\n .email {\n padding-right: 0px;\n\n @media(max-width: 991px) {\n padding-left: 0px;\n }\n }\n\n .form-control {\n border: 1px solid #f0e9ff;\n border-radius: 5px;\n height: 48px;\n padding-left: 18px;\n font-size: 13px;\n background: transparent;\n\n &:focus {\n outline: 0;\n box-shadow: none;\n }\n\n &::placeholder {\n font-weight: 300;\n color: #999999;\n }\n\n &::placeholder {\n color: #777777;\n }\n }\n\n textarea {\n padding-top: 18px;\n border-radius: 12px;\n height: 100% !important;\n }\n\n ::-webkit-input-placeholder {\n /* Chrome/Opera/Safari */\n font-size: 13px;\n color: #777;\n }\n\n ::-moz-placeholder {\n /* Firefox 19+ */\n font-size: 13px;\n color: #777;\n }\n\n :-ms-input-placeholder {\n /* IE 10+ */\n font-size: 13px;\n color: #777;\n }\n\n :-moz-placeholder {\n /* Firefox 18- */\n font-size: 13px;\n color: #777;\n }\n}\n\n\n\n/*============ End Blog Single Styles =============*/", + "/*=================== contact banner start ====================*/\n\n.dropdown .dropdown-menu {\n -webkit-transition: all 0.3s;\n -moz-transition: all 0.3s;\n -ms-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.contact-info{\n margin-bottom: 25px;\n\n &__icon{\n margin-right: 20px;\n\n i,span{\n color: #8f9195;\n font-size: 27px;\n }\n }\n\n .media-body{\n\n h3{\n font-size: 16px;\n margin-bottom: 0;\n font-size: 16px;\n color: #2a2a2a;\n a{\n &:hover{\n color: $theme-color2;\n }\n }\n }\n\n p{\n color: #8a8a8a;\n }\n }\n}\n/*=================== contact banner end ====================*/\n\n\n/*=================== contact form start ====================*/\n.contact-title{\n font-size: 27px;\n font-weight: 600;\n margin-bottom: 20px;\n}\n\n.form-contact{\n\n label{\n font-size: 14px;\n }\n\n .form-group{\n margin-bottom: 30px;\n }\n\n .form-control{\n border: 1px solid #e5e6e9;\n border-radius: 0px;\n height: 48px;\n padding-left: 18px;\n font-size: 13px;\n background: transparent;\n\n &:focus{\n outline: 0;\n box-shadow: none;\n }\n\n &::placeholder{\n font-weight: 300;\n color: #999999;\n }\n }\n\n textarea{\n border-radius: 0px;\n height: 100% !important;\n }\n\n // button{\n // border: 0;\n // }\n}\n\n/*=================== contact form end ====================*/\n\n/* Contact Success and error Area css\n============================================================================================ */\n\n\n.modal-message {\n .modal-dialog {\n position: absolute;\n top: 36%;\n left: 50%;\n transform: translateX(-50%) translateY(-50%) !important;\n margin: 0px;\n max-width: 500px;\n width: 100%;\n .modal-content {\n .modal-header {\n text-align: center;\n display: block;\n border-bottom: none;\n padding-top: 50px;\n padding-bottom: 50px;\n .close {\n position: absolute;\n right: -15px;\n top: -15px;\n padding: 0px;\n color: #fff;\n opacity: 1;\n cursor: pointer;\n }\n h2 {\n display: block;\n text-align: center;\n padding-bottom: 10px;\n }\n p {\n display: block;\n }\n }\n }\n }\n}\n.contact-section{\n padding: 130px 0 100px;\n @media #{$tab}{\n padding: 70px 0 40px;\n }\n @media #{$medium_device}{\n padding: 80px 0 50px;\n }\n .btn_2{\n background-color:#191d34;\n padding: 18px 60px;\n border-radius: 50px;\n margin-top: 0;\n &:hover{\n background-color: $theme-color2;\n \n }\n }\n}\n\n\n", + ".breadcam_bg{\r\n background-image: url(../img/banner/bradcam.png);\r\n}\r\n.breadcam_bg_1{\r\n background-image: url(../img/banner/bradcam2.png);\r\n}\r\n.breadcam_bg_2{\r\n background-image: url(../img/banner/bradcam3.png);\r\n}\r\n.bradcam_area{\r\n background-size: cover;\r\n background-position: center center;\r\n padding: 160px 0;\r\n background-position: bottom;\r\n background-repeat: no-repeat;\r\n @media #{$mobile_device} {\r\n padding: 150px 0;\r\n }\r\n @media #{$tablet_device} {\r\n padding: 150px 0;\r\n }\r\n h3{\r\n font-size: 50px;\r\n color: #fff;\r\n font-weight: 900;\r\n margin-bottom: 0;\r\n font-family: $font_1;\r\n text-transform: capitalize;\r\n @media #{$mobile_device} {\r\n font-size: 30px;\r\n }\r\n @media #{$tablet_device} {\r\n font-size: 40px;\r\n }\r\n }\r\n}\r\n\r\n.popup_box{\r\n // position: absolute;\r\n // left: 50%;\r\n // top: 50%;\r\n // transform: translate(-50%,-50%);\r\n background: #fff;\r\n display: inline-block;\r\n z-index: 9;\r\n width: 681px;\r\n padding: 60px 40px;\r\n @media #{$mobile_device} {\r\n width: 320px;\r\n padding: 45px 30px;\r\n }\r\n @media #{$large_mobile} {\r\n width: 420px !important;\r\n padding: 45px 30px;\r\n }\r\n \r\n h3{\r\n text-align: center;\r\n font-size: 22px;\r\n color: #1F1F1F;\r\n margin-bottom: 46px;\r\n }\r\n .boxed-btn3{\r\n width: 100%;\r\n text-transform: capitalize;\r\n }\r\n .nice-select {\r\n -webkit-tap-highlight-color: transparent;\r\n background-color: #fff;\r\n /* border-radius: 5px; */\r\n border: solid 1px #E2E2E2;\r\n box-sizing: border-box;\r\n clear: both;\r\n cursor: pointer;\r\n display: block;\r\n float: left;\r\n font-family: $font_2;\r\n font-weight: normal;\r\n width: 100% !important;\r\n /* height: 42px; */\r\n line-height: 50px;\r\n outline: none;\r\n padding-left: 18px;\r\n padding-right: 30px;\r\n position: relative;\r\n text-align: left !important;\r\n -webkit-transition: all 0.2s ease-in-out;\r\n transition: all 0.2s ease-in-out;\r\n -webkit-user-select: none;\r\n -moz-user-select: none;\r\n -ms-user-select: none;\r\n user-select: none;\r\n white-space: nowrap;\r\n width: auto;\r\n border-radius: 0;\r\n margin-bottom: 30px;\r\n height: 50px !important;\r\n font-size: 16px;\r\n font-weight: 400;\r\n color: #919191;\r\n &::after {\r\n content: \"\\f0d7\";\r\n display: block;\r\n height: 5px;\r\n margin-top: -5px;\r\n pointer-events: none;\r\n position: absolute;\r\n right: 17px;\r\n top: 3px;\r\n transition: all 0.15s ease-in-out;\r\n width: 5px;\r\n font-family: fontawesome;\r\n color: #919191;\r\n font-size: 15px;\r\n }\r\n &.open .list {\r\n opacity: 1;\r\n pointer-events: auto;\r\n -webkit-transform: scale(1) translateY(0);\r\n -ms-transform: scale(1) translateY(0);\r\n transform: scale(1) translateY(0);\r\n height: 200px;\r\n overflow-y: scroll;\r\n }\r\n &.list {\r\n height: 200px;\r\n overflow-y: scroll;\r\n }\r\n }\r\n}\r\n#test-form {\r\n display: inline-block;\r\n margin: auto;\r\n text-align: center;\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n @include transform (translate(-50%,-50%));\r\n @media #{$mobile_device}{\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n @include transform (none);\r\n }\r\n .mfp-close-btn-in .mfp-close {\r\n color: #333;\r\n display: none !important;\r\n }\r\n button{\r\n &.mfp-close{\r\n display: none !important;\r\n @media #{$mobile_device} {\r\n display: block !important;\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n }\r\n }\r\n }\r\n button.mfp-close {\r\n overflow: visible;\r\n cursor: pointer;\r\n background: transparent;\r\n border: 0;\r\n -webkit-appearance: none;\r\n display: block;\r\n outline: none;\r\n padding: 0;\r\n z-index: 1046;\r\n box-shadow: none;\r\n touch-action: manipulation;\r\n width: 40px;\r\n height: 40px;\r\n background: #4A3600;\r\n text-align: center;\r\n line-height: 20px;\r\n position: absolute;\r\n right: 0;\r\n border-bottom-right-radius: 20px;\r\n border-bottom-left-radius: 20px;\r\n position: absolute;\r\n right: -6px;\r\n color: #fff !important;\r\n }\r\n}\r\n\r\n.mfp-bg {\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: 1042;\r\n\toverflow: hidden;\r\n\tposition: fixed;\r\n\tbackground: #4A3600;\r\n\topacity: 0.6;\r\n}\r\n\r\n.gj-picker.gj-picker-md.datepicker.gj-unselectable {\r\n @media #{$mobile_device} {\r\n // width: 320px;\r\n // left: 0 !important;\r\n }\r\n\r\n}\r\n.gj-picker.gj-picker-md.timepicker {\r\n @media #{$mobile_device} {\r\n width: 310px;\r\n left: 6px !important;\r\n }\r\n\r\n}\r\n.gj-picker.gj-picker-md.datepicker.gj-unselectable {\r\n @media #{$mobile_device} {\r\n width: 320px;\r\n left: 0 !important;\r\n }\r\n}", + ".flex-center-start{\r\n display: -webkit-box;\r\ndisplay: -ms-flexbox;\r\ndisplay: flex;\r\n-webkit-box-align: center;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n-webkit-box-pack: start;\r\n -ms-flex-pack: start;\r\n justify-content: start;\r\n}\r\n\r\n%overlay{\r\n\tbackground-image: -moz-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n\tbackground-image: -webkit-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n\tbackground-image: -ms-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n }\r\n\r\n %btn_gradient{\r\n background-image: -moz-linear-gradient( 0deg, rgb(241,68,55) 0%, rgb(237,91,13) 99%);\r\n background-image: -webkit-linear-gradient( 0deg, rgb(241,68,55) 0%, rgb(237,91,13) 99%);\r\n background-image: -ms-linear-gradient( 0deg, rgb(241,68,55) 0%, rgb(237,91,13) 99%);\r\n }\r\n \r\n// Home Page Gradient\r\n\r\n%gradient_team{\r\n /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#021a47+0,021a47+100&0+0,0.6+100 */\r\n background: -moz-linear-gradient(top, rgba(2,26,71,0) 0%, rgba(2,26,71,0.6) 100%); /* FF3.6-15 */\r\n background: -webkit-linear-gradient(top, rgba(2,26,71,0) 0%,rgba(2,26,71,0.6) 100%); /* Chrome10-25,Safari5.1-6 */\r\n background: linear-gradient(to bottom, rgba(2,26,71,0) 0%,rgba(2,26,71,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */\r\n filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00021a47', endColorstr='#99021a47',GradientType=0 ); /* IE6-9 */\r\n}\r\n\r\n%gallery{\r\n background-image: -moz-linear-gradient( 90deg, rgb(1,10,39) 0%, rgb(1,10,39) 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, rgb(11,52,201) 100%);\r\n background-image: -webkit-linear-gradient( 90deg, rgb(1,10,39) 0%, rgb(1,10,39) 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, rgb(11,52,201) 100%);\r\n background-image: -ms-linear-gradient( 90deg, rgb(1,10,39) 0%, rgb(1,10,39) 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, rgb(11,52,201) 100%);\r\n\r\n}\r\n\r\n// &::before{\r\n// position: absolute;\r\n// width: 100%;\r\n// height: 100%;\r\n// bottom: 0;\r\n// content: \"\";\r\n// @extend %gallery;\r\n\r\n// }\r\n", + "$default: #f9f9ff;\n$primary: $theme-color2;\n$success: #4cd3e3;\n$info: #38a4ff;\n$warning: #f4e700;\n$danger: #f44a40;\n$link: #f9f9ff;\n$disable: (#222222, .3);\n$primary-color: #7c32ff;\n$primary-color1: #c738d8;\n$title-color: #415094;\n$text-color: #828bb2;\n$white: #fff;\n$offwhite: #f9f9ff;\n$black: #000;\n\n// Mixins\n@mixin transition($args: all 0.3s ease 0s) {\n -webkit-transition: $args;\n -moz-transition: $args;\n -o-transition: $args;\n transition: $args;\n}\n\n@mixin transition-duration($args1, $args2) {\n -webkit-transition-duration: $args1, $args2;\n -moz-transition-duration: $args1, $args2;\n -o-transition-duration: $args1, $args2;\n transition-duration: $args1, $args2;\n}\n\n@mixin transition-delay($args1, $args2) {\n -webkit-transition-delay: $args1, $args2;\n -moz-transition-delay: $args1, $args2;\n -o-transition-delay: $args1, $args2;\n transition-delay: $args1, $args2;\n}\n\n@mixin transition-property($args1, $args2) {\n -webkit-transition-property: $args1, $args2;\n -moz-transition-property: $args1, $args2;\n -o-transition-property: $args1, $args2;\n transition-property: $args1, $args2;\n}\n\n@mixin filter($filter-type, $filter-amount) {\n -webkit-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -moz-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -ms-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -o-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n filter: $filter-type+unquote(\"(#{$filter-amount})\");\n}\n\n@mixin gradient($deg, $args1,$args2){\n background: -webkit-linear-gradient($deg, $args1, $args2);\n background: -moz-linear-gradient($deg, $args1, $args2);\n background: -o-linear-gradient($deg, $args1, $args2);\n background: -ms-linear-gradient($deg, $args1, $args2);\n background: linear-gradient($deg, $args1, $args2);\n}\n\n@mixin transform($transform) {\n -webkit-transform: $transform;\n -moz-transform: $transform;\n -ms-transform: $transform;\n -o-transform: $transform;\n transform: $transform;\n}\n\n@mixin animation($args) {\n -webkit-animation: $args;\n -moz-animation: $args;\n -o-animation: $args;\n animation: $args;\n}\n.sample-text-area {\n background: $white;\n padding: 100px 0 70px 0;\n}\n\n.text-heading {\n margin-bottom: 30px;\n font-size: 24px;\n}\n\nb,\nsup,\nsub,\nu,\ndel {\n color: $primary;\n}\n\n.typography {\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n color: $text-color;\n }\n}\n\n.button-area {\n .border-top-generic {\n padding: 70px 15px;\n border-top: 1px dotted #eee;\n }\n background: $white;\n}\n\n.button-group-area {\n .genric-btn {\n margin-right: 10px;\n margin-top: 10px;\n &:last-child {\n margin-right: 0;\n }\n }\n}\n\n.genric-btn {\n display: inline-block;\n outline: none;\n line-height: 40px;\n padding: 0 30px;\n font-size: .8em;\n text-align: center;\n text-decoration: none;\n font-weight: 500;\n cursor: pointer;\n @include transition();\n &:focus {\n outline: none;\n }\n &.e-large {\n padding: 0 40px;\n line-height: 50px;\n }\n &.large {\n line-height: 45px;\n }\n &.medium {\n line-height: 30px;\n }\n &.small {\n line-height: 25px;\n }\n &.radius {\n border-radius: 3px;\n }\n &.circle {\n border-radius: 20px;\n }\n &.arrow {\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n span {\n margin-left: 10px;\n }\n }\n &.default {\n color: $title-color;\n background: $default;\n border: 1px solid transparent;\n &:hover {\n border: 1px solid $default;\n background: $white;\n }\n }\n &.default-border {\n border: 1px solid $default;\n background: $white;\n &:hover {\n color: $title-color;\n background: $default;\n border: 1px solid transparent;\n }\n }\n &.primary {\n color: $white;\n background: $primary;\n border: 1px solid transparent;\n &:hover {\n color: $primary;\n border: 1px solid $primary;\n background: $white;\n }\n }\n &.primary-border {\n color: $primary;\n border: 1px solid $primary;\n background: $white;\n &:hover {\n color: $white;\n background: $primary;\n border: 1px solid transparent;\n }\n }\n &.success {\n color: $white;\n background: $success;\n border: 1px solid transparent;\n &:hover {\n color: $success;\n border: 1px solid $success;\n background: $white;\n }\n }\n &.success-border {\n color: $success;\n border: 1px solid $success;\n background: $white;\n &:hover {\n color: $white;\n background: $success;\n border: 1px solid transparent;\n }\n }\n &.info {\n color: $white;\n background: $info;\n border: 1px solid transparent;\n &:hover {\n color: $info;\n border: 1px solid $info;\n background: $white;\n }\n }\n &.info-border {\n color: $info;\n border: 1px solid $info;\n background: $white;\n &:hover {\n color: $white;\n background: $info;\n border: 1px solid transparent;\n }\n }\n &.warning {\n color: $white;\n background: $warning;\n border: 1px solid transparent;\n &:hover {\n color: $warning;\n border: 1px solid $warning;\n background: $white;\n }\n }\n &.warning-border {\n color: $warning;\n border: 1px solid $warning;\n background: $white;\n &:hover {\n color: $white;\n background: $warning;\n border: 1px solid transparent;\n }\n }\n &.danger {\n color: $white;\n background: $danger;\n border: 1px solid transparent;\n &:hover {\n color: $danger;\n border: 1px solid $danger;\n background: $white;\n }\n }\n &.danger-border {\n color: $danger;\n border: 1px solid $danger;\n background: $white;\n &:hover {\n color: $white;\n background: $danger;\n border: 1px solid transparent;\n }\n }\n &.link {\n color: $title-color;\n background: $link;\n text-decoration: underline;\n border: 1px solid transparent;\n &:hover {\n color: $title-color;\n border: 1px solid $link;\n background: $white;\n }\n }\n &.link-border {\n color: $title-color;\n border: 1px solid $link;\n background: $white;\n text-decoration: underline;\n &:hover {\n color: $title-color;\n background: $link;\n border: 1px solid transparent;\n }\n }\n &.disable {\n color: $disable;\n background: $link;\n border: 1px solid transparent;\n cursor: not-allowed;\n }\n}\n\n.generic-blockquote {\n padding: 30px 50px 30px 30px;\n background: #f9f9ff;\n border-left: 2px solid $primary;\n}\n\n.progress-table-wrap {\n overflow-x: scroll;\n}\n\n.progress-table {\n background: #f9f9ff;\n padding: 15px 0px 30px 0px;\n min-width: 800px;\n .serial {\n width: 11.83%;\n padding-left: 30px;\n }\n .country {\n width: 28.07%;\n }\n .visit {\n width: 19.74%;\n }\n .percentage {\n width: 40.36%;\n padding-right: 50px;\n }\n .table-head {\n display: flex;\n .serial,\n .country,\n .visit,\n .percentage {\n color: $title-color;\n line-height: 40px;\n text-transform: uppercase;\n font-weight: 500;\n }\n }\n .table-row {\n padding: 15px 0;\n border-top: 1px solid #edf3fd;\n display: flex;\n .serial,\n .country,\n .visit,\n .percentage {\n display: flex;\n align-items: center;\n }\n .country {\n img {\n margin-right: 15px;\n }\n }\n .percentage {\n .progress {\n width: 80%;\n border-radius: 0px;\n background: transparent;\n .progress-bar {\n height: 5px;\n line-height: 5px;\n &.color-1 {\n background-color: #6382e6;\n }\n &.color-2 {\n background-color: #e66686;\n }\n &.color-3 {\n background-color: #f09359;\n }\n &.color-4 {\n background-color: #73fbaf;\n }\n &.color-5 {\n background-color: #73fbaf;\n }\n &.color-6 {\n background-color: #6382e6;\n }\n &.color-7 {\n background-color: #a367e7;\n }\n &.color-8 {\n background-color: #e66686;\n }\n }\n }\n }\n }\n}\n\n.single-gallery-image {\n margin-top: 30px;\n background-repeat: no-repeat !important;\n background-position: center center !important;\n background-size: cover !important;\n height: 200px;\n}\n\n.list-style {\n width: 14px;\n height: 14px;\n}\n\n.unordered-list {\n li {\n position: relative;\n padding-left: 30px;\n line-height: 1.82em !important;\n &:before {\n content: \"\";\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid $primary;\n background: $white;\n top: 4px;\n left: 0;\n border-radius: 50%;\n }\n }\n}\n\n.ordered-list {\n margin-left: 30px;\n li {\n list-style-type: decimal-leading-zero;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.ordered-list-alpha {\n li {\n margin-left: 30px;\n list-style-type: lower-alpha;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.ordered-list-roman {\n li {\n margin-left: 30px;\n list-style-type: lower-roman;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.single-input {\n display: block;\n width: 100%;\n line-height: 40px;\n border: none;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n }\n}\n\n.input-group-icon {\n position: relative;\n .icon {\n position: absolute;\n left: 20px;\n top: 0;\n line-height: 40px;\n i {\n color: #797979;\n }\n z-index: 3;\n }\n .single-input {\n padding-left: 45px;\n }\n}\n\n.single-textarea {\n display: block;\n width: 100%;\n line-height: 40px;\n border: none;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n height: 100px;\n resize: none;\n &:focus {\n outline: none;\n }\n}\n\n.single-input-primary {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid $primary;\n }\n}\n\n.single-input-accent {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid #eb6b55;\n }\n}\n\n.single-input-secondary {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid #f09359;\n }\n}\n\n.default-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n +label {\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $primary;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n &:checked {\n +label {\n left: 19px;\n }\n }\n }\n}\n\n.primary-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n &:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n border-radius: 8.5px;\n cursor: pointer;\n @include transition (all .2s);\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $white;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n }\n &:checked {\n +label {\n &:after {\n left: 19px;\n }\n &:before {\n background: $primary;\n }\n }\n }\n }\n}\n\n.confirm-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n &:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n border-radius: 8.5px;\n @include transition (all .2s);\n cursor: pointer;\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $white;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n }\n &:checked {\n +label {\n &:after {\n left: 19px;\n }\n &:before {\n background: $success;\n }\n }\n }\n }\n}\n\n.primary-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/primary-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.confirm-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/success-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.disabled-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:disabled {\n cursor: not-allowed;\n z-index: 3;\n }\n &:checked {\n +label {\n background: url(../img/elements/disabled-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.primary-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/primary-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.confirm-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/success-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.disabled-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:disabled {\n cursor: not-allowed;\n z-index: 3;\n }\n &:checked {\n +label {\n background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.default-select {\n height: 40px;\n .nice-select {\n border: none;\n border-radius: 0px;\n height: 40px;\n background: #f9f9ff;\n padding-left: 20px;\n padding-right: 40px;\n .list {\n margin-top: 0;\n border: none;\n border-radius: 0px;\n box-shadow: none;\n width: 100%;\n padding: 10px 0 10px 0px;\n .option {\n font-weight: 300;\n @include transition();\n line-height: 28px;\n min-height: 28px;\n font-size: 12px;\n padding-left: 20px;\n &.selected {\n color: $primary;\n background: transparent;\n }\n &:hover {\n color: $primary;\n background: transparent;\n }\n }\n }\n }\n .current {\n margin-right: 50px;\n font-weight: 300;\n }\n .nice-select::after {\n right: 20px;\n }\n}\n\n.form-select {\n height: 40px;\n width: 100%;\n .nice-select {\n border: none;\n border-radius: 0px;\n height: 40px;\n background: #f9f9ff;\n padding-left: 45px;\n padding-right: 40px;\n width: 100%;\n .list {\n margin-top: 0;\n border: none;\n border-radius: 0px;\n box-shadow: none;\n width: 100%;\n padding: 10px 0 10px 0px;\n .option {\n font-weight: 300;\n @include transition();\n line-height: 28px;\n min-height: 28px;\n font-size: 12px;\n padding-left: 45px;\n &.selected {\n color: $primary;\n background: transparent;\n }\n &:hover {\n color: $primary;\n background: transparent;\n }\n }\n }\n }\n .current {\n margin-right: 50px;\n font-weight: 300;\n }\n .nice-select::after {\n right: 20px;\n }\n}\n.mt-10 {\n margin-top: 10px;\n}\n.section-top-border {\n padding: 50px 0;\n border-top: 1px dotted #eee;\n}\n.mb-30 {\n margin-bottom: 30px;\n}\n.mt-30 {\n margin-top: 30px;\n}\n.switch-wrap {\n margin-bottom: 10px;\n}" + ], + "names": [], + "mappings": "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" +} \ No newline at end of file diff --git a/assets/css/themify-icons.css b/assets/css/themify-icons.css new file mode 100755 index 0000000..6e96344 --- /dev/null +++ b/assets/css/themify-icons.css @@ -0,0 +1,1083 @@ +@font-face { + font-family: 'themify'; + src:url('../fonts/themify.eot?-fvbane'); + + + src:url('../fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'), + url('../fonts/themify.woff?-fvbane') format('woff'), + url('../fonts/themify.ttf?-fvbane') format('truetype'), + url('../fonts/themify.svg?-fvbane#themify') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="ti-"], [class*=" ti-"] { + font-family: 'themify'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ti-wand:before { + content: "\e600"; +} +.ti-volume:before { + content: "\e601"; +} +.ti-user:before { + content: "\e602"; +} +.ti-unlock:before { + content: "\e603"; +} +.ti-unlink:before { + content: "\e604"; +} +.ti-trash:before { + content: "\e605"; +} +.ti-thought:before { + content: "\e606"; +} +.ti-target:before { + content: "\e607"; +} +.ti-tag:before { + content: "\e608"; +} +.ti-tablet:before { + content: "\e609"; +} +.ti-star:before { + content: "\e60a"; +} +.ti-spray:before { + content: "\e60b"; +} +.ti-signal:before { + content: "\e60c"; +} +.ti-shopping-cart:before { + content: "\e60d"; +} +.ti-shopping-cart-full:before { + content: "\e60e"; +} +.ti-settings:before { + content: "\e60f"; +} +.ti-search:before { + content: "\e610"; +} +.ti-zoom-in:before { + content: "\e611"; +} +.ti-zoom-out:before { + content: "\e612"; +} +.ti-cut:before { + content: "\e613"; +} +.ti-ruler:before { + content: "\e614"; +} +.ti-ruler-pencil:before { + content: "\e615"; +} +.ti-ruler-alt:before { + content: "\e616"; +} +.ti-bookmark:before { + content: "\e617"; +} +.ti-bookmark-alt:before { + content: "\e618"; +} +.ti-reload:before { + content: "\e619"; +} +.ti-plus:before { + content: "\e61a"; +} +.ti-pin:before { + content: "\e61b"; +} +.ti-pencil:before { + content: "\e61c"; +} +.ti-pencil-alt:before { + content: "\e61d"; +} +.ti-paint-roller:before { + content: "\e61e"; +} +.ti-paint-bucket:before { + content: "\e61f"; +} +.ti-na:before { + content: "\e620"; +} +.ti-mobile:before { + content: "\e621"; +} +.ti-minus:before { + content: "\e622"; +} +.ti-medall:before { + content: "\e623"; +} +.ti-medall-alt:before { + content: "\e624"; +} +.ti-marker:before { + content: "\e625"; +} +.ti-marker-alt:before { + content: "\e626"; +} +.ti-arrow-up:before { + content: "\e627"; +} +.ti-arrow-right:before { + content: "\e628"; +} +.ti-arrow-left:before { + content: "\e629"; +} +.ti-arrow-down:before { + content: "\e62a"; +} +.ti-lock:before { + content: "\e62b"; +} +.ti-location-arrow:before { + content: "\e62c"; +} +.ti-link:before { + content: "\e62d"; +} +.ti-layout:before { + content: "\e62e"; +} +.ti-layers:before { + content: "\e62f"; +} +.ti-layers-alt:before { + content: "\e630"; +} +.ti-key:before { + content: "\e631"; +} +.ti-import:before { + content: "\e632"; +} +.ti-image:before { + content: "\e633"; +} +.ti-heart:before { + content: "\e634"; +} +.ti-heart-broken:before { + content: "\e635"; +} +.ti-hand-stop:before { + content: "\e636"; +} +.ti-hand-open:before { + content: "\e637"; +} +.ti-hand-drag:before { + content: "\e638"; +} +.ti-folder:before { + content: "\e639"; +} +.ti-flag:before { + content: "\e63a"; +} +.ti-flag-alt:before { + content: "\e63b"; +} +.ti-flag-alt-2:before { + content: "\e63c"; +} +.ti-eye:before { + content: "\e63d"; +} +.ti-export:before { + content: "\e63e"; +} +.ti-exchange-vertical:before { + content: "\e63f"; +} +.ti-desktop:before { + content: "\e640"; +} +.ti-cup:before { + content: "\e641"; +} +.ti-crown:before { + content: "\e642"; +} +.ti-comments:before { + content: "\e643"; +} +.ti-comment:before { + content: "\e644"; +} +.ti-comment-alt:before { + content: "\e645"; +} +.ti-close:before { + content: "\e646"; +} +.ti-clip:before { + content: "\e647"; +} +.ti-angle-up:before { + content: "\e648"; +} +.ti-angle-right:before { + content: "\e649"; +} +.ti-angle-left:before { + content: "\e64a"; +} +.ti-angle-down:before { + content: "\e64b"; +} +.ti-check:before { + content: "\e64c"; +} +.ti-check-box:before { + content: "\e64d"; +} +.ti-camera:before { + content: "\e64e"; +} +.ti-announcement:before { + content: "\e64f"; +} +.ti-brush:before { + content: "\e650"; +} +.ti-briefcase:before { + content: "\e651"; +} +.ti-bolt:before { + content: "\e652"; +} +.ti-bolt-alt:before { + content: "\e653"; +} +.ti-blackboard:before { + content: "\e654"; +} +.ti-bag:before { + content: "\e655"; +} +.ti-move:before { + content: "\e656"; +} +.ti-arrows-vertical:before { + content: "\e657"; +} +.ti-arrows-horizontal:before { + content: "\e658"; +} +.ti-fullscreen:before { + content: "\e659"; +} +.ti-arrow-top-right:before { + content: "\e65a"; +} +.ti-arrow-top-left:before { + content: "\e65b"; +} +.ti-arrow-circle-up:before { + content: "\e65c"; +} +.ti-arrow-circle-right:before { + content: "\e65d"; +} +.ti-arrow-circle-left:before { + content: "\e65e"; +} +.ti-arrow-circle-down:before { + content: "\e65f"; +} +.ti-angle-double-up:before { + content: "\e660"; +} +.ti-angle-double-right:before { + content: "\e661"; +} +.ti-angle-double-left:before { + content: "\e662"; +} +.ti-angle-double-down:before { + content: "\e663"; +} +.ti-zip:before { + content: "\e664"; +} +.ti-world:before { + content: "\e665"; +} +.ti-wheelchair:before { + content: "\e666"; +} +.ti-view-list:before { + content: "\e667"; +} +.ti-view-list-alt:before { + content: "\e668"; +} +.ti-view-grid:before { + content: "\e669"; +} +.ti-uppercase:before { + content: "\e66a"; +} +.ti-upload:before { + content: "\e66b"; +} +.ti-underline:before { + content: "\e66c"; +} +.ti-truck:before { + content: "\e66d"; +} +.ti-timer:before { + content: "\e66e"; +} +.ti-ticket:before { + content: "\e66f"; +} +.ti-thumb-up:before { + content: "\e670"; +} +.ti-thumb-down:before { + content: "\e671"; +} +.ti-text:before { + content: "\e672"; +} +.ti-stats-up:before { + content: "\e673"; +} +.ti-stats-down:before { + content: "\e674"; +} +.ti-split-v:before { + content: "\e675"; +} +.ti-split-h:before { + content: "\e676"; +} +.ti-smallcap:before { + content: "\e677"; +} +.ti-shine:before { + content: "\e678"; +} +.ti-shift-right:before { + content: "\e679"; +} +.ti-shift-left:before { + content: "\e67a"; +} +.ti-shield:before { + content: "\e67b"; +} +.ti-notepad:before { + content: "\e67c"; +} +.ti-server:before { + content: "\e67d"; +} +.ti-quote-right:before { + content: "\e67e"; +} +.ti-quote-left:before { + content: "\e67f"; +} +.ti-pulse:before { + content: "\e680"; +} +.ti-printer:before { + content: "\e681"; +} +.ti-power-off:before { + content: "\e682"; +} +.ti-plug:before { + content: "\e683"; +} +.ti-pie-chart:before { + content: "\e684"; +} +.ti-paragraph:before { + content: "\e685"; +} +.ti-panel:before { + content: "\e686"; +} +.ti-package:before { + content: "\e687"; +} +.ti-music:before { + content: "\e688"; +} +.ti-music-alt:before { + content: "\e689"; +} +.ti-mouse:before { + content: "\e68a"; +} +.ti-mouse-alt:before { + content: "\e68b"; +} +.ti-money:before { + content: "\e68c"; +} +.ti-microphone:before { + content: "\e68d"; +} +.ti-menu:before { + content: "\e68e"; +} +.ti-menu-alt:before { + content: "\e68f"; +} +.ti-map:before { + content: "\e690"; +} +.ti-map-alt:before { + content: "\e691"; +} +.ti-loop:before { + content: "\e692"; +} +.ti-location-pin:before { + content: "\e693"; +} +.ti-list:before { + content: "\e694"; +} +.ti-light-bulb:before { + content: "\e695"; +} +.ti-Italic:before { + content: "\e696"; +} +.ti-info:before { + content: "\e697"; +} +.ti-infinite:before { + content: "\e698"; +} +.ti-id-badge:before { + content: "\e699"; +} +.ti-hummer:before { + content: "\e69a"; +} +.ti-home:before { + content: "\e69b"; +} +.ti-help:before { + content: "\e69c"; +} +.ti-headphone:before { + content: "\e69d"; +} +.ti-harddrives:before { + content: "\e69e"; +} +.ti-harddrive:before { + content: "\e69f"; +} +.ti-gift:before { + content: "\e6a0"; +} +.ti-game:before { + content: "\e6a1"; +} +.ti-filter:before { + content: "\e6a2"; +} +.ti-files:before { + content: "\e6a3"; +} +.ti-file:before { + content: "\e6a4"; +} +.ti-eraser:before { + content: "\e6a5"; +} +.ti-envelope:before { + content: "\e6a6"; +} +.ti-download:before { + content: "\e6a7"; +} +.ti-direction:before { + content: "\e6a8"; +} +.ti-direction-alt:before { + content: "\e6a9"; +} +.ti-dashboard:before { + content: "\e6aa"; +} +.ti-control-stop:before { + content: "\e6ab"; +} +.ti-control-shuffle:before { + content: "\e6ac"; +} +.ti-control-play:before { + content: "\e6ad"; +} +.ti-control-pause:before { + content: "\e6ae"; +} +.ti-control-forward:before { + content: "\e6af"; +} +.ti-control-backward:before { + content: "\e6b0"; +} +.ti-cloud:before { + content: "\e6b1"; +} +.ti-cloud-up:before { + content: "\e6b2"; +} +.ti-cloud-down:before { + content: "\e6b3"; +} +.ti-clipboard:before { + content: "\e6b4"; +} +.ti-car:before { + content: "\e6b5"; +} +.ti-calendar:before { + content: "\e6b6"; +} +.ti-book:before { + content: "\e6b7"; +} +.ti-bell:before { + content: "\e6b8"; +} +.ti-basketball:before { + content: "\e6b9"; +} +.ti-bar-chart:before { + content: "\e6ba"; +} +.ti-bar-chart-alt:before { + content: "\e6bb"; +} +.ti-back-right:before { + content: "\e6bc"; +} +.ti-back-left:before { + content: "\e6bd"; +} +.ti-arrows-corner:before { + content: "\e6be"; +} +.ti-archive:before { + content: "\e6bf"; +} +.ti-anchor:before { + content: "\e6c0"; +} +.ti-align-right:before { + content: "\e6c1"; +} +.ti-align-left:before { + content: "\e6c2"; +} +.ti-align-justify:before { + content: "\e6c3"; +} +.ti-align-center:before { + content: "\e6c4"; +} +.ti-alert:before { + content: "\e6c5"; +} +.ti-alarm-clock:before { + content: "\e6c6"; +} +.ti-agenda:before { + content: "\e6c7"; +} +.ti-write:before { + content: "\e6c8"; +} +.ti-window:before { + content: "\e6c9"; +} +.ti-widgetized:before { + content: "\e6ca"; +} +.ti-widget:before { + content: "\e6cb"; +} +.ti-widget-alt:before { + content: "\e6cc"; +} +.ti-wallet:before { + content: "\e6cd"; +} +.ti-video-clapper:before { + content: "\e6ce"; +} +.ti-video-camera:before { + content: "\e6cf"; +} +.ti-vector:before { + content: "\e6d0"; +} +.ti-themify-logo:before { + content: "\e6d1"; +} +.ti-themify-favicon:before { + content: "\e6d2"; +} +.ti-themify-favicon-alt:before { + content: "\e6d3"; +} +.ti-support:before { + content: "\e6d4"; +} +.ti-stamp:before { + content: "\e6d5"; +} +.ti-split-v-alt:before { + content: "\e6d6"; +} +.ti-slice:before { + content: "\e6d7"; +} +.ti-shortcode:before { + content: "\e6d8"; +} +.ti-shift-right-alt:before { + content: "\e6d9"; +} +.ti-shift-left-alt:before { + content: "\e6da"; +} +.ti-ruler-alt-2:before { + content: "\e6db"; +} +.ti-receipt:before { + content: "\e6dc"; +} +.ti-pin2:before { + content: "\e6dd"; +} +.ti-pin-alt:before { + content: "\e6de"; +} +.ti-pencil-alt2:before { + content: "\e6df"; +} +.ti-palette:before { + content: "\e6e0"; +} +.ti-more:before { + content: "\e6e1"; +} +.ti-more-alt:before { + content: "\e6e2"; +} +.ti-microphone-alt:before { + content: "\e6e3"; +} +.ti-magnet:before { + content: "\e6e4"; +} +.ti-line-double:before { + content: "\e6e5"; +} +.ti-line-dotted:before { + content: "\e6e6"; +} +.ti-line-dashed:before { + content: "\e6e7"; +} +.ti-layout-width-full:before { + content: "\e6e8"; +} +.ti-layout-width-default:before { + content: "\e6e9"; +} +.ti-layout-width-default-alt:before { + content: "\e6ea"; +} +.ti-layout-tab:before { + content: "\e6eb"; +} +.ti-layout-tab-window:before { + content: "\e6ec"; +} +.ti-layout-tab-v:before { + content: "\e6ed"; +} +.ti-layout-tab-min:before { + content: "\e6ee"; +} +.ti-layout-slider:before { + content: "\e6ef"; +} +.ti-layout-slider-alt:before { + content: "\e6f0"; +} +.ti-layout-sidebar-right:before { + content: "\e6f1"; +} +.ti-layout-sidebar-none:before { + content: "\e6f2"; +} +.ti-layout-sidebar-left:before { + content: "\e6f3"; +} +.ti-layout-placeholder:before { + content: "\e6f4"; +} +.ti-layout-menu:before { + content: "\e6f5"; +} +.ti-layout-menu-v:before { + content: "\e6f6"; +} +.ti-layout-menu-separated:before { + content: "\e6f7"; +} +.ti-layout-menu-full:before { + content: "\e6f8"; +} +.ti-layout-media-right-alt:before { + content: "\e6f9"; +} +.ti-layout-media-right:before { + content: "\e6fa"; +} +.ti-layout-media-overlay:before { + content: "\e6fb"; +} +.ti-layout-media-overlay-alt:before { + content: "\e6fc"; +} +.ti-layout-media-overlay-alt-2:before { + content: "\e6fd"; +} +.ti-layout-media-left-alt:before { + content: "\e6fe"; +} +.ti-layout-media-left:before { + content: "\e6ff"; +} +.ti-layout-media-center-alt:before { + content: "\e700"; +} +.ti-layout-media-center:before { + content: "\e701"; +} +.ti-layout-list-thumb:before { + content: "\e702"; +} +.ti-layout-list-thumb-alt:before { + content: "\e703"; +} +.ti-layout-list-post:before { + content: "\e704"; +} +.ti-layout-list-large-image:before { + content: "\e705"; +} +.ti-layout-line-solid:before { + content: "\e706"; +} +.ti-layout-grid4:before { + content: "\e707"; +} +.ti-layout-grid3:before { + content: "\e708"; +} +.ti-layout-grid2:before { + content: "\e709"; +} +.ti-layout-grid2-thumb:before { + content: "\e70a"; +} +.ti-layout-cta-right:before { + content: "\e70b"; +} +.ti-layout-cta-left:before { + content: "\e70c"; +} +.ti-layout-cta-center:before { + content: "\e70d"; +} +.ti-layout-cta-btn-right:before { + content: "\e70e"; +} +.ti-layout-cta-btn-left:before { + content: "\e70f"; +} +.ti-layout-column4:before { + content: "\e710"; +} +.ti-layout-column3:before { + content: "\e711"; +} +.ti-layout-column2:before { + content: "\e712"; +} +.ti-layout-accordion-separated:before { + content: "\e713"; +} +.ti-layout-accordion-merged:before { + content: "\e714"; +} +.ti-layout-accordion-list:before { + content: "\e715"; +} +.ti-ink-pen:before { + content: "\e716"; +} +.ti-info-alt:before { + content: "\e717"; +} +.ti-help-alt:before { + content: "\e718"; +} +.ti-headphone-alt:before { + content: "\e719"; +} +.ti-hand-point-up:before { + content: "\e71a"; +} +.ti-hand-point-right:before { + content: "\e71b"; +} +.ti-hand-point-left:before { + content: "\e71c"; +} +.ti-hand-point-down:before { + content: "\e71d"; +} +.ti-gallery:before { + content: "\e71e"; +} +.ti-face-smile:before { + content: "\e71f"; +} +.ti-face-sad:before { + content: "\e720"; +} +.ti-credit-card:before { + content: "\e721"; +} +.ti-control-skip-forward:before { + content: "\e722"; +} +.ti-control-skip-backward:before { + content: "\e723"; +} +.ti-control-record:before { + content: "\e724"; +} +.ti-control-eject:before { + content: "\e725"; +} +.ti-comments-smiley:before { + content: "\e726"; +} +.ti-brush-alt:before { + content: "\e727"; +} +.ti-youtube:before { + content: "\e728"; +} +.ti-vimeo:before { + content: "\e729"; +} +.ti-twitter:before { + content: "\e72a"; +} +.ti-time:before { + content: "\e72b"; +} +.ti-tumblr:before { + content: "\e72c"; +} +.ti-skype:before { + content: "\e72d"; +} +.ti-share:before { + content: "\e72e"; +} +.ti-share-alt:before { + content: "\e72f"; +} +.ti-rocket:before { + content: "\e730"; +} +.ti-pinterest:before { + content: "\e731"; +} +.ti-new-window:before { + content: "\e732"; +} +.ti-microsoft:before { + content: "\e733"; +} +.ti-list-ol:before { + content: "\e734"; +} +.ti-linkedin:before { + content: "\e735"; +} +.ti-layout-sidebar-2:before { + content: "\e736"; +} +.ti-layout-grid4-alt:before { + content: "\e737"; +} +.ti-layout-grid3-alt:before { + content: "\e738"; +} +.ti-layout-grid2-alt:before { + content: "\e739"; +} +.ti-layout-column4-alt:before { + content: "\e73a"; +} +.ti-layout-column3-alt:before { + content: "\e73b"; +} +.ti-layout-column2-alt:before { + content: "\e73c"; +} +.ti-instagram:before { + content: "\e73d"; +} +.ti-google:before { + content: "\e73e"; +} +.ti-github:before { + content: "\e73f"; +} +.ti-flickr:before { + content: "\e740"; +} +.ti-facebook:before { + content: "\e741"; +} +.ti-dropbox:before { + content: "\e742"; +} +.ti-dribbble:before { + content: "\e743"; +} +.ti-apple:before { + content: "\e744"; +} +.ti-android:before { + content: "\e745"; +} +.ti-save:before { + content: "\e746"; +} +.ti-save-alt:before { + content: "\e747"; +} +.ti-yahoo:before { + content: "\e748"; +} +.ti-wordpress:before { + content: "\e749"; +} +.ti-vimeo-alt:before { + content: "\e74a"; +} +.ti-twitter-alt:before { + content: "\e74b"; +} +.ti-tumblr-alt:before { + content: "\e74c"; +} +.ti-trello:before { + content: "\e74d"; +} +.ti-stack-overflow:before { + content: "\e74e"; +} +.ti-soundcloud:before { + content: "\e74f"; +} +.ti-sharethis:before { + content: "\e750"; +} +.ti-sharethis-alt:before { + content: "\e751"; +} +.ti-reddit:before { + content: "\e752"; +} +.ti-pinterest-alt:before { + content: "\e753"; +} +.ti-microsoft-alt:before { + content: "\e754"; +} +.ti-linux:before { + content: "\e755"; +} +.ti-jsfiddle:before { + content: "\e756"; +} +.ti-joomla:before { + content: "\e757"; +} +.ti-html5:before { + content: "\e758"; +} +.ti-flickr-alt:before { + content: "\e759"; +} +.ti-email:before { + content: "\e75a"; +} +.ti-drupal:before { + content: "\e75b"; +} +.ti-dropbox-alt:before { + content: "\e75c"; +} +.ti-css3:before { + content: "\e75d"; +} +.ti-rss:before { + content: "\e75e"; +} +.ti-rss-alt:before { + content: "\e75f"; +} diff --git a/assets/fonts/Flaticon.eot b/assets/fonts/Flaticon.eot new file mode 100755 index 0000000..9c2979c Binary files /dev/null and b/assets/fonts/Flaticon.eot differ diff --git a/assets/fonts/Flaticon.svg b/assets/fonts/Flaticon.svg new file mode 100755 index 0000000..77d28d7 --- /dev/null +++ b/assets/fonts/Flaticon.svg @@ -0,0 +1,81 @@ + + + + diff --git a/assets/fonts/Flaticon.ttf b/assets/fonts/Flaticon.ttf new file mode 100755 index 0000000..4addd28 Binary files /dev/null and b/assets/fonts/Flaticon.ttf differ diff --git a/assets/fonts/Flaticon.woff b/assets/fonts/Flaticon.woff new file mode 100755 index 0000000..46f366b Binary files /dev/null and b/assets/fonts/Flaticon.woff differ diff --git a/assets/fonts/Flaticon.woff2 b/assets/fonts/Flaticon.woff2 new file mode 100755 index 0000000..1ebc351 Binary files /dev/null and b/assets/fonts/Flaticon.woff2 differ diff --git a/assets/fonts/_flaticon.scss b/assets/fonts/_flaticon.scss new file mode 100755 index 0000000..c1145cf --- /dev/null +++ b/assets/fonts/_flaticon.scss @@ -0,0 +1,46 @@ + /* + Flaticon icon font: Flaticon + Creation date: 30/03/2020 06:48 + */ + + @font-face { + font-family: "Flaticon"; + src: url("./Flaticon.eot"); + src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), + url("./Flaticon.woff2") format("woff2"), + url("./Flaticon.woff") format("woff"), + url("./Flaticon.ttf") format("truetype"), + url("./Flaticon.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("./Flaticon.svg#Flaticon") format("svg"); + } +} + + .fi:before{ + display: inline-block; + font-family: "Flaticon"; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + } + + .flaticon-pen:before { content: "\f100"; } +.flaticon-speaker:before { content: "\f101"; } +.flaticon-portfolio:before { content: "\f102"; } + + $font-Flaticon-pen: "\f100"; + $font-Flaticon-speaker: "\f101"; + $font-Flaticon-portfolio: "\f102"; diff --git a/assets/fonts/fa-brands-400.eot b/assets/fonts/fa-brands-400.eot new file mode 100755 index 0000000..847b0f4 Binary files /dev/null and b/assets/fonts/fa-brands-400.eot differ diff --git a/assets/fonts/fa-brands-400.svg b/assets/fonts/fa-brands-400.svg new file mode 100755 index 0000000..82e219f --- /dev/null +++ b/assets/fonts/fa-brands-400.svg @@ -0,0 +1,344 @@ + + + + diff --git a/assets/fonts/fa-brands-400.ttf b/assets/fonts/fa-brands-400.ttf new file mode 100755 index 0000000..12719a1 Binary files /dev/null and b/assets/fonts/fa-brands-400.ttf differ diff --git a/assets/fonts/fa-brands-400.woff b/assets/fonts/fa-brands-400.woff new file mode 100755 index 0000000..721dbcc Binary files /dev/null and b/assets/fonts/fa-brands-400.woff differ diff --git a/assets/fonts/fa-brands-400.woff2 b/assets/fonts/fa-brands-400.woff2 new file mode 100755 index 0000000..8ae415c Binary files /dev/null and b/assets/fonts/fa-brands-400.woff2 differ diff --git a/assets/fonts/fa-regular-400.eot b/assets/fonts/fa-regular-400.eot new file mode 100755 index 0000000..f35e3cf Binary files /dev/null and b/assets/fonts/fa-regular-400.eot differ diff --git a/assets/fonts/fa-regular-400.svg b/assets/fonts/fa-regular-400.svg new file mode 100755 index 0000000..d9e42e5 --- /dev/null +++ b/assets/fonts/fa-regular-400.svg @@ -0,0 +1,130 @@ + + + + diff --git a/assets/fonts/fa-regular-400.ttf b/assets/fonts/fa-regular-400.ttf new file mode 100755 index 0000000..8d66ab0 Binary files /dev/null and b/assets/fonts/fa-regular-400.ttf differ diff --git a/assets/fonts/fa-regular-400.woff b/assets/fonts/fa-regular-400.woff new file mode 100755 index 0000000..8449c2a Binary files /dev/null and b/assets/fonts/fa-regular-400.woff differ diff --git a/assets/fonts/fa-regular-400.woff2 b/assets/fonts/fa-regular-400.woff2 new file mode 100755 index 0000000..2fd6764 Binary files /dev/null and b/assets/fonts/fa-regular-400.woff2 differ diff --git a/assets/fonts/fa-solid-900.eot b/assets/fonts/fa-solid-900.eot new file mode 100755 index 0000000..98d4dd5 Binary files /dev/null and b/assets/fonts/fa-solid-900.eot differ diff --git a/assets/fonts/fa-solid-900.svg b/assets/fonts/fa-solid-900.svg new file mode 100755 index 0000000..a7246b4 --- /dev/null +++ b/assets/fonts/fa-solid-900.svg @@ -0,0 +1,1467 @@ + + + + diff --git a/assets/fonts/fa-solid-900.ttf b/assets/fonts/fa-solid-900.ttf new file mode 100755 index 0000000..f786c42 Binary files /dev/null and b/assets/fonts/fa-solid-900.ttf differ diff --git a/assets/fonts/fa-solid-900.woff b/assets/fonts/fa-solid-900.woff new file mode 100755 index 0000000..8cef46c Binary files /dev/null and b/assets/fonts/fa-solid-900.woff differ diff --git a/assets/fonts/fa-solid-900.woff2 b/assets/fonts/fa-solid-900.woff2 new file mode 100755 index 0000000..2cad2c7 Binary files /dev/null and b/assets/fonts/fa-solid-900.woff2 differ diff --git a/assets/fonts/flaticon.css b/assets/fonts/flaticon.css new file mode 100755 index 0000000..c6bed5b --- /dev/null +++ b/assets/fonts/flaticon.css @@ -0,0 +1,35 @@ + /* + Flaticon icon font: Flaticon + Creation date: 30/03/2020 06:48 + */ + +@font-face { + font-family: "Flaticon"; + src: url("./Flaticon.eot"); + src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), + url("./Flaticon.woff2") format("woff2"), + url("./Flaticon.woff") format("woff"), + url("./Flaticon.ttf") format("truetype"), + url("./Flaticon.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("./Flaticon.svg#Flaticon") format("svg"); + } +} + +[class^="flaticon-"]:before, [class*=" flaticon-"]:before, +[class^="flaticon-"]:after, [class*=" flaticon-"]:after { + font-family: Flaticon; + font-size: 20px; +font-style: normal; +margin-left: 20px; +} + +.flaticon-pen:before { content: "\f100"; } +.flaticon-speaker:before { content: "\f101"; } +.flaticon-portfolio:before { content: "\f102"; } \ No newline at end of file diff --git a/assets/fonts/flaticon.html b/assets/fonts/flaticon.html new file mode 100755 index 0000000..0a33944 --- /dev/null +++ b/assets/fonts/flaticon.html @@ -0,0 +1,619 @@ + + + + + + +
+Instructions
+ +
+ <head>
+
...
+
<link rel="stylesheet" type="text/css"
+ href="your_website_domain/css_root/flaticon.css">
+
...
+
</head>
+
+
+ 3Use the icon class on "display:
+ inline"
elements:
+
+ Use example: <i class="flaticon-airplane49"></i>
or
+ <span class="flaticon-airplane49"></span>
+
+ + <i class="flaticon-pen"></i> +
++ + <i class="flaticon-speaker"></i> +
++ + <i class="flaticon-portfolio"></i> +
+