initial
14759
assets/css/main.css
Normal file
418
assets/css/style.css
Normal file
@@ -0,0 +1,418 @@
|
||||
|
||||
[data-bs-theme=light] .banner {
|
||||
background: linear-gradient(180deg, #fff5f5, transparent);
|
||||
}
|
||||
[data-bs-theme=light] .header {
|
||||
background: linear-gradient(180deg, transparent, #fff5f5);
|
||||
}
|
||||
|
||||
.h-400{
|
||||
height: 400px;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* timeline */
|
||||
|
||||
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: linear-gradient(to bottom, #e14242, #ce3131);
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 15px 20px;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
||||
border-left: 3px solid #BE2727;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.timeline-item:hover {
|
||||
transform: translateX(3px);
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.timeline-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -23px;
|
||||
top: 20px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: #BE2727;
|
||||
border: 3px solid white;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.year-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.year {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
color: #2d3748;
|
||||
background: linear-gradient(45deg, #e14242, #ce3131);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
color: #4a5568;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.highlights {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.highlights li {
|
||||
position: relative;
|
||||
padding-left: 15px;
|
||||
margin-bottom: 6px;
|
||||
color: #718096;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.highlights li::before {
|
||||
content: '•';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #BE2727;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.highlight-text {
|
||||
font-weight: 600;
|
||||
color: #2d3748;
|
||||
}
|
||||
|
||||
.description {
|
||||
color: #718096;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.4;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
||||
|
||||
.timeline {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
.timeline::before {
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
.timeline-item::before {
|
||||
left: -18px;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
padding: 12px 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.timeline-header h1 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.year {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.highlights li {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Compact animation */
|
||||
@keyframes slideIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
animation: slideIn 0.4s ease forwards;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
|
||||
.timeline-item:nth-child(2) { animation-delay: 0.15s; }
|
||||
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
|
||||
.timeline-item:nth-child(4) { animation-delay: 0.25s; }
|
||||
.timeline-item:nth-child(5) { animation-delay: 0.3s; }
|
||||
.timeline-item:nth-child(6) { animation-delay: 0.35s; }
|
||||
.timeline-item:nth-child(7) { animation-delay: 0.4s; }
|
||||
|
||||
|
||||
.team .grid-sizer {
|
||||
width: 25%;
|
||||
}
|
||||
.team .filter-item {
|
||||
width: 25%; /* match .grid-sizer */
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.team .grid-sizer,
|
||||
.team .filter-item {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.team .grid-sizer,
|
||||
.team .filter-item {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.filter-item{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
@media (min-width:992px) and (max-width:1200px) {
|
||||
.service-process{
|
||||
height: 730px;
|
||||
}
|
||||
.service-process img{
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* service */
|
||||
.service.howitwork-2 .navigation-arrow-1 {
|
||||
left: 23%;
|
||||
}
|
||||
.service.howitwork-2 .navigation-arrow-2 {
|
||||
right: 45%;
|
||||
bottom: 45%;
|
||||
}
|
||||
.service.howitwork-2 .navigation-arrow-3 {
|
||||
right: 22%;
|
||||
bottom: 40%;
|
||||
}
|
||||
.service.howitwork-2 .navigation-arrow-1 img, .service.howitwork-2 .navigation-arrow-2 img, .service.howitwork-2 .navigation-arrow-3 img {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
/* panch tatwa */
|
||||
.flip-card {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
perspective: 1000px;
|
||||
|
||||
}
|
||||
|
||||
@media (min-width:540px) {
|
||||
.flip-card {
|
||||
width: 255px;
|
||||
height: 400px;
|
||||
perspective: 1000px;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@media (min-width:992px) {
|
||||
.flip-card {
|
||||
width: 235px;
|
||||
height: 400px;
|
||||
perspective: 1000px;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@media (min-width:1400px) {
|
||||
.flip-card {
|
||||
width: 280px;
|
||||
height: 400px;
|
||||
perspective: 1000px;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.flip-card-inner {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transition: transform 0.8s;
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
|
||||
.flip-card:hover .flip-card-inner {
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
.flip-card-front,
|
||||
.flip-card-back {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
backface-visibility: hidden;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.flip-card-front img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.flip-card-back {
|
||||
background-color: #222;
|
||||
color: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transform: rotateY(180deg);
|
||||
padding: 20px;
|
||||
}
|
||||
.flip-card-back h5{
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
.flip-card-back p{
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
/* clients */
|
||||
.clients-page{
|
||||
width: 100%;
|
||||
}
|
||||
.clients-img{
|
||||
height: 250px;
|
||||
width: 100%;
|
||||
padding: 20px 20px;
|
||||
/* border: 1px solid black; */
|
||||
box-shadow: 0 5px 10px gray;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.clients-img img{
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
|
||||
|
||||
}
|
||||
/* career */
|
||||
.career-img{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border: 1px solid var(--color-brand);
|
||||
border-radius: 100%;
|
||||
|
||||
|
||||
}
|
||||
.career-img img{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
padding: 5px;
|
||||
|
||||
|
||||
}
|
||||
.career-box{
|
||||
background-color: #F3F4F6;
|
||||
box-shadow: 0 5px 10px var(--color-sec);
|
||||
border-radius: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.career h3{
|
||||
font-size: 20px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.career p{
|
||||
font-size: 12px;
|
||||
}
|
||||
.career h4{
|
||||
font-size: 15px;
|
||||
font-weight: normal;
|
||||
|
||||
}
|
||||
.career .content h6, .career .content li{
|
||||
font-size: 13px;
|
||||
}
|
||||
.career ul{
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
.career ul li{
|
||||
list-style-type: none;
|
||||
}
|
||||
.career-view{
|
||||
background-color: gray;
|
||||
border-radius: 10px;
|
||||
color: white;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.career-view:hover{
|
||||
color: white;
|
||||
box-shadow: 0 5px 10px gray;
|
||||
}
|
||||
.job-intro{
|
||||
border-bottom: 1px solid gray;
|
||||
}
|
||||
.job-intro .text-title{
|
||||
color: #BE2727;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.job-intro h4{
|
||||
font-size: 12px;
|
||||
}
|
||||
.line-through{
|
||||
width: 100%;
|
||||
border-bottom: 1px solid var(--color-sec);
|
||||
}
|
||||
|
||||
/* footer */
|
||||
.footer-logo img{
|
||||
width: 125px;
|
||||
}
|
1
assets/css/vendors/aos.css
vendored
Normal file
5
assets/css/vendors/bootstrap.min.css
vendored
Normal file
35
assets/css/vendors/carouselTicker.css
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* CSS style for carouselTicker
|
||||
**/
|
||||
.carouselTicker__list {
|
||||
margin: 10px 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.carouselTicker__item {
|
||||
margin: 0 32px;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
/**
|
||||
* CSS style for vertical direction
|
||||
**/
|
||||
.carouselTicker_vertical .carouselTicker__list {
|
||||
margin: 0;
|
||||
}
|
||||
.carouselTicker_vertical .carouselTicker__item {
|
||||
margin: 0 0 5px 0;
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
}
|
||||
#carouselTicker .carouselTicker__item,
|
||||
#carouselTicker-destructor-example .carouselTicker__item,
|
||||
#carouselTicker-buttons-controls-example .carouselTicker__item {
|
||||
width: auto;
|
||||
height: auto;
|
||||
line-height: normal;
|
||||
}
|
||||
.carouselTicker__item img {
|
||||
vertical-align: top;
|
||||
}
|
351
assets/css/vendors/magnific-popup.css
vendored
Normal file
@@ -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; } }
|
89
assets/css/vendors/odometer.css
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
position: relative;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
position: relative;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
visibility: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
|
||||
text-align: left;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
|
||||
display: block;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
|
||||
display: block;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
|
||||
display: block;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
|
||||
position: absolute;
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
|
||||
-webkit-transition: -webkit-transform 2s;
|
||||
-moz-transition: -moz-transform 2s;
|
||||
-ms-transition: -ms-transform 2s;
|
||||
-o-transition: -o-transform 2s;
|
||||
transition: transform 2s;
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
|
||||
-webkit-transform: translateY(-100%);
|
||||
-moz-transform: translateY(-100%);
|
||||
-ms-transform: translateY(-100%);
|
||||
-o-transform: translateY(-100%);
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
|
||||
-webkit-transform: translateY(-100%);
|
||||
-moz-transform: translateY(-100%);
|
||||
-ms-transform: translateY(-100%);
|
||||
-o-transform: translateY(-100%);
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
|
||||
-webkit-transition: -webkit-transform 2s;
|
||||
-moz-transition: -moz-transform 2s;
|
||||
-ms-transition: -ms-transform 2s;
|
||||
-o-transition: -o-transform 2s;
|
||||
transition: transform 2s;
|
||||
-webkit-transform: translateY(0);
|
||||
-moz-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
|
||||
text-align: center;
|
||||
}
|
||||
.odometer-formatting-mark {
|
||||
display: none;
|
||||
}
|
13
assets/css/vendors/swiper-bundle.min.css
vendored
Normal file
5
assets/fonts/bootstrap-icons/bootstrap-icons.min.css
vendored
Normal file
BIN
assets/fonts/bootstrap-icons/fonts/bootstrap-iconsafdf.woff
Normal file
BIN
assets/fonts/bootstrap-icons/fonts/bootstrap-iconsafdf.woff2
Normal file
1
assets/fonts/boxicons/boxicons.min.css
vendored
Normal file
3
assets/fonts/fonts/boxicons-2.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html><html lang=en><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#000><title>404: NOT_FOUND</title><style>html{font-size:62.5%;box-sizing:border-box;height:-webkit-fill-available}*,::after,::before{box-sizing:inherit}body{font-family:sf pro text,sf pro icons,helvetica neue,helvetica,arial,sans-serif;font-size:1.6rem;line-height:1.65;word-break:break-word;font-kerning:auto;font-variant:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;hyphens:auto;height:100vh;height:-webkit-fill-available;max-height:100vh;max-height:-webkit-fill-available;margin:0}::selection{background:#79ffe1}::-moz-selection{background:#79ffe1}a{cursor:pointer;color:#0070f3;text-decoration:none;transition:all .2s ease;border-bottom:1px solid #0000}a:hover{border-bottom:1px solid #0070f3}ul{padding:0;margin-left:1.5em;list-style-type:none}li{margin-bottom:10px}ul li:before{content:'\02013'}li:before{display:inline-block;color:#ccc;position:absolute;margin-left:-18px;transition:color .2s ease}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.92em}code:after,code:before{content:'`'}.container{display:flex;justify-content:center;flex-direction:column;min-height:100%}main{max-width:80rem;padding:4rem 6rem;margin:auto}ul{margin-bottom:32px}.error-title{font-size:2rem;padding-left:22px;line-height:1.5;margin-bottom:24px}.error-title-guilty{border-left:2px solid #ed367f}.error-title-innocent{border-left:2px solid #59b89c}@media(max-width:500px){.owner-error{display:none}}main p{color:#333}.devinfo-container{border:1px solid #ddd;border-radius:4px;padding:2rem;display:flex;flex-direction:column;margin-bottom:32px}.error-code{margin:0;font-size:1.6rem;color:#000;margin-bottom:1.6rem}.devinfo-line{color:#333}.devinfo-line code,code,li{color:#000}.devinfo-line:not(:last-child){margin-bottom:8px}.docs-link,.contact-link{font-weight:500}header,footer,footer a{display:flex;justify-content:center;align-items:center}header,footer{min-height:100px;height:100px}header{border-bottom:1px solid #eaeaea}header h1{font-size:1.8rem;margin:0;font-weight:500}header p{font-size:1.3rem;margin:0;font-weight:500}.header-item{display:flex;padding:0 2rem;margin:2rem 0;text-decoration:line-through;color:#999}.header-item.active{color:#ff0080;text-decoration:none}.header-item.first{border-right:1px solid #eaeaea}.header-item-content{display:flex;flex-direction:column}.header-item-icon{margin-right:1rem;margin-top:.6rem}footer{border-top:1px solid #eaeaea}footer a{color:#000}footer a:hover{border-bottom-color:#0000}footer svg{margin-left:.8rem}.note{padding:8pt 16pt;border-radius:5px;border:1px solid #0070f3;font-size:14px;line-height:1.8;color:#0070f3}@media(max-width:500px){.devinfo-container .devinfo-line code{margin-top:.4rem}.devinfo-container .devinfo-line:not(:last-child){margin-bottom:1.6rem}.devinfo-container{margin-bottom:0}header{flex-direction:column;height:auto;min-height:auto;align-items:flex-start}.header-item.first{border-right:none;margin-bottom:0}main{padding:1rem 2rem}body{font-size:1.4rem;line-height:1.55}footer{display:none}.note{margin-top:16px}}</style><div class=container><main><p class=devinfo-container><span class=error-code><strong>404</strong>: NOT_FOUND</span>
|
||||
<span class=devinfo-line>Code: <code>NOT_FOUND</code></span>
|
||||
<span class=devinfo-line>ID: <code>bom1::qq62n-1754220714021-82a4a3bc9557</code></p><a href=https://vercel.com/docs/errors/platform-error-codes#not_found class=owner-error><div class=note>Read our documentation to learn more about this error.</div></a></main></div>
|
3
assets/fonts/fonts/boxicons-3.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html><html lang=en><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#000><title>404: NOT_FOUND</title><style>html{font-size:62.5%;box-sizing:border-box;height:-webkit-fill-available}*,::after,::before{box-sizing:inherit}body{font-family:sf pro text,sf pro icons,helvetica neue,helvetica,arial,sans-serif;font-size:1.6rem;line-height:1.65;word-break:break-word;font-kerning:auto;font-variant:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;hyphens:auto;height:100vh;height:-webkit-fill-available;max-height:100vh;max-height:-webkit-fill-available;margin:0}::selection{background:#79ffe1}::-moz-selection{background:#79ffe1}a{cursor:pointer;color:#0070f3;text-decoration:none;transition:all .2s ease;border-bottom:1px solid #0000}a:hover{border-bottom:1px solid #0070f3}ul{padding:0;margin-left:1.5em;list-style-type:none}li{margin-bottom:10px}ul li:before{content:'\02013'}li:before{display:inline-block;color:#ccc;position:absolute;margin-left:-18px;transition:color .2s ease}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.92em}code:after,code:before{content:'`'}.container{display:flex;justify-content:center;flex-direction:column;min-height:100%}main{max-width:80rem;padding:4rem 6rem;margin:auto}ul{margin-bottom:32px}.error-title{font-size:2rem;padding-left:22px;line-height:1.5;margin-bottom:24px}.error-title-guilty{border-left:2px solid #ed367f}.error-title-innocent{border-left:2px solid #59b89c}@media(max-width:500px){.owner-error{display:none}}main p{color:#333}.devinfo-container{border:1px solid #ddd;border-radius:4px;padding:2rem;display:flex;flex-direction:column;margin-bottom:32px}.error-code{margin:0;font-size:1.6rem;color:#000;margin-bottom:1.6rem}.devinfo-line{color:#333}.devinfo-line code,code,li{color:#000}.devinfo-line:not(:last-child){margin-bottom:8px}.docs-link,.contact-link{font-weight:500}header,footer,footer a{display:flex;justify-content:center;align-items:center}header,footer{min-height:100px;height:100px}header{border-bottom:1px solid #eaeaea}header h1{font-size:1.8rem;margin:0;font-weight:500}header p{font-size:1.3rem;margin:0;font-weight:500}.header-item{display:flex;padding:0 2rem;margin:2rem 0;text-decoration:line-through;color:#999}.header-item.active{color:#ff0080;text-decoration:none}.header-item.first{border-right:1px solid #eaeaea}.header-item-content{display:flex;flex-direction:column}.header-item-icon{margin-right:1rem;margin-top:.6rem}footer{border-top:1px solid #eaeaea}footer a{color:#000}footer a:hover{border-bottom-color:#0000}footer svg{margin-left:.8rem}.note{padding:8pt 16pt;border-radius:5px;border:1px solid #0070f3;font-size:14px;line-height:1.8;color:#0070f3}@media(max-width:500px){.devinfo-container .devinfo-line code{margin-top:.4rem}.devinfo-container .devinfo-line:not(:last-child){margin-bottom:1.6rem}.devinfo-container{margin-bottom:0}header{flex-direction:column;height:auto;min-height:auto;align-items:flex-start}.header-item.first{border-right:none;margin-bottom:0}main{padding:1rem 2rem}body{font-size:1.4rem;line-height:1.55}footer{display:none}.note{margin-top:16px}}</style><div class=container><main><p class=devinfo-container><span class=error-code><strong>404</strong>: NOT_FOUND</span>
|
||||
<span class=devinfo-line>Code: <code>NOT_FOUND</code></span>
|
||||
<span class=devinfo-line>ID: <code>bom1::75zpq-1754220714506-ae6dbd1952a7</code></p><a href=https://vercel.com/docs/errors/platform-error-codes#not_found class=owner-error><div class=note>Read our documentation to learn more about this error.</div></a></main></div>
|
3
assets/fonts/fonts/boxicons-4.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html><html lang=en><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#000><title>404: NOT_FOUND</title><style>html{font-size:62.5%;box-sizing:border-box;height:-webkit-fill-available}*,::after,::before{box-sizing:inherit}body{font-family:sf pro text,sf pro icons,helvetica neue,helvetica,arial,sans-serif;font-size:1.6rem;line-height:1.65;word-break:break-word;font-kerning:auto;font-variant:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;hyphens:auto;height:100vh;height:-webkit-fill-available;max-height:100vh;max-height:-webkit-fill-available;margin:0}::selection{background:#79ffe1}::-moz-selection{background:#79ffe1}a{cursor:pointer;color:#0070f3;text-decoration:none;transition:all .2s ease;border-bottom:1px solid #0000}a:hover{border-bottom:1px solid #0070f3}ul{padding:0;margin-left:1.5em;list-style-type:none}li{margin-bottom:10px}ul li:before{content:'\02013'}li:before{display:inline-block;color:#ccc;position:absolute;margin-left:-18px;transition:color .2s ease}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.92em}code:after,code:before{content:'`'}.container{display:flex;justify-content:center;flex-direction:column;min-height:100%}main{max-width:80rem;padding:4rem 6rem;margin:auto}ul{margin-bottom:32px}.error-title{font-size:2rem;padding-left:22px;line-height:1.5;margin-bottom:24px}.error-title-guilty{border-left:2px solid #ed367f}.error-title-innocent{border-left:2px solid #59b89c}@media(max-width:500px){.owner-error{display:none}}main p{color:#333}.devinfo-container{border:1px solid #ddd;border-radius:4px;padding:2rem;display:flex;flex-direction:column;margin-bottom:32px}.error-code{margin:0;font-size:1.6rem;color:#000;margin-bottom:1.6rem}.devinfo-line{color:#333}.devinfo-line code,code,li{color:#000}.devinfo-line:not(:last-child){margin-bottom:8px}.docs-link,.contact-link{font-weight:500}header,footer,footer a{display:flex;justify-content:center;align-items:center}header,footer{min-height:100px;height:100px}header{border-bottom:1px solid #eaeaea}header h1{font-size:1.8rem;margin:0;font-weight:500}header p{font-size:1.3rem;margin:0;font-weight:500}.header-item{display:flex;padding:0 2rem;margin:2rem 0;text-decoration:line-through;color:#999}.header-item.active{color:#ff0080;text-decoration:none}.header-item.first{border-right:1px solid #eaeaea}.header-item-content{display:flex;flex-direction:column}.header-item-icon{margin-right:1rem;margin-top:.6rem}footer{border-top:1px solid #eaeaea}footer a{color:#000}footer a:hover{border-bottom-color:#0000}footer svg{margin-left:.8rem}.note{padding:8pt 16pt;border-radius:5px;border:1px solid #0070f3;font-size:14px;line-height:1.8;color:#0070f3}@media(max-width:500px){.devinfo-container .devinfo-line code{margin-top:.4rem}.devinfo-container .devinfo-line:not(:last-child){margin-bottom:1.6rem}.devinfo-container{margin-bottom:0}header{flex-direction:column;height:auto;min-height:auto;align-items:flex-start}.header-item.first{border-right:none;margin-bottom:0}main{padding:1rem 2rem}body{font-size:1.4rem;line-height:1.55}footer{display:none}.note{margin-top:16px}}</style><div class=container><main><p class=devinfo-container><span class=error-code><strong>404</strong>: NOT_FOUND</span>
|
||||
<span class=devinfo-line>Code: <code>NOT_FOUND</code></span>
|
||||
<span class=devinfo-line>ID: <code>bom1::xp4jr-1754220714976-65b8606cbe2a</code></p><a href=https://vercel.com/docs/errors/platform-error-codes#not_found class=owner-error><div class=note>Read our documentation to learn more about this error.</div></a></main></div>
|
3
assets/fonts/fonts/boxicons.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html><html lang=en><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#000><title>404: NOT_FOUND</title><style>html{font-size:62.5%;box-sizing:border-box;height:-webkit-fill-available}*,::after,::before{box-sizing:inherit}body{font-family:sf pro text,sf pro icons,helvetica neue,helvetica,arial,sans-serif;font-size:1.6rem;line-height:1.65;word-break:break-word;font-kerning:auto;font-variant:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;hyphens:auto;height:100vh;height:-webkit-fill-available;max-height:100vh;max-height:-webkit-fill-available;margin:0}::selection{background:#79ffe1}::-moz-selection{background:#79ffe1}a{cursor:pointer;color:#0070f3;text-decoration:none;transition:all .2s ease;border-bottom:1px solid #0000}a:hover{border-bottom:1px solid #0070f3}ul{padding:0;margin-left:1.5em;list-style-type:none}li{margin-bottom:10px}ul li:before{content:'\02013'}li:before{display:inline-block;color:#ccc;position:absolute;margin-left:-18px;transition:color .2s ease}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.92em}code:after,code:before{content:'`'}.container{display:flex;justify-content:center;flex-direction:column;min-height:100%}main{max-width:80rem;padding:4rem 6rem;margin:auto}ul{margin-bottom:32px}.error-title{font-size:2rem;padding-left:22px;line-height:1.5;margin-bottom:24px}.error-title-guilty{border-left:2px solid #ed367f}.error-title-innocent{border-left:2px solid #59b89c}@media(max-width:500px){.owner-error{display:none}}main p{color:#333}.devinfo-container{border:1px solid #ddd;border-radius:4px;padding:2rem;display:flex;flex-direction:column;margin-bottom:32px}.error-code{margin:0;font-size:1.6rem;color:#000;margin-bottom:1.6rem}.devinfo-line{color:#333}.devinfo-line code,code,li{color:#000}.devinfo-line:not(:last-child){margin-bottom:8px}.docs-link,.contact-link{font-weight:500}header,footer,footer a{display:flex;justify-content:center;align-items:center}header,footer{min-height:100px;height:100px}header{border-bottom:1px solid #eaeaea}header h1{font-size:1.8rem;margin:0;font-weight:500}header p{font-size:1.3rem;margin:0;font-weight:500}.header-item{display:flex;padding:0 2rem;margin:2rem 0;text-decoration:line-through;color:#999}.header-item.active{color:#ff0080;text-decoration:none}.header-item.first{border-right:1px solid #eaeaea}.header-item-content{display:flex;flex-direction:column}.header-item-icon{margin-right:1rem;margin-top:.6rem}footer{border-top:1px solid #eaeaea}footer a{color:#000}footer a:hover{border-bottom-color:#0000}footer svg{margin-left:.8rem}.note{padding:8pt 16pt;border-radius:5px;border:1px solid #0070f3;font-size:14px;line-height:1.8;color:#0070f3}@media(max-width:500px){.devinfo-container .devinfo-line code{margin-top:.4rem}.devinfo-container .devinfo-line:not(:last-child){margin-bottom:1.6rem}.devinfo-container{margin-bottom:0}header{flex-direction:column;height:auto;min-height:auto;align-items:flex-start}.header-item.first{border-right:none;margin-bottom:0}main{padding:1rem 2rem}body{font-size:1.4rem;line-height:1.55}footer{display:none}.note{margin-top:16px}}</style><div class=container><main><p class=devinfo-container><span class=error-code><strong>404</strong>: NOT_FOUND</span>
|
||||
<span class=devinfo-line>Code: <code>NOT_FOUND</code></span>
|
||||
<span class=devinfo-line>ID: <code>bom1::7vqq7-1754220713580-c0b0225db679</code></p><a href=https://vercel.com/docs/errors/platform-error-codes#not_found class=owner-error><div class=note>Read our documentation to learn more about this error.</div></a></main></div>
|
3
assets/fonts/fonts/boxiconsd41d.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html><html lang=en><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#000><title>404: NOT_FOUND</title><style>html{font-size:62.5%;box-sizing:border-box;height:-webkit-fill-available}*,::after,::before{box-sizing:inherit}body{font-family:sf pro text,sf pro icons,helvetica neue,helvetica,arial,sans-serif;font-size:1.6rem;line-height:1.65;word-break:break-word;font-kerning:auto;font-variant:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;hyphens:auto;height:100vh;height:-webkit-fill-available;max-height:100vh;max-height:-webkit-fill-available;margin:0}::selection{background:#79ffe1}::-moz-selection{background:#79ffe1}a{cursor:pointer;color:#0070f3;text-decoration:none;transition:all .2s ease;border-bottom:1px solid #0000}a:hover{border-bottom:1px solid #0070f3}ul{padding:0;margin-left:1.5em;list-style-type:none}li{margin-bottom:10px}ul li:before{content:'\02013'}li:before{display:inline-block;color:#ccc;position:absolute;margin-left:-18px;transition:color .2s ease}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.92em}code:after,code:before{content:'`'}.container{display:flex;justify-content:center;flex-direction:column;min-height:100%}main{max-width:80rem;padding:4rem 6rem;margin:auto}ul{margin-bottom:32px}.error-title{font-size:2rem;padding-left:22px;line-height:1.5;margin-bottom:24px}.error-title-guilty{border-left:2px solid #ed367f}.error-title-innocent{border-left:2px solid #59b89c}@media(max-width:500px){.owner-error{display:none}}main p{color:#333}.devinfo-container{border:1px solid #ddd;border-radius:4px;padding:2rem;display:flex;flex-direction:column;margin-bottom:32px}.error-code{margin:0;font-size:1.6rem;color:#000;margin-bottom:1.6rem}.devinfo-line{color:#333}.devinfo-line code,code,li{color:#000}.devinfo-line:not(:last-child){margin-bottom:8px}.docs-link,.contact-link{font-weight:500}header,footer,footer a{display:flex;justify-content:center;align-items:center}header,footer{min-height:100px;height:100px}header{border-bottom:1px solid #eaeaea}header h1{font-size:1.8rem;margin:0;font-weight:500}header p{font-size:1.3rem;margin:0;font-weight:500}.header-item{display:flex;padding:0 2rem;margin:2rem 0;text-decoration:line-through;color:#999}.header-item.active{color:#ff0080;text-decoration:none}.header-item.first{border-right:1px solid #eaeaea}.header-item-content{display:flex;flex-direction:column}.header-item-icon{margin-right:1rem;margin-top:.6rem}footer{border-top:1px solid #eaeaea}footer a{color:#000}footer a:hover{border-bottom-color:#0000}footer svg{margin-left:.8rem}.note{padding:8pt 16pt;border-radius:5px;border:1px solid #0070f3;font-size:14px;line-height:1.8;color:#0070f3}@media(max-width:500px){.devinfo-container .devinfo-line code{margin-top:.4rem}.devinfo-container .devinfo-line:not(:last-child){margin-bottom:1.6rem}.devinfo-container{margin-bottom:0}header{flex-direction:column;height:auto;min-height:auto;align-items:flex-start}.header-item.first{border-right:none;margin-bottom:0}main{padding:1rem 2rem}body{font-size:1.4rem;line-height:1.55}footer{display:none}.note{margin-top:16px}}</style><div class=container><main><p class=devinfo-container><span class=error-code><strong>404</strong>: NOT_FOUND</span>
|
||||
<span class=devinfo-line>Code: <code>NOT_FOUND</code></span>
|
||||
<span class=devinfo-line>ID: <code>bom1::6r9dw-1754220715375-aa89ba2149a0</code></p><a href=https://vercel.com/docs/errors/platform-error-codes#not_found class=owner-error><div class=note>Read our documentation to learn more about this error.</div></a></main></div>
|
BIN
assets/fonts/satoshi/fonts/Satoshi-Black.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Black.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Black.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BlackItalic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BlackItalic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BlackItalic.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Bold.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Bold.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Bold.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BoldItalic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BoldItalic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-BoldItalic.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Italic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Italic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Italic.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Light.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Light.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Light.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-LightItalic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-LightItalic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-LightItalic.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Medium.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Medium.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Medium.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-MediumItalic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-MediumItalic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-MediumItalic.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Regular.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Regular.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Regular.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Variable.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Variable.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-Variable.woff2
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-VariableItalic.ttf
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-VariableItalic.woff
Normal file
BIN
assets/fonts/satoshi/fonts/Satoshi-VariableItalic.woff2
Normal file
158
assets/fonts/satoshi/satoshi.css
Normal file
@@ -0,0 +1,158 @@
|
||||
/**
|
||||
* @license
|
||||
*
|
||||
* Font Family: Satoshi
|
||||
* Designed by: Deni Anggara
|
||||
* URL: https://www.fontshare.com/fonts/satoshi
|
||||
* © 2024 Indian Type Foundry
|
||||
*
|
||||
* Satoshi Light
|
||||
* Satoshi LightItalic
|
||||
* Satoshi Regular
|
||||
* Satoshi Italic
|
||||
* Satoshi Medium
|
||||
* Satoshi MediumItalic
|
||||
* Satoshi Bold
|
||||
* Satoshi BoldItalic
|
||||
* Satoshi Black
|
||||
* Satoshi BlackItalic
|
||||
* Satoshi Variable (Variable font)
|
||||
* Satoshi VariableItalic (Variable font)
|
||||
*
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Light';
|
||||
src:
|
||||
url('fonts/Satoshi-Light.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Light.woff') format('woff'),
|
||||
url('fonts/Satoshi-Light.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-LightItalic';
|
||||
src:
|
||||
url('fonts/Satoshi-LightItalic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-LightItalic.woff') format('woff'),
|
||||
url('fonts/Satoshi-LightItalic.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Regular';
|
||||
src:
|
||||
url('fonts/Satoshi-Regular.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Regular.woff') format('woff'),
|
||||
url('fonts/Satoshi-Regular.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Italic';
|
||||
src:
|
||||
url('fonts/Satoshi-Italic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Italic.woff') format('woff'),
|
||||
url('fonts/Satoshi-Italic.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Medium';
|
||||
src:
|
||||
url('fonts/Satoshi-Medium.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Medium.woff') format('woff'),
|
||||
url('fonts/Satoshi-Medium.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-MediumItalic';
|
||||
src:
|
||||
url('fonts/Satoshi-MediumItalic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-MediumItalic.woff') format('woff'),
|
||||
url('fonts/Satoshi-MediumItalic.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Bold';
|
||||
src:
|
||||
url('fonts/Satoshi-Bold.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Bold.woff') format('woff'),
|
||||
url('fonts/Satoshi-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-BoldItalic';
|
||||
src:
|
||||
url('fonts/Satoshi-BoldItalic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-BoldItalic.woff') format('woff'),
|
||||
url('fonts/Satoshi-BoldItalic.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Black';
|
||||
src:
|
||||
url('fonts/Satoshi-Black.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Black.woff') format('woff'),
|
||||
url('fonts/Satoshi-Black.ttf') format('truetype');
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Satoshi-BlackItalic';
|
||||
src:
|
||||
url('fonts/Satoshi-BlackItalic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-BlackItalic.woff') format('woff'),
|
||||
url('fonts/Satoshi-BlackItalic.ttf') format('truetype');
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
/**
|
||||
* This is a variable font
|
||||
* You can control variable axes as shown below:
|
||||
* font-variation-settings: wght 900.0;
|
||||
*
|
||||
* available axes:
|
||||
'wght' (range from 300.0 to 900.0
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Satoshi-Variable';
|
||||
src:
|
||||
url('fonts/Satoshi-Variable.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-Variable.woff') format('woff'),
|
||||
url('fonts/Satoshi-Variable.ttf') format('truetype');
|
||||
font-weight: 300 900;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
/**
|
||||
* This is a variable font
|
||||
* You can control variable axes as shown below:
|
||||
* font-variation-settings: wght 900.0;
|
||||
*
|
||||
* available axes:
|
||||
'wght' (range from 300.0 to 900.0
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Satoshi-VariableItalic';
|
||||
src:
|
||||
url('fonts/Satoshi-VariableItalic.woff2') format('woff2'),
|
||||
url('fonts/Satoshi-VariableItalic.woff') format('woff'),
|
||||
url('fonts/Satoshi-VariableItalic.ttf') format('truetype');
|
||||
font-weight: 300 900;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
BIN
assets/imgs/banner-2/img-1.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
assets/imgs/banner-2/star-1.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/imgs/banner-2/star-2.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/imgs/banner-3/img-1.png
Normal file
After Width: | Height: | Size: 146 KiB |
10
assets/imgs/bibhuti/icons/bullseye.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="64px" height="64px" viewBox="0 0 36 36" version="1.1" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier"> <title>bullseye-line</title> <path d="M18,2a15.92,15.92,0,0,0-4.25.59l.77,1.86a14.07,14.07,0,1,1-10,10l-1.86-.78A16,16,0,1,0,18,2Z" class="clr-i-outline clr-i-outline-path-1"/>
|
After Width: | Height: | Size: 1.3 KiB |
7
assets/imgs/bibhuti/icons/business.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
7
assets/imgs/bibhuti/icons/code.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
9
assets/imgs/bibhuti/icons/cogs.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="64px" height="64px" viewBox="0 0 14 14" role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
9
assets/imgs/bibhuti/icons/devices.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="64px" height="64px" viewBox="0 0 36 36" version="1.1" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
After Width: | Height: | Size: 1011 B |
7
assets/imgs/bibhuti/icons/laptop.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
16
assets/imgs/bibhuti/icons/mike.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier">
|
||||
|
||||
<defs>
|
||||
|
||||
<style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:0.9359999999999999;}</style>
|
||||
|
||||
</defs>
|
After Width: | Height: | Size: 1.1 KiB |
7
assets/imgs/bibhuti/icons/object.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" fill="#000000">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 875 B |
7
assets/imgs/bibhuti/icons/pencil.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64px" height="64px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve" fill="#000000">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
9
assets/imgs/bibhuti/icons/project.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="64px" height="64px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" stroke="#000000" stroke-width="0.00032">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
After Width: | Height: | Size: 833 B |
7
assets/imgs/bibhuti/icons/puzzle.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
23
assets/imgs/bibhuti/icons/rocket.svg
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 1024 1024" fill="#000000" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier">
|
||||
|
||||
<path d="M526.294 824.994c-0.796 0-1.61-0.124-2.39-0.344a8.02 8.02 0 0 1-5.484-6.216c-5.374-29.624-20.59-79.834-38.526-88.428a8.03 8.03 0 0 1-3.75-10.686 8.02 8.02 0 0 1 10.688-3.75c23.996 11.532 38.212 59.68 44.18 85.02 93.754-100.924 51.37-164.976 50.916-165.632a7.982 7.982 0 0 1 2.032-11.124c3.578-2.5 8.624-1.624 11.124 2.032 2.234 3.218 53.384 80.366-63.132 196.788a7.99 7.99 0 0 1-5.658 2.34zM348.038 594.618a8.03 8.03 0 0 1-6.876-3.906c-11.67-19.652-67.35-33.588-87.816-37.306a8.016 8.016 0 0 1-6.218-5.5 7.994 7.994 0 0 1 1.984-8.03c116.486-116.508 193.646-65.422 196.85-63.172a7.99 7.99 0 0 1 2.032 11.124c-2.5 3.64-7.466 4.516-11.092 2.062-2.75-1.89-65.586-42.228-165.728 50.924 24.496 5.75 70.38 19.214 83.738 41.712a7.988 7.988 0 0 1-2.782 10.966 8.12 8.12 0 0 1-4.092 1.126zM189.338 893.64c-4.03 0-6.56-1.688-7.982-3.094-18.076-18.09 78.178-123.42 79.194-124.452 12.092-12.06 33.166-12.06 45.26 0.032a31.702 31.702 0 0 1 9.358 22.59c0 8.562-3.328 16.592-9.374 22.624-0.83 0.844-92.926 82.3-116.456 82.3z m93.832-120.89a15.924 15.924 0 0 0-11.31 4.656c-11.56 11.56-60.96 72.428-74.302 96.926 24.496-13.344 85.364-62.742 96.924-74.304a15.796 15.796 0 0 0 4.688-11.31 15.78 15.78 0 0 0-4.672-11.28 15.892 15.892 0 0 0-11.328-4.688z" fill=""/>
|
||||
|
||||
<path d="M158.014 943.478c-9.42 0-16.792-2.594-21.902-7.686-15.358-15.374-7.89-49.932 22.824-105.644 22.966-41.68 53.026-83.3 67.696-97.956 15.092-15.124 35.166-23.434 56.524-23.434s41.448 8.31 56.554 23.434c31.168 31.184 31.2 81.928 0.046 113.112-24.512 24.496-132.014 98.174-181.742 98.174z m125.14-218.72c-17.092 0-33.136 6.654-45.212 18.746-13.966 13.938-43.416 55.182-64.992 94.364-29.418 53.336-32.134 79.99-25.528 86.614 2 2 5.562 3 10.592 3 41.918 0 144.78-67.866 170.432-93.488 24.918-24.934 24.886-65.552-0.046-90.488-12.094-12.094-28.154-18.748-45.246-18.748zM446.476 767.72a7.996 7.996 0 0 1-5.654-13.654l441.16-441.17c38.776-38.776 50.682-81.272 54.322-103.142 5.638-33.84-0.75-58.226-9.078-66.554-7.874-7.874-34.636-12.092-70.552-4.906-38.932 7.78-75.068 26.06-99.142 50.134L316.37 629.614l-11.31-11.31L746.22 177.118c26.246-26.262 65.368-46.12 107.33-54.508 30.496-6.092 68.88-6.858 84.99 9.28 25.246 25.246 27.278 119.796-45.246 192.318l-441.16 441.17a7.98 7.98 0 0 1-5.658 2.342z" fill=""/>
|
||||
|
||||
<path d="M797.12 190.772a7.992 7.992 0 0 1-6.86-3.876 8.024 8.024 0 0 1 2.734-10.982c56.398-33.95 106.83-37.542 122.922-21.404a8 8 0 0 1-11.31 11.312c-7.078-7.062-46.792-10.25-103.364 23.808a8.08 8.08 0 0 1-4.122 1.142zM378.58 699.822a8 8 0 0 1-5.656-13.654l135.686-135.67a7.996 7.996 0 1 1 11.31 11.31l-135.686 135.672a7.97 7.97 0 0 1-5.654 2.342zM355.958 677.202a7.972 7.972 0 0 1-5.654-2.344l-45.244-45.244a7.996 7.996 0 1 1 11.31-11.31l45.244 45.244a7.996 7.996 0 0 1-5.656 13.654zM446.476 767.72a7.968 7.968 0 0 1-5.654-2.344l-45.276-45.276a7.996 7.996 0 1 1 11.31-11.31l45.276 45.276a7.996 7.996 0 0 1-5.656 13.654zM717.942 408.478c-14.966 0-29.012-5.828-39.588-16.404-10.576-10.578-16.404-24.638-16.404-39.59 0-14.966 5.828-29.028 16.404-39.604 21.152-21.168 58.04-21.168 79.194-0.016 10.576 10.576 16.402 24.636 16.402 39.588 0 14.966-5.826 29.028-16.402 39.606-10.58 10.576-24.656 16.42-39.606 16.42z m0.016-96.02c-10.686 0-20.73 4.172-28.292 11.732a39.74 39.74 0 0 0-11.716 28.292 39.728 39.728 0 0 0 11.716 28.278c15.092 15.092 41.448 15.108 56.57-0.016a39.74 39.74 0 0 0 11.718-28.294 39.738 39.738 0 0 0-11.718-28.278 39.73 39.73 0 0 0-28.278-11.714zM604.832 521.588c-14.968 0-29.028-5.826-39.59-16.404-10.576-10.576-16.404-24.636-16.404-39.588 0-14.966 5.828-29.028 16.404-39.588 21.124-21.122 58.024-21.154 79.178 0 10.576 10.578 16.404 24.638 16.404 39.588s-5.828 29.012-16.404 39.588c-10.576 10.578-24.638 16.404-39.588 16.404z m0-95.988c-10.688 0-20.732 4.156-28.278 11.718-7.562 7.544-11.718 17.59-11.718 28.278a39.734 39.734 0 0 0 11.718 28.278c15.074 15.108 41.416 15.138 56.554 0a39.74 39.74 0 0 0 11.716-28.278 39.74 39.74 0 0 0-11.716-28.278 39.728 39.728 0 0 0-28.276-11.718zM904.262 799.966c-4.422 0-8.078-3.562-8.078-8 0-4.404 3.5-7.998 7.906-7.998h0.172a8.014 8.014 0 0 1 7.998 7.998c0 4.438-3.592 8-7.998 8zM280.31 16.06c-4.42 0-8.076-3.578-8.076-8 0-4.42 3.5-7.998 7.904-7.998h0.172c4.406 0 8 3.578 8 7.998 0 4.422-3.594 8-8 8zM632.266 48.056c-4.422 0-8.078-3.578-8.078-8 0-4.42 3.5-7.998 7.906-7.998h0.172a8.004 8.004 0 0 1 7.998 7.998c0 4.422-3.592 8-7.998 8zM40.342 240.032c-4.422 0-8.076-3.578-8.076-8 0-4.42 3.5-7.998 7.904-7.998h0.172c4.406 0 8 3.578 8 7.998 0 4.422-3.594 8-8 8zM168.31 671.982c-4.422 0-8.078-3.594-8.078-7.998 0-4.438 3.5-8 7.906-8h0.172a7.994 7.994 0 0 1 7.998 8 8.014 8.014 0 0 1-7.998 7.998zM567.46 1007.94c-4.422 0-8.078-3.594-8.078-8 0-4.436 3.5-7.998 7.906-7.998h0.172c4.406 0 8 3.562 8 7.998 0 4.406-3.592 8-8 8zM952.222 1023.938c-4.42 0-8.076-3.562-8.076-8 0-4.406 3.5-7.998 7.904-7.998h0.172c4.406 0 8 3.592 8 7.998 0 4.438-3.594 8-8 8zM776.278 591.992c-4.422 0-8.076-3.592-8.076-7.998 0-4.438 3.498-7.998 7.904-7.998h0.172c4.406 0 8 3.56 8 7.998a8.014 8.014 0 0 1-8 7.998zM968.238 527.994c-4.422 0-8.078-3.578-8.078-8 0-4.42 3.5-7.998 7.906-7.998h0.172a8.004 8.004 0 0 1 7.998 7.998c0 4.422-3.594 8-7.998 8zM872.25 751.942c-4.422 0-8.078-3.562-8.078-8 0-4.404 3.5-7.998 7.906-7.998h0.172a8.014 8.014 0 0 1 7.998 7.998c0 4.436-3.592 8-7.998 8z" fill=""/>
|
||||
|
||||
<path d="M911.76 831.992c-44.104-0.032-79.99-35.932-80.006-80.02 0.016-44.12 35.902-79.99 79.99-79.99 44.104 0 79.99 35.872 79.99 79.99 0 44.088-35.87 79.988-79.974 80.02z m-0.016-144.012c-35.276 0-63.974 28.714-63.99 63.992 0.016 35.278 28.73 63.992 64.006 64.024 35.278-0.032 63.976-28.746 63.976-64.024 0-35.308-28.698-63.992-63.992-63.992z" fill=""/>
|
||||
|
||||
<path d="M935.79 751.972c-13.234 0-24.014-10.782-24.03-23.996 0-13.25 10.764-23.998 23.982-23.998 13.232 0 23.996 10.78 23.996 23.998a23.774 23.774 0 0 1-6.968 16.934 23.76 23.76 0 0 1-16.98 7.062z m-0.064-31.996a7.972 7.972 0 0 0-7.968 7.968c0.016 4.498 3.516 8.03 8 8.03h0.032c2.14 0 4.138-0.844 5.638-2.344s2.312-3.5 2.312-5.624a8.026 8.026 0 0 0-8.014-8.03zM711.8 927.98a8.004 8.004 0 0 1-7.998-7.998l-0.032-64.024a8.004 8.004 0 0 1 7.998-7.998c4.422 0 8 3.592 8 7.998l0.032 64.024a8.006 8.006 0 0 1-8 7.998z" fill=""/>
|
||||
|
||||
<path d="M727.77 895.954h-31.996c-4.422 0-8-3.594-8-7.998 0-4.438 3.578-8 8-8h31.996a7.984 7.984 0 0 1 7.998 8 8.004 8.004 0 0 1-7.998 7.998zM391.812 991.942c-4.422 0-8-3.594-8-8v-63.99c0-4.438 3.578-8 8-8s7.998 3.562 7.998 8v63.99c0 4.406-3.576 8-7.998 8z" fill=""/>
|
||||
|
After Width: | Height: | Size: 9.5 KiB |
10
assets/imgs/bibhuti/icons/speed.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="64px" height="64px" viewBox="0 0 512 512" data-name="Layer 1" id="Layer_1" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier">
|
After Width: | Height: | Size: 2.2 KiB |
7
assets/imgs/bibhuti/icons/tools.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="64px" height="64px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
20
assets/imgs/bibhuti/icons/users.svg
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="800px" height="800px" viewBox="0 0 60 60" enable-background="new 0 0 60 60" xml:space="preserve">
|
||||
<path fill="#CCCCCC" d="M48.35,50.783l0.254,0.305c-4.997,4.488-11.608,7.222-18.842,7.222s-13.833-2.721-18.83-7.196l0.28-0.331
|
||||
c0,0,3.293-2.619,7.171-3.585c3.878-0.966,5.632-3.687,5.632-3.687v-4.755c0,0-2.823-3.776-2.428-6.395c0,0-3.496-2.327-1.068-5.721
|
||||
c0,0-5.62-16.134,8.633-16.299c3.611-0.038,5.403,2.708,5.403,2.708c9.65-0.966,4.488,13.591,4.488,13.591
|
||||
c2.428,3.395-1.068,5.721-1.068,5.721c0.394,2.619-2.428,6.395-2.428,6.395v4.755c0,0,1.755,2.721,5.632,3.687
|
||||
C45.057,48.164,48.35,50.783,48.35,50.783z"/>
|
||||
<path fill="none" stroke="#555555" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
|
||||
M48.35,50.783c0,0-3.293-2.619-7.171-3.585c-3.878-0.966-5.632-3.687-5.632-3.687v-4.755c0,0,2.823-3.776,2.428-6.395
|
||||
c0,0,3.496-2.327,1.068-5.721c0,0,5.162-14.558-4.488-13.591c0,0-1.793-2.746-5.403-2.708c-14.253,0.165-8.633,16.299-8.633,16.299
|
||||
c-2.428,3.395,1.068,5.721,1.068,5.721c-0.394,2.619,2.428,6.395,2.428,6.395v4.755c0,0-1.755,2.721-5.632,3.687
|
||||
c-3.878,0.966-7.171,3.585-7.171,3.585"/>
|
||||
<path fill="none" stroke="#555555" stroke-width="3" stroke-miterlimit="10" d="M10.932,51.113
|
||||
C5.16,45.939,1.524,38.425,1.524,30.071c0-15.6,12.638-28.238,28.238-28.238C45.349,1.833,58,14.471,58,30.071
|
||||
c0,8.353-3.624,15.854-9.396,21.016c-4.997,4.488-11.608,7.222-18.842,7.222S15.929,55.589,10.932,51.113z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/imgs/bibhuti/logo/Logo.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
assets/imgs/bibhuti/logo/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/imgs/bibhuti/logo/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
assets/imgs/bibhuti/logo/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/imgs/bibhuti/logo/favicon-16x16.png
Normal file
After Width: | Height: | Size: 840 B |
BIN
assets/imgs/bibhuti/logo/favicon-32x32.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/imgs/bibhuti/logo/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
1
assets/imgs/bibhuti/logo/site.webmanifest
Normal file
@@ -0,0 +1 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
BIN
assets/imgs/bibhuti/panchTatwa/air.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/imgs/bibhuti/panchTatwa/earth.jpg
Normal file
After Width: | Height: | Size: 415 KiB |
BIN
assets/imgs/bibhuti/panchTatwa/fire.jpg
Normal file
After Width: | Height: | Size: 205 KiB |
BIN
assets/imgs/bibhuti/panchTatwa/sky.jpg
Normal file
After Width: | Height: | Size: 593 KiB |
BIN
assets/imgs/bibhuti/panchTatwa/water.jpg
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
assets/imgs/bibhuti/partners/ecan-logo.png
Normal file
After Width: | Height: | Size: 260 KiB |
BIN
assets/imgs/bibhuti/partners/trust-logo.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
assets/imgs/blog-1/card-img-1.png
Normal file
After Width: | Height: | Size: 574 KiB |
BIN
assets/imgs/blog-1/card-img-2.png
Normal file
After Width: | Height: | Size: 670 KiB |
BIN
assets/imgs/blog-1/card-img-3.png
Normal file
After Width: | Height: | Size: 508 KiB |
BIN
assets/imgs/blog-2/img-bg-line.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
assets/imgs/blog-3/img-1.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
assets/imgs/blog-3/img-2.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
assets/imgs/blog-3/img-3.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
assets/imgs/blog-3/img-4.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
assets/imgs/blog-4/avatar-1.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
assets/imgs/blog-4/avatar-2.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/imgs/blog-4/avatar-3.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
assets/imgs/blog-4/card-img-1.png
Normal file
After Width: | Height: | Size: 179 KiB |