api code global jain

This commit is contained in:
Abhishek Mali
2025-11-05 10:37:10 +05:30
commit 52fe7e2bec
2834 changed files with 1784903 additions and 0 deletions

177
public/css/frontend/404-error.css vendored Normal file
View File

@@ -0,0 +1,177 @@
body {
background: #f3f4f6;
}
.header {
background: #ffffff;
padding: 5px 0;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
.header .logo {
display: inline-block;
}
.header .logo a {
display: flex;
max-width: 98px;
align-items: center;
}
.header .logo a img {
max-width: 100%;
height: auto;
}
.btn-blue-bg {
color: #ffffff;
background: #475eab;
border: 2px solid transparent;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
font-size: 16px;
border-radius: 0;
text-transform: uppercase;
}
.btn-blue-bg:hover {
color: #ffffff;
background: #038cb7;
}
.error-404 {
margin-top: 70px;
}
.error-404 .img-error-mid {
display: block;
margin-right: auto;
margin-left: auto;
width: 45%;
margin-top: 40px;
margin-bottom: 15px;
}
.error-404 .img-error-mid .img-404 {
width: 70%;
display: block;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
}
.error-404 .img-error-mid img {
width: 100%;
}
.error-404 .cont-section {
display: block;
margin-right: auto;
margin-left: auto;
width: 45%;
}
.error-404 .cont-section h3 {
font-size: 40px;
color: #363636;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.error-404 .cont-section p {
font-size: 16px;
color: #878787;
text-align: center;
margin-bottom: 30px;
}
@media (max-width: 767px) {
body {
margin-bottom: 0px;
}
.errorhd {
padding: 6px 0px;
}
.error-404 {
margin-top: 70px;
}
.error-404 .img-error-mid {
display: block;
margin-right: auto;
margin-left: auto;
width: 45%;
margin-top: 40px;
margin-bottom: 15px;
}
.error-404 .img-error-mid img {
width: 100%;
}
.error-404 .img-error-mid .img-404 {
width: 60%;
display: block;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
}
.error-404 .cont-section {
display: block;
margin-right: auto;
margin-left: auto;
width: 45%;
}
.error-404 .cont-section h3 {
font-size: 40px;
color: #363636;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.error-404 .cont-section p {
font-size: 16px;
color: #878787;
text-align: center;
margin-bottom: 30px;
}
}
@media (max-width: 1200px) {
.error-404 .img-error-mid,
.error-404 .cont-section {
width: 60%;
}
}
@media (max-width: 991px) {
.error-404 .img-error-mid,
.error-404 .cont-section {
width: 80%;
}
}
@media (max-width: 767px) {
.error-404 .img-error-mid,
.error-404 .cont-section {
width: 100%;
}
.error-404 .img-error-mid {
padding-right: 15px;
padding-left: 15px;
}
.error-404 .cont-section h3 {
font-size: 200%;
}
}
@media (max-width: 480px) {
.error-404 .img-error-mid {
margin-top: 40px;
margin-bottom: 15px;
}
.error-404 .img-error-mid .img-404 {
margin-bottom: 15px;
}
.error-404 .cont-section h3 {
font-size: 150%;
margin-bottom: 15px;
}
.error-404 .cont-section p {
margin-bottom: 15px;
}
}

7
public/css/frontend/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

221
public/css/frontend/custom-utilities.css vendored Normal file
View File

@@ -0,0 +1,221 @@
.cursor-none {
cursor: default !important;
}
/* Bootstrap 4 classes */
.mr-3 {
margin-right: 0.75rem;
}
.mr-8 {
margin-right: 2rem;
}
.mr-7 {
margin-right: 1.75rem;
}
.mr-15 {
margin-right: 3.75rem;
}
.text-right {
text-align: right;
}
.opacity-80 {
opacity: 0.8;
}
/* Font color css */
.fc-white,
.fc-hover-white:hover,
.fc-hover-white.active {
color: #ffffff;
}
.fc-black,
.fc-hover-black:hover {
color: #101014;
}
.fc-light-gray,
.fc-hover-light-gray:hover {
color: #7b7b88;
}
.fc-dark-gray,
.fc-hover-dark-gray:hover {
color: #666666 !important;
}
.fc-dark-blue,
.fc-hover-dark-blue:hover {
color: #475eab;
}
.fc-blue,
.fc-hover-blue:hover {
color: #038cb7;
}
.fc-yellow,
.fc-hover-yellow:hover {
color: #d2df43;
}
/* Background color css */
.bg-blue {
background: #038cb7;
}
.bg-light-gray {
background: #f7f7f7;
}
.bg-light-blue {
background: #f5f6ff;
}
.bg-light-blue1 {
background-color: #f3f7f9;
}
.bg-dark-blue {
background: #475eab;
}
.bg-hover-dark-blue:hover,
.bg-hover-dark-blue.active {
background: #475eab !important;
}
.bg-gradient-blue {
background-image: linear-gradient(to right, #475eab, #038cb7);
}
/* border colours css */
.border-gray {
border-color: #ececec;
}
/* Border radius css */
.rounded-25 {
border-radius: 25px;
}
.rounded-15 {
border-radius: 15px;
}
.rounded-10 {
border-radius: 10px;
}
.rounded-5 {
border-radius: 5px;
}
/* Margin and padding class */
.pt-60 {
padding-top: 60px;
}
.pb-60 {
padding-bottom: 60px;
}
.mb-50 {
margin-bottom: 50px;
}
.mb-60 {
margin-bottom: 60px;
}
/* Box-shadow css */
.shadow1 {
box-shadow: 0 3px 6px rgba(71, 94, 171, 0.4);
-webkit-box-shadow: 0 3px 6px rgba(71, 94, 171, 0.4);
-o-box-shadow: 0 3px 6px rgba(71, 94, 171, 0.4);
-ms-box-shadow: 0 3px 6px rgba(71, 94, 171, 0.4);
-moz-box-shadow: 0 3px 6px rgba(71, 94, 171, 0.4);
}
/* height css */
.h-55 {
height: 55px;
}
/* Text transform style */
.text-transform-none {
text-transform: none !important;
}
@media (max-width: 1399px) {
.h-55 {
height: 45px;
}
.pt-60 {
padding-top: 40px;
}
.pb-60 {
padding-bottom: 40px;
}
.mb-50 {
margin-bottom: 40px;
}
.mb-60 {
margin-bottom: 40px;
}
}
@media (max-width: 991px) {
.pt-60 {
padding-top: 30px;
}
.pb-60 {
padding-bottom: 30px;
}
.mb-50 {
margin-bottom: 30px;
}
.mb-60 {
margin-bottom: 30px;
}
}
@media (max-width: 767px) {
.pt-60 {
padding-top: 20px;
}
.pb-60 {
padding-bottom: 20px;
}
.mb-50 {
margin-bottom: 20px;
}
.mb-60 {
margin-bottom: 20px;
}
}

File diff suppressed because one or more lines are too long

218
public/css/frontend/fonts.css vendored Normal file
View File

@@ -0,0 +1,218 @@
/* @font-face {
font-family: "SF-Pro-Display-Thin";
src: url("../../fonts/frontend/SF-Pro-Display-Thin.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Light";
src: url("../../fonts/frontend/SF-Pro-Display-Light.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display";
src: url("../../fonts/frontend/SF-Pro-Display-Regular.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Medium";
src: url("../../fonts/frontend/SF-Pro-Display-Medium.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Semibold";
src: url("../../fonts/frontend/SF-Pro-Display-Semibold.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Bold";
src: url("../../fonts/frontend/SF-Pro-Display-Bold.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Heavy";
src: url("../../fonts/frontend/SF-Pro-Display-Heavy.otf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "SF-Pro-Display-Black";
src: url("../../fonts/frontend/SF-Pro-Display-Black.otf");
font-weight: normal;
font-style: normal;
} */
/* webfonts */
/* @font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Black.svg#SFProDisplay-Black') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Bold.svg#SFProDisplay-Bold') format('svg');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Heavy.svg#SFProDisplay-Heavy') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Light.svg#SFProDisplay-Light') format('svg');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Regular.svg#SFProDisplay-Regular') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Medium.svg#SFProDisplay-Medium') format('svg');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Semibold.svg#SFProDisplay-Semibold') format('svg');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SFProDisplay';
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.eot');
src: url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display/SFProDisplay-Thin.svg#SFProDisplay-Thin') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
} */
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Light.svg#SFProDisplay-Light') format('svg');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Bold.svg#SFProDisplay-Bold') format('svg');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Black.svg#SFProDisplay-Black') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Heavy.svg#SFProDisplay-Heavy') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Regular.svg#SFProDisplay-Regular') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Medium.svg#SFProDisplay-Medium') format('svg');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Semibold.svg#SFProDisplay-Semibold') format('svg');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.eot');
src: url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.woff2') format('woff2'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.woff') format('woff'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.ttf') format('truetype'), url('../../fonts/frontend/SF-Pro-Display-New/SFProDisplay-Thin.svg#SFProDisplay-Thin') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
font-display: block;
src: url("../../fonts/frontend/fa-solid-900.eot");
src: url("../../fonts/frontend/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../fonts/frontend/fa-solid-900.woff2") format("woff2"), url("../../fonts/frontend/fa-solid-900.woff") format("woff"), url("../../fonts/frontend/fa-solid-900.ttf") format("truetype"), url("../../fonts/frontend/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 700;
}

157
public/css/frontend/footer.css vendored Normal file
View File

@@ -0,0 +1,157 @@
.site-footer {
padding: 80px 0 0;
}
.site-footer .footer-top {
padding: 0 0 25px;
}
.site-footer .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 25px 0;
}
.site-footer .footer-logo {
margin: 0 0 30px;
}
.site-footer .list-title {
margin: 15px 0 30px;
}
.site-footer .footer-nav .nav-item {
margin: 0 0 20px;
}
.site-footer .details-text {
margin: 0 0 45px;
}
.site-footer .social-nav {
margin: 0 0 20px;
}
@media (max-width: 1399px) {
.site-footer {
padding: 60px 0 0;
}
.site-footer .footer-logo img {
max-width: 170px;
}
}
@media (max-width: 1199px) {
.site-footer {
padding: 40px 0 0;
}
.site-footer .footer-logo img {
max-width: 155px;
}
.site-footer .footer-logo {
margin: 0 0 20px;
}
.site-footer .details-text {
margin: 0 0 30px;
}
.site-footer .footer-nav .nav-item {
margin: 0 0 10px;
}
}
@media (max-width: 1024px) {
.site-footer {
padding: 20px 0 0;
}
.site-footer .ipad-full {
width: 100% !important;
}
.site-footer .footer-bottom {
padding: 10px 0;
}
.site-footer .footer-logo {
margin: 0 0 10px;
}
.site-footer .footer-logo img {
max-width: 100px;
}
.site-footer .details-text {
margin: 0 0 15px;
}
.site-footer .footer-nav {
display: none;
padding: 10px 0 0;
}
.site-footer .footer-nav .nav-item {
margin: 0 0 5px;
}
.site-footer .social-nav {
margin: 0 0 10px;
}
.site-footer .social-nav .nav-item {
margin-right: 10px;
}
.site-footer .social-nav .nav-item a {
transform: scale(0.8);
}
.site-footer .list-title {
position: relative;
padding: 9px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
margin: 0;
font-size: 16px;
text-transform: uppercase;
cursor: pointer;
}
.site-footer .list-title:after {
position: absolute;
content: "";
right: 5px;
top: 10px;
height: 10px;
width: 10px;
border-right: 3px solid #ffffff;
border-top: 3px solid #ffffff;
transform: rotate(135deg);
transition: all 0.5s;
}
.site-footer .footer-top {
padding: 0 0 10px;
}
.site-footer .list-title.active:after {
transform: rotate(-45deg);
top: 17px;
}
.site-footer .list-title.border-none {
border-bottom: none;
}
.site-footer .visit-count {
margin-bottom: 5px;
}
}
@media (min-width:1025px) {
.site-footer .footer-nav {
display: block !important;
}
}

430
public/css/frontend/form-elements.css vendored Normal file
View File

@@ -0,0 +1,430 @@
/* Button style */
button,
.link-btn {
max-width: 100%;
padding: 12px 15px;
}
.btn-blue-bg {
color: #ffffff;
background: #00b5ef;
border: 2px solid #00b5ef;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-blue-bg:hover {
background: #49df43;
border: 2px solid #49df43;
}
.btn-blue-border {
color: #00b5ef;
background: transparent;
border: 2px solid #00b5ef;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-blue-border:hover {
color: #ffffff;
background: #00b5ef;
}
.btn-dark-blue-bg {
color: #ffffff;
background: #475eab;
border: 2px solid #475eab;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-dark-blue-bg:hover {
background: transparent;
color: #475eab;
}
.btn-dark-blue-border {
color: #475eab;
background: transparent;
border: 2px solid #475eab;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-dark-blue-border:not(.no-hover):hover {
color: #ffffff;
background: #475eab;
}
.btn-gradient-blue-bg {
color: #ffffff;
background: linear-gradient(to right, #475eab, #038cb7);
background-clip: padding-box;
border: 2px solid transparent;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-gradient-blue-bg:hover {
color: #475eab;
background: #ffffff;
border: 2px solid #475eab;
}
.btn-gradient-blue-border {
color: #475eab;
background: #ffffff;
background-clip: padding-box;
border: 2px solid transparent;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-gradient-blue-border.has-outer-bg span {
z-index: 1;
position: relative;
}
.btn-gradient-blue-border.has-outer-bg::after {
z-index: 0;
}
.btn-gradient-blue-border:hover {
color: #ffffff;
background: linear-gradient(to right, #475eab, #038cb7);
}
.btn-gradient-blue-border:after,
.btn-gradient-blue-bg:after,
.btn-gradient-blue-bg:hover:after,
.btn-gradient-blue-border:hover:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
margin: -2px;
border-radius: inherit;
background: linear-gradient(to right, #475eab, #038cb7);
}
.btn-green-bg {
color: #ffffff;
background: #49df43;
border: 2px solid #49df43;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-green-bg:not(.no-hover):hover {
background: transparent;
color: #49df43;
}
.btn-gray-border {
color: #373742;
border: 2px solid #7b7b88;
background: transparent;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-gray-border:hover {
color: #ffffff;
background: #373742;
border-color: #373742;
}
.nav-tabs {
border: none;
}
.nav-tabs .nav-item {
padding: 0;
margin: 0 0 13px;
}
.nav-tabs .nav-link {
position: relative;
border: none;
margin: 0 30px 0 0;
padding: 0;
}
.nav-tabs .nav-item:last-child .nav-link {
margin: 0;
}
.nav-tabs .nav-link:after {
position: absolute;
content: "";
width: 0;
height: 4px;
bottom: -10px;
background-image: linear-gradient(to right, #475eab, #038cb7);
left: 50%;
transform: translateX(-50%);
transition: all 0.5s;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-item:hover .nav-link,
.nav-tabs .nav-link.active {
border: none;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active .nav-link {
color: #373742;
}
.nav-tabs .nav-item.show .nav-link:after,
.nav-tabs .nav-link.active:after,
.nav-tabs .nav-link:hover:after {
width: 107px;
}
.msme-form input,
.msme-form select {
height: 55px;
border-radius: 10px;
border: 1px solid #7b7b88;
padding: 15px;
outline: none;
box-shadow: none;
border-color: none;
}
.msme-form input:focus,
.msme-form select:focus {
outline: none;
box-shadow: none;
border-color: none;
}
.msme-form .msme-form-button {
height: 55px;
}
.search-field,
.select-field {
position: relative;
}
.search-field .field-suffix,
.select-field .field-suffix {
position: absolute;
top: 49%;
transform: translateY(-50%);
right: 15px;
z-index: 9;
cursor: pointer;
}
.select-field .field-suffix {
pointer-events: none;
}
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
border-radius: 10px;
}
label.is-invalid {
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.feedback-form input,
.feedback-form select {
height: 55px;
border-radius: 10px;
border: 1px solid #7b7b88;
padding: 15px;
outline: none;
box-shadow: none;
border-color: none;
}
.feedback-form .form-group {
margin-bottom: 30px;
}
.feedback-form textarea {
border-radius: 10px;
border: 1px solid #7b7b88;
padding: 15px;
outline: none;
box-shadow: none;
border-color: none;
resize: none;
}
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
outline: none;
box-shadow: none;
border-color: none;
}
.feedback-form .form-select {
background-image: url("../../images/frontend/svg/drop-icon.svg") !important;
background-size: 16px 8px !important;
}
.large-circle-bullet-list .list-item {
position: relative;
padding-left: 110px;
min-height: 100px;
margin: 0 0 40px;
}
.large-circle-bullet-list .list-item:before {
position: absolute;
content: "";
height: 80px;
width: 80px;
background: #038cb7;
border-radius: 100%;
opacity: 0.3;
top: 7px;
left: 0;
}
.large-circle-bullet-list .list-item .item-title {
margin: 0 0 12px;
}
.vertical-nav-pills {
width: 310px;
flex: 0 0 310px;
margin-right: 30px;
}
.nav-pills.vertical-nav-pills .nav-link.active,
.nav-pills.vertical-nav-pills .show > .nav-link {
background: #475eab;
color: #ffffff !important;
}
.nav-pills.vertical-nav-pills {
border: 1px solid rgba(123, 123, 136, 0.6);
overflow: hidden;
}
.nav-pills.vertical-nav-pills .nav-link {
border-radius: 0;
padding: 23px 15px;
}
.vertical-tabbing .tab-content {
flex: 1 1 auto;
display: flex;
flex-flow: row nowrap;
position: relative;
width: 100%;
min-height: 100%;
min-width: 0;
}
.vertical-tabbing .tab-content .tab-pane {
width: 100%;
}
@media (max-width: 1399px) {
.msme-form input,
.msme-form select {
height: 45px;
padding: 10px;
}
.msme-form .msme-form-button {
height: 45px;
}
button,
.link-btn {
padding: 10px 15px;
}
.vertical-nav-pills {
flex: 0 0 280px;
width: 280px;
margin-right: 25px;
}
.nav-pills.vertical-nav-pills .nav-link {
padding: 15px 10px;
}
}
@media (max-width: 1199px) {
.vertical-nav-pills {
flex: 0 0 210px;
width: 210px;
margin-right: 20px;
}
.nav-pills.vertical-nav-pills .nav-link {
padding: 10px;
}
}
@media (max-width: 991px) {
.vertical-tabbing {
flex-wrap: wrap;
}
.vertical-nav-pills {
flex: 0 0 100%;
width: 100%;
margin-right: 0;
margin-bottom: 15px;
flex-direction: row !important;
}
.nav-pills.vertical-nav-pills .nav-link {
width: 20%;
}
}
@media (max-width: 767px) {
.msme-form input,
.msme-form select {
height: 40px;
padding: 5px 10px;
}
.msme-form .msme-form-button {
height: 40px;
}
button,
.link-btn {
padding: 5px 15px;
font-size: 15px !important;
height: auto !important;
}
.nav-tabs .nav-link {
margin: 0 16px 0 0;
}
}

160
public/css/frontend/header.css vendored Normal file
View File

@@ -0,0 +1,160 @@
.site-header {
border-bottom: 10px solid #475eab;
padding: 27px 0 19px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 10;
}
.site-header .header-logo {
position: relative;
top: -8px;
}
.site-header .header-right>button,
.site-header .header-right>a {
width: 140px;
padding: 5px 10px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.site-header .hamburg-menu {
z-index: 1;
position: relative;
}
.site-header .hamburg-menu .hamburg-menu-item {
width: 28px;
height: 3px;
margin-bottom: 5px;
transition: all 0.5s;
position: relative;
transform: rotate(0deg);
}
.site-header .profile-image {
width: 70px;
height: 70px;
overflow: hidden;
border-radius: 100%;
}
@media (max-width: 1399px) {
.site-header .container {
max-width: 100%;
}
.site-header .header-right>button {
width: 100px;
}
.site-header .header-logo {
margin-right: 35px !important;
}
.site-header .header-nav .nav-item {
margin-right: 15px !important;
}
.site-header .header-right>button,
.site-header .header-right>a {
width: 100px;
}
}
@media (min-width: 992px) {
.header-nav .nav-item:hover a,
.header-nav .nav-item.active a {
color: #475eab;
}
}
@media (max-width: 991px) {
.site-header {
padding: 15px 0 10px;
border-bottom-width: 5px;
}
.site-header .header-logo {
width: 120px;
top: -4px;
}
.site-header .header-left {
width: 100%;
justify-content: space-between;
}
.site-header .header-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top,
rgba(72, 94, 171, 0.95),
rgba(0, 182, 240, 0.95));
padding: 100px 0;
align-items: center !important;
flex-direction: column;
opacity: 0;
visibility: hidden;
transition: all 0.5s;
overflow: auto;
justify-content: center;
}
.menu-open .site-header .header-nav {
opacity: 1;
visibility: visible;
}
.menu-open .site-header .hamburg-menu .hamburg-menu-item {
background: #ffffff;
}
.menu-open .site-header .hamburg-menu .hamburg-menu-item:first-child {
transform: rotate(45deg);
top: 10px;
}
.menu-open .site-header .hamburg-menu .hamburg-menu-item:nth-child(2) {
width: 0;
}
.menu-open .site-header .hamburg-menu .hamburg-menu-item:last-child {
transform: rotate(-45deg);
top: -7px;
}
.site-header .header-nav .nav-item:not(:last-child) {
margin: 0 0 10px;
}
.site-header .header-nav .nav-item a,
.site-header .header-nav .nav-item button {
color: #ffffff;
font-size: 16px;
text-transform: uppercase;
}
.site-header .header-nav .nav-item button,
.site-header .header-nav .nav-item .action-btn {
width: 150px;
margin: 0 !important;
display: flex;
align-items: center;
justify-content: center;
}
}
@media (max-width: 767px) {
.site-header .header-nav {
padding: 50px 0;
}
}

16
public/css/frontend/important-link.css vendored Normal file
View File

@@ -0,0 +1,16 @@
.inner-page-banner.important-link-banner {
margin-bottom: -150px;
padding-bottom: 160px;
}
.tender-list-table-section {
position: relative;
z-index: 1;
}
.tender-list-table-section .tender-table table,
.other-important-links .tender-table table {
min-width: auto;
}

View File

@@ -0,0 +1,56 @@
/* .industry-insights-banner .subtitle-text {
max-width: 550px;
margin: 0 0 80px 0;
}
.industry-insights-banner .news-event-section .inner-col .img-wrap {
width: 180px;
flex: 0 0 180px;
max-width: 180px;
}
.industry-insights-banner .inner-banner-content .title-text {
margin-bottom: 10px;
}
.secondary-banner.inner-page-banner.industry-insights-banner {
height: auto;
margin: 0;
}
.industry-insights-banner .news-event-section {
padding: 50px;
margin: 0;
}
.industry-insights-banner .news-event-section .title {
margin: 0 0 15px 0;
}
.industry-insights-banner .news-event-section .inner-col .text-wrap {
margin: 0;
}
@media (max-width: 1399px) {
.industry-insights-banner .news-event-section {
padding: 40px;
}
}
@media (max-width: 1199px) {
.industry-insights-banner .subtitle-text {
margin: 0 0 60px 0;
}
.industry-insights-banner .news-event-section {
padding: 30px;
}
}
@media (max-width: 767px) {
.industry-insights-banner .subtitle-text {
margin: 0 0 40px 0;
}
.industry-insights-banner .news-event-section {
padding: 25px 20px;
}
} */

19
public/css/frontend/main.css vendored Normal file
View File

@@ -0,0 +1,19 @@
@import "bootstrap.min.css";
@import "fontawesome.min.css";
@import "owl.carousel.min.css";
@import "owl.theme.default.min.css";
@import "fonts.css";
@import "typography.css";
@import "custom-utilities.css";
@import "header.css";
@import "footer.css";
@import "form-elements.css";
@import "style.css";
@import "media.css";
@import "msme-media.css";
@import "msme-list.css";
@import "msme-list-media.css";
@import "tender-details.css";
@import "tender-listing.css";
@import "industry-insights.css";
@import "important-link.css";

2754
public/css/frontend/media.css vendored Normal file

File diff suppressed because it is too large Load Diff

81
public/css/frontend/msme-list-media.css vendored Normal file
View File

@@ -0,0 +1,81 @@
@media (max-width: 1399px) {
.msme-list-form .search-field {
margin: 0 0 20px 0;
}
.msme-list-section .msme-list-box {
padding: 20px;
margin: 0 0 20px 0;
}
.inner-page-banner.msme-list-banner {
margin-bottom: -80px;
padding-bottom: 60px;
}
}
@media (max-width: 1199px) {
.msme-list-box .list-content {
padding: 0 20px 0 0;
position: relative;
}
}
@media (max-width: 991px) {
.msme-list-box .list-content {
padding: 0;
margin: 20px 0 0 0;
}
.msme-list-box .list-content:after {
display: none;
}
.msme-list-box .rating .rating-box {
margin: 0 auto 15px;
}
.msme-list-box .rating .rating-box img {
max-width: 100px;
}
}
@media (max-width: 767px) {
.inner-page-banner.msme-list-banner {
margin-bottom: 20px;
padding-bottom: 0;
}
/* .msme-list-section .msme-list-box .alpha-logo {
padding: 10px;
} */
.msme-list-form .search-field {
margin: 0 0 15px 0;
}
.msme-form .search-field,
.select-field {
position: relative;
margin: 0 0 15px 0;
}
.list-content .linkbox .social-media {
padding: 0;
position: relative;
margin: 15px 0 0 0;
width: 100%;
}
.list-content .linkbox .social-media::before {
display: none;
}
.list-content .linkbox .social-media a:first-child {
margin-left: 0;
}
.search-field .field-suffix img,
.select-field .field-suffix img {
max-width: 17px;
}
}
@media (max-width: 575px) {
.list-content .linkbox .social-media {
margin: 0;
}
.list-content .linkbox .icon-with-text {
padding: 0;
width: 100%;
margin: 0 0 15px 0;
}
}

114
public/css/frontend/msme-list.css vendored Normal file
View File

@@ -0,0 +1,114 @@
.inner-page-banner.msme-list-banner {
margin-bottom: -100px;
padding-bottom: 80px;
}
.msme-list-form .search-field {
margin: 0 0 30px 0;
}
.msme-list-form .msme-form-button {
width: 100%;
}
.msme-list-section .list-title {
margin: 0 0 20px 0;
}
.msme-list-section .msme-list-box {
border-radius: 25px;
padding: 30px;
margin: 0 0 30px 0;
}
.msme-list-section .msme-list-box .alpha-logo {
/* border-radius: 15px; */
border: 2px solid #ececec;
/* padding: 20px; */
text-align: center;
}
.msme-list-section .msme-list-box .alpha-logo img {
max-width: 70%;
max-height: 80%;
}
.msme-list-box .list-content {
padding: 0 60px 0 0;
position: relative;
}
.msme-list-box .list-content:after {
position: absolute;
content: "";
right: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 157px;
background-color: #ececec;
}
.msme-list-box .list-content .title {
margin: 0 0 5px 0;
}
.msme-list-box .list-content .subtitle {
margin: 0 0 10px 0;
}
.list-content .description {
margin: 0 0 25px 0;
}
.list-content .linkbox .icon-with-text img {
margin: 0 10px 0 0;
}
.list-content .linkbox .icon-with-text {
padding: 0 15px 0 0;
}
.list-content .linkbox .icon-with-text:last-child {
color: red;
}
.list-content .linkbox .social-media {
padding: 0 0 0 10px;
position: relative;
}
.list-content .linkbox .social-media::before {
position: absolute;
content: "";
left: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 47px;
background-color: #ececec;
}
.list-content .linkbox .social-media a {
margin: 0 10px;
}
.msme-list-box .rating {
text-align: center;
}
.msme-list-box .rating .rating-box {
position: relative;
margin: 0 auto 25px;
}
.msme-list-box .rating .rating-box .rating-number {
position: absolute;
top: 43%;
left: 50%;
transform: translate(-50%, -50%);
}
.msme-list-section .load-more-list button {
min-width: 210px;
}

0
public/css/frontend/msme-media.css vendored Normal file
View File

View File

@@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.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;touch-action:manipulation;-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;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.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{-ms-touch-action:pan-y;touch-action:pan-y;-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 .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.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%}

View File

@@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

2731
public/css/frontend/style.css vendored Normal file

File diff suppressed because it is too large Load Diff

263
public/css/frontend/tender-details.css vendored Normal file
View File

@@ -0,0 +1,263 @@
.tender-banner-section .inner-banner-content .banner-content .subtitle-text {
margin-bottom: 130px;
}
.how-to-apply-section {
padding: 0 0 40px;
}
.how-to-apply-section .left-apply-section .section-title {
margin-bottom: 10px;
}
.how-to-apply-section .left-apply-section p {
margin-bottom: 20px;
}
.how-to-apply-section .right-apply-section {
padding-top: 20px;
}
.companies-list-section {
padding: 0 0 70px 0;
}
.companies-list-section .section-title {
margin: 0 0 25px 0;
}
.companies-list-section .subtitle-text {
margin: 0 auto 95px;
max-width: 850px;
}
.tender-section .section-title-wrapper > * {
flex: 1;
}
.tender-section .section-title-wrapper a i {
margin-left: 5px;
}
.tender-section {
padding: 50px 0 0 0;
}
.companies-accordian .accordion-item {
margin: 0 0 30px 0;
border: 1px solid #d3d3d3;
border-radius: 15px;
}
.companies-accordian .accordion-item:last-child {
margin: 0 0 0 0;
}
.companies-accordian .accordion-body {
padding: 30px;
border-top: 1px solid #d3d3d3;
}
.companies-accordian .accordion-body .common-unordered-list {
margin: 35px 0;
}
.companies-accordian .accordion-button {
background-color: transparent;
padding: 30px;
box-shadow: none;
}
.companies-accordian .accordion-button .image-box {
width: 120px;
height: 120px;
margin: 0 30px 0 0;
padding: 10px;
align-self: flex-start;
border: 1px solid #d3d3d3;
border-radius: 10px;
}
.companies-accordian .accordion-button::after {
background-image: none;
font-family: "Font Awesome 5 Free";
content: "\f078";
font-size: 20px;
transform: rotate(0deg);
color: #038cb7;
}
.companies-accordian .accordion-button:not(.collapsed)::after {
content: "\f077";
}
.companies-accordian .accordion-button .image-box img {
max-width: 100%;
}
.companies-accordian .accordion-button .right-content {
max-width: calc(100% - 170px);
padding-right: 60px;
}
.companies-accordian .right-content-title {
margin: 0 0 20px 0;
}
.companies-accordian .right-content-title {
margin: 0 0 20px 0;
}
.companies-accordian .accordion-body .body-title {
margin: 0 0 20px 0;
}
.companies-accordian .accordion-body .body-description {
margin: 0 0 15px 0;
}
.companies-accordian .step-box {
margin: 40px 0 0 0;
}
.companies-accordian .step .number {
height: 85px;
width: 85px;
margin: 0 auto 20px;
background-color: #00c8f4;
border-radius: 50%;
}
.companies-accordian .step {
max-width: 270px;
margin: auto;
}
.companies-accordian .step .step-title {
margin: 0 0 5px 0;
}
.companies-accordian .step a {
word-break: break-all;
}
@media (max-width: 1399px) {
.companies-list-section {
padding: 0 0 50px 0;
}
.companies-list-section .subtitle-text {
margin: 0 auto 45px;
}
.companies-accordian .accordion-body .common-unordered-list {
margin: 20px 0;
}
.companies-accordian .accordion-button {
padding: 20px;
}
.companies-accordian .right-content-title {
margin: 0 0 10px 0;
}
.companies-accordian .accordion-button .image-box {
margin: 0 20px 0 0;
}
.companies-accordian .accordion-button .right-content {
padding-right: 0;
}
.companies-accordian .accordion-body {
padding: 20px;
}
.companies-accordian .accordion-body .body-title {
margin: 0 0 10px 0;
}
.companies-accordian .accordion-body .body-description {
margin: 0 0 10px 0;
}
.companies-accordian .step-box {
margin: 30px 0 0 0;
}
}
@media (max-width: 1199px) {
.companies-list-section {
padding: 0 0 40px 0;
}
.companies-list-section .section-title {
margin: 0 0 15px 0;
}
.companies-accordian .accordion-body .common-unordered-list {
margin: 15px 0;
}
.companies-list-section .subtitle-text {
margin: 0 auto 35px;
}
.companies-accordian .step .number {
height: 75px;
width: 75px;
margin: 0 auto 15px;
}
.tender-section {
padding: 40px 0 0 0;
}
}
@media (max-width: 991px) {
.tender-section .section-title-wrapper > * {
flex: auto;
}
.tender-section .section-title-wrapper .blank-space {
display: none;
}
.companies-accordian .step-box {
margin: 20px 0 0 0;
}
}
@media (max-width: 767px) {
.tender-section {
padding: 30px 0 0 0;
}
.companies-list-section {
padding: 0 0 30px 0;
}
.companies-accordian .accordion-body .common-unordered-list {
margin: 10px 0;
}
.companies-list-section .subtitle-text {
margin: 0 auto 25px;
}
.companies-accordian .accordion-button {
padding: 20px;
flex-wrap: wrap;
}
.companies-accordian .accordion-button .image-box {
margin: 0 0 10px 0;
}
.companies-accordian .accordion-button .right-content {
max-width: 100%;
}
.companies-accordian .accordion-button::after {
position: absolute;
top: 20px;
right: 15px;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
border-radius: 50%;
background-color: #038cb7;
color: #fff;
}
.companies-accordian .step-box {
margin: 0;
}
.companies-accordian .step {
max-width: 100%;
margin: 20px auto 0;
}
}
@media (max-width: 575px) {
.tender-section .section-title-wrapper a {
margin: 10px 0 0 0;
}
}

185
public/css/frontend/tender-listing.css vendored Normal file
View File

@@ -0,0 +1,185 @@
.tender-list-section .section-title {
margin: 0 0 40px 0;
}
.tender-table-wrapper {
padding: 50px 0;
}
.tender-table {
overflow-x: auto;
}
.tender-table table {
overflow: hidden;
border-radius: 15px;
max-width: calc(100% - 2px);
margin: 0 auto;
min-width: 1115px;
border-collapse: separate;
border-spacing: 0;
}
.tender-table table thead th:first-child {
border-top-left-radius: 15px;
}
.tender-table table thead th:last-child {
border-top-right-radius: 15px;
border-right: none;
}
.tender-table table tbody tr:last-child th:first-child {
border-bottom-left-radius: 15px;
}
.tender-table table tbody tr:last-child td:last-child {
border-bottom-right-radius: 15px;
}
.tender-table table thead th {
font-weight: 400;
padding: 20px;
border: 1px solid #d3d3d3;
border-left: none;
border-top: none;
}
.tender-table table tbody th,
.tender-table table tbody td {
padding: 20px;
border: 1px solid #d3d3d3;
}
.tender-table table tbody td a i {
margin: 0 5px 0 0;
}
.tender-table table tbody th {
border-top: none;
}
.tender-table table tbody td {
border-left: none;
border-top: none;
}
.tender-table table thead th.number {
width: 110px;
}
.tender-table table thead th.link {
width: 110px;
}
.tender-table table thead th.date {
width: 170px;
}
.tender-table table thead th.company {
width: 240px;
}
.tender-table table tbody td.description span {
margin: 0 0 15px 0;
display: block;
}
.tender-table-pagination {
margin: 50px 0 0 0;
}
.tender-table-pagination .pagination a {
height: 50px;
width: 50px;
margin: 0 0 0 10px;
border-radius: 50%;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
-o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
-ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1399px) {
.tender-list-section .section-title {
margin: 0 0 30px 0;
}
.tender-table-wrapper {
padding: 40px 0;
}
.tender-table table thead th {
padding: 15px;
}
.tender-table table tbody th,
.tender-table table tbody td {
padding: 15px;
}
.tender-table table tbody td.description span {
margin: 0 0 10px 0;
}
.tender-table-pagination {
margin: 40px 0 0 0;
}
}
@media (max-width: 991px) {
.tender-list-section .section-title {
margin: 0 0 20px 0;
}
.tender-table-wrapper {
padding: 30px 0;
}
.tender-table table thead th {
padding: 10px;
}
.tender-table table tbody th,
.tender-table table tbody td {
padding: 10px;
}
.tender-table-pagination {
margin: 30px 0 0 0;
}
.tender-table-pagination .pagination a {
height: 40px;
width: 40px;
}
}
@media (max-width: 767px) {
.tender-table-pagination .pagination {
width: 100%;
margin: 15px 0 0 0;
}
.tender-table-pagination .pagination a {
height: 35px;
width: 35px;
margin: 0 10px 0 0;
}
.tender-table table thead th.number {
width: 70px;
}
.tender-table table thead th.link {
width: 80px;
}
}
@media (max-width: 340px) {
.tender-table-pagination .pagination a {
height: 30px;
width: 30px;
}
}

250
public/css/frontend/typography.css vendored Normal file
View File

@@ -0,0 +1,250 @@
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin-bottom: 0;
}
/* Font size css */
.fs-65 {
font-size: 65px;
line-height: 72px;
}
.fs-45 {
font-size: 45px;
line-height: 54px;
}
.fs-38 {
font-size: 38px;
line-height: 52px;
}
.fs-32 {
font-size: 32px;
line-height: 43px;
}
.fs-30 {
font-size: 30px;
line-height: 40px;
}
.fs-28 {
font-size: 28px;
line-height: 36px;
}
.fs-24 {
font-size: 24px;
line-height: 32px;
}
.fs-20 {
font-size: 20px;
line-height: 30px;
}
.fs-18 {
font-size: 18px;
line-height: 25px;
}
.fs-16 {
font-size: 16px;
line-height: 20px;
}
/** Font weight css **/
.fw-light {
font-family: 'SF Pro Display';
font-weight: 300;
}
.fw-thin {
font-family: 'SF Pro Display';
font-weight: 100;
}
.fw-normal {
font-family: 'SF Pro Display';
font-weight: normal;
}
.fw-medium {
font-family: 'SF Pro Display';
font-weight: 500;
}
.fw-semibold {
font-family: 'SF Pro Display';
font-weight: 600;
}
.fw-bold {
font-family: 'SF Pro Display';
font-weight: bold;
}
.fw-black {
font-family: 'SF Pro Display';
font-weight: 900;
}
.fw-heavy {
font-family: 'SF Pro Display';
font-weight: 900;
}
/* letter spacing css */
.ls-normal {
letter-spacing: normal;
}
.ls-1 {
letter-spacing: 1px;
}
.ls-2 {
letter-spacing: 2px;
}
@media (max-width: 1399px) {
.fs-65 {
font-size: 60px;
line-height: 70px;
}
.fs-45 {
font-size: 38px;
line-height: 44px;
}
.fs-38 {
font-size: 35px;
line-height: 38px;
}
.fs-32 {
font-size: 30px;
line-height: 40px;
}
.fs-30 {
font-size: 28px;
line-height: 35px;
}
.fs-28 {
font-size: 26px;
line-height: 34px;
}
}
@media (max-width: 1199px) {
.fs-65 {
font-size: 55px;
line-height: 60px;
}
.fs-45 {
font-size: 38px;
line-height: 45px;
}
.fs-38 {
font-size: 34px;
line-height: 40px;
}
.fs-32 {
font-size: 28px;
line-height: 36px;
}
.fs-30 {
font-size: 26px;
line-height: 35px;
}
.fs-28 {
font-size: 24px;
line-height: 30px;
}
.fs-24 {
font-size: 22px;
line-height: 32px;
}
.fs-20 {
font-size: 18px;
line-height: 26px;
}
.fs-18 {
font-size: 16px;
line-height: 20px;
}
.fs-16 {
font-size: 14px;
line-height: 20px;
}
}
@media (max-width: 991px) {
.fs-65 {
font-size: 46px;
line-height: 50px;
}
.fs-45 {
font-size: 35px;
line-height: 38px;
}
.fs-38 {
font-size: 32px;
line-height: 36px;
}
.fs-32 {
font-size: 26px;
line-height: 30px;
}
.fs-30 {
font-size: 24px;
line-height: 28px;
}
.fs-28 {
font-size: 22px;
line-height: 26px;
}
.fs-24 {
font-size: 20px;
line-height: 24px;
}
.fs-20 {
font-size: 16px;
line-height: 20px;
}
.fs-16 {
font-size: 14px;
line-height: 20px;
}
}
@media (max-width: 767px) {
.fs-65 {
font-size: 30px;
line-height: 36px;
}
.fs-45 {
font-size: 24px;
line-height: 27px;
}
.fs-38,
.fs-32,
.fs-30 {
font-size: 22px;
line-height: 26px;
}
.fs-24 {
font-size: 18px;
line-height: 22px;
}
}