first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
.display-3 {
font-size: 4rem;
font-weight: 700;
@media screen and (max-width: 1199px) {
font-size: 3rem;
}
}
.white-color {
color: #ff9301;
}
.h4 {
font-size: 1.5rem;
}
.error-page-wrapper {
background: #1a1a1a;
padding: 80px 0;
height: calc(100vh - 71px) !important;
display: flex;
align-items: center;
.inner {
padding-top: 35px;
img {
max-width: 80%;
}
@media screen and (max-width: 1919px) {
img {
max-width: 330px;
}
}
.display-3 {
font-size: 60px;
@media screen and (max-width: 991px) {
font-size: 40px;
}
}
.h4 {
font-size: 19px;
margin: 15px 0;
line-height: 1.4;
font-weight: 400;
}
}
.h4 {
color: #cbcbcb;
}
}
+549
View File
@@ -0,0 +1,549 @@
@-webkit-keyframes jump {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jump {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes jumpTwo {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jumpTwo {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes jumpThree {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jumpThree {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes rotated {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotated {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes rotatedTwo {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@keyframes rotatedTwo {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@-webkit-keyframes rotatedHalf {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
100% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
}
@keyframes rotatedHalf {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
100% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
}
@-webkit-keyframes rotatedHalfTwo {
0% {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
100% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
@keyframes rotatedHalfTwo {
0% {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
100% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
@-webkit-keyframes scale-upOne {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.85);
transform: scale(0.85);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scale-upOne {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.85);
transform: scale(0.85);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes scale-right {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
50% {
-webkit-transform: translateX(20%);
transform: translateX(20%);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes scale-right {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
50% {
-webkit-transform: translateX(20%);
transform: translateX(20%);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes fade_in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fade-in {
0% {
opacity: 0.7;
}
40% {
opacity: 1;
}
100% {
opacity: 0.7;
}
}
@keyframes fade-in {
0% {
opacity: 0.7;
}
40% {
opacity: 1;
}
100% {
opacity: 0.7;
}
}
@keyframes fade-in-up {
from {
transform: translate3d(0, 40px, 0);
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@-webkit-keyframes fade-in-rev {
0% {
opacity: 1;
}
40% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}
@keyframes fade-in-rev {
0% {
opacity: 1;
}
40% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}
@keyframes hvr-ripple-out {
0% {
top: -5px;
right: -5px;
bottom: -5px;
left: -5px;
}
50% {
top: -15px;
right: -15px;
bottom: -15px;
left: -15px;
opacity: 0.8;
}
100% {
top: -5px;
right: -5px;
bottom: -5px;
left: -5px;
opacity: 1;
}
}
@keyframes hvr-ripple-out-two {
0% {
top: 0;
right: 0;
bottom: 0;
left: 0;
}
100% {
top: -30px;
right: -30px;
bottom: -30px;
left: -30px;
opacity: 0;
}
}
@-webkit-keyframes scale-up-one {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scale-up-one {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes scale-up-two {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
40% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@keyframes scale-up-two {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
40% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@-webkit-keyframes scale-up-three {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(2);
transform: scale(2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scale-up-three {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(2);
transform: scale(2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes jump5p {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jump5p {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes jump5pRsv {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jump5pRsv {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes jump10p {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jump10p {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes jump10pRsv {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes jump10pRsv {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideBottom {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: none;
}
}
+642
View File
@@ -0,0 +1,642 @@
// megamenu custom
.demo-last-unpointer {
.mix {
&:last-child {
.img-meta {
pointer-events: none;
}
}
}
}
// .mega-menu {
// li {
// &:last-child {
// .img-box {
// pointer-events: none;
// }
// }
// }
// }
.fancybox {
cursor: pointer;
}
.mega-menu-wrapper.ecommer-sidebar-wrapper {
.pro-sidebar {
width: 100%;
min-width: 100%;
display: block;
transform: translateY(100px);
.pro-sidebar-inner {
background: transparent;
}
.pro-menu .pro-menu-item,
.pro-menu a {
color: #2b2c2e;
font-family: "Rubik", sans-serif;
&:hover {
> .pro-inner-item:hover {
color: var(--blue-dark);
}
}
> &.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
border-color: #555;
}
&.pro-sub-menu.open > .pro-inner-item {
color: var(--blue-dark);
}
}
.pro-menu {
> ul > .pro-sub-menu > .pro-inner-list-item {
background-color: transparent;
> div > ul {
padding-top: 0;
}
}
.pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item .pro-arrow-wrapper {
display: block;
}
.pro-menu-item > .pro-inner-item:focus {
color: var(--blue-dark);
}
.pro-menu-item.pro-sub-menu {
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
}
}
}
// accordion custom
.accordion .card .card-body {
animation: fade-in-up 0.2s;
}
.accordion .card .card-header button:before {
display: inline-block;
content: "";
height: 10px;
width: 10px;
top: 37px;
margin-right: 12px;
border-bottom: 2px solid currentColor;
border-right: 2px solid currentColor;
transform: rotate(45deg);
}
.accordion .card .card-header .accordion__button[aria-expanded="true"] button::before,
.accordion .card .card-header .accordion__button[aria-selected="true"] button::before {
transform: rotate(-135deg);
}
.color-primary {
color: #40c7ec;
}
// footer
.theme-footer-three {
.bottom-footer-content {
position: relative;
a {
color: var(--blue-light);
&:hover {
text-decoration: underline;
}
}
}
}
.bottom-footer-content {
position: relative;
a {
color: var(--purple-blue);
&:hover {
text-decoration: underline;
}
}
}
// slick as nav for doc landing
.slick-slider.slick-nav-custom {
overflow: hidden;
.slick-slide {
cursor: pointer;
border-top: 4px solid rgba(216, 216, 216, 0.35);
margin-top: 80px;
transition: 0.3s;
@media screen and (max-width: 991px) {
margin-top: 50px;
}
@media screen and (max-width: 767px) {
margin-top: 30px;
}
&.slick-active {
&.slick-current {
border-top-color: #ffd084;
}
}
.block-style-eleven {
transition: 0.3s;
}
&:hover {
.block-style-eleven {
transform: translateY(-4px);
}
}
}
.block-style-eleven {
padding: 0 50px;
@media screen and (max-width: 767px) {
padding: 0 15px;
}
}
}
.slick-nav-none {
.slick-arrow {
display: none !important;
}
}
.clientSliderFour {
.slick-dots {
position: static;
}
}
// slick nav top right
.arrow-top-right {
.slick-arrow {
position: absolute;
top: -156px;
right: 14%;
width: 55px;
height: 55px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
margin-left: 15px;
cursor: pointer;
transition: all 0.3s ease-in-out;
&:hover {
background: #ff2759;
}
&.slick-prev {
left: auto;
right: 18%;
}
}
.slick-prev:before,
.slick-next:before {
font-size: 0;
}
.slick-prev:after,
.slick-next:after {
content: "";
background: url(../images/icon/82.svg) no-repeat;
position: absolute;
z-index: 555;
height: 20px;
width: 16px;
top: 20px;
right: 19px;
}
.slick-next:after {
background: url(../images/icon/83.svg) no-repeat;
right: 17px;
}
}
.arrow-middle-center {
.slick-arrow {
width: 55px;
height: 55px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
cursor: pointer;
transition: all 0.3s ease-in-out;
z-index: 5;
box-shadow: 0 6px 21px #efefef;
&:hover {
background: var(--blue-dark);
&::after {
filter: invert(0);
}
}
}
.slick-prev:before,
.slick-next:before {
font-size: 0;
}
.slick-prev {
left: -80px;
@media screen and (max-width: 1199px) {
left: -27px;
}
@media screen and (max-width: 575px) {
left: 12px;
}
}
.slick-next {
right: -80px;
@media screen and (max-width: 1199px) {
right: -27px;
}
@media screen and (max-width: 575px) {
right: 12px;
}
}
.slick-prev:after,
.slick-next:after {
content: "";
background: url(../images/icon/82.svg) no-repeat;
position: absolute;
z-index: 555;
height: 20px;
width: 16px;
top: 20px;
right: 19px;
filter: invert(1);
transition: 0.3s;
}
.slick-next:after {
background: url(../images/icon/83.svg) no-repeat;
right: 17px;
}
.slick-arrow {
background: #fff;
}
}
// document page sidebar
.accordion-style-two {
&.doc-sidebar-menu {
.card {
.card-body {
padding: 0;
.sub-menu {
padding-bottom: 32px;
}
}
.card-header {
button {
font-family: "gilroy-semibold";
display: block;
position: relative;
line-height: 44px;
font-size: 24px;
color: #2a2a2a;
cursor: pointer;
margin-bottom: 0;
padding: 18px 0;
}
}
}
}
}
.doc-sidebar .mob-header .toggler-menu {
border-radius: 6px;
}
.doc-box,
.doc-banner {
.search-form {
display: none;
}
.doc-links {
margin-top: -18px;
}
}
.doc-sidebar-menu {
.accordion .card .card-header button:before {
height: 8px;
width: 8px;
margin-right: 3px;
}
}
.doc-container .doc-main-body pre {
margin-bottom: 0;
}
.doc-sidebar {
.mob-header {
@media screen and (min-width: 768px) {
display: none;
}
}
}
.search-filter-form select {
@media screen and (max-width: 360px) {
border-left: none !important;
}
}
// terams and conditions
.terms_and_policy {
.sidenav-sticky {
position: sticky;
top: 100px;
}
.tab-content {
> div {
padding-top: 30px;
}
#opt1 {
padding-top: 0;
}
}
}
// mobile menu item focus issue
.dropdown-item:focus,
.dropdown-item:hover {
background-color: transparent;
}
// pricing custom support
.pricing-nav-two-custom {
position: absolute;
width: 100%;
top: -170px;
z-index: 5;
@media screen and (max-width: 991px) {
top: -150px;
}
}
.pricing-section-two-custom {
.fancy-hero-four {
padding-bottom: 430px;
@media screen and (max-width: 991px) {
padding-bottom: 400px;
}
}
}
// team slider
.teamSliderOne {
&.arrow-top-right {
.slick-arrow {
width: 50px;
height: 50px;
top: -80px;
background: #fff;
&::after {
filter: invert(1);
transition: 0.3s;
}
&:hover {
background: var(--blue-light);
&::after {
filter: invert(0);
}
}
}
.slick-next:after {
right: 13px;
top: 18px;
}
.slick-prev:after {
right: 16px;
top: 18px;
}
}
}
// invalid error
.invalid-feedback,
.valid-feedback {
display: block;
text-align: left;
margin-top: 0;
position: absolute;
left: 0;
bottom: -26px;
font-size: 14px;
line-height: 22px;
color: #fff;
padding: 0 15px;
border-radius: 3px;
background: #dc3545;
box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15%);
width: auto;
&::before {
content: "";
font: normal normal normal 14px/1 FontAwesome;
position: absolute;
top: -9px;
left: 16px;
color: rgb(220, 53, 69);
}
}
.valid-feedback {
background: #28a745;
&::before {
color: #28a745;
}
}
.left-side .illustration {
object-fit: cover;
height: 100%;
}
// coming soon logo
.coming-soon-brand {
@media screen and (min-width: 1920px) {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
}
margin-bottom: 15px;
}
// portfolio slider one
.portfolioSliderOne {
.slick-dots {
bottom: -40px;
li button {
&::before {
border-color: #ff2759;
}
&::after {
background: #ff2759;
}
}
}
}
.fancy-portfolio-one .img-meta {
@media screen and (max-width: 767px) {
margin: 0 10px;
}
}
.portfolioSliderOne {
@media screen and (max-width: 1599px) {
&.arrow-top-right .slick-arrow {
right: 6%;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: 11%;
}
}
@media screen and (max-width: 1399px) {
&.arrow-top-right .slick-arrow {
right: 2%;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: 7%;
}
}
@media screen and (max-width: 1199px) {
&.arrow-top-right .slick-arrow {
right: 6%;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: 13%;
}
&.arrow-top-right .slick-arrow {
top: -165px;
}
}
@media screen and (max-width: 991px) {
&.arrow-top-right .slick-arrow {
top: -95px;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: 15%;
}
}
@media screen and (max-width: 767px) {
&.arrow-top-right .slick-arrow {
display: none !important;
}
}
}
.teamSliderOne {
@media screen and (max-width: 1199px) {
&.arrow-top-right .slick-arrow.slick-prev {
right: 19%;
}
}
@media screen and (max-width: 991px) {
&.arrow-top-right .slick-arrow {
top: -75px;
right: 19%;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: 26%;
}
}
@media screen and (max-width: 767px) {
&.arrow-top-right .slick-arrow {
top: -20px;
width: 40px;
height: 40px;
right: auto;
left: 50px;
}
&.arrow-top-right .slick-arrow.slick-prev {
right: auto;
left: 0;
&:after {
right: 11px;
top: 13px;
}
}
&.arrow-top-right .slick-arrow.slick-next {
&:after {
right: 8px;
top: 14px;
}
}
}
@media screen and (max-width: 575px) {
&.arrow-top-right .slick-arrow {
// display: none !important;
}
}
}
// testimonial
.client-feedback-slider-two {
.slick-dots {
bottom: 0;
@media screen and (max-width: 767px) {
bottom: 25px;
}
}
}
.client-feedback-slider-four {
.slick-dots {
@media screen and (max-width: 767px) {
bottom: 15px;
position: relative;
}
}
}
.clientSliderSix {
.slick-dots {
bottom: 0;
@media screen and (max-width: 767px) {
bottom: 15px;
}
}
}
.doc-container.main-page-wrapper {
@media screen and (min-width: 992px) {
overflow: initial;
}
}
.fancy-feature-fifteen {
.react-tabs__tab-panel img {
@media screen and (min-width: 1300px) {
min-height: 685px;
}
@media screen and (max-width: 1299px) {
min-height: 570px;
}
@media screen and (max-width: 991px) {
min-height: 409px;
}
@media screen and (max-width: 767px) {
min-height: 186px;
}
}
}
.app-preview-slider-one {
.slick-dots {
bottom: -50px;
}
}
// hero banner custom
.hero-banner-six {
padding-top: 230px;
}
// portfolio popup
.SRLImage {
border-radius: 20px !important;
}
.css-1o906pp {
border-radius: 4px !important;
}
.portfolio-container .react-tabs__tab-panel--selected {
animation: none !important;
}
.theme-menu-seven {
.landing-menu-onepage .nav-item .nav-link::before {
background: #fff;
}
}
.fancy-text-block-seven.seven {
.counter-info-classic {
margin: 0;
}
}
.credit-card-form.show {
display: block;
}
.react-tabs__tab.react-tabs__tab--selected:focus-visible {
outline: none;
}
+23
View File
@@ -0,0 +1,23 @@
.dark-style {
.logo {
img {
filter: invert(1);
}
}
.mobile-menu {
background: #17192b;
}
.mobile-menu .nav-item .nav-link::before {
background: #fff;
}
}
.dark-style .theme-menu-five .right-widget .demo-button img {
filter: invert(1);
}
.css-111oz6r {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
File diff suppressed because it is too large Load Diff
+398
View File
@@ -0,0 +1,398 @@
/*===== End of search-wrapper ======*/
/*==================================
= navigation =
==================================*/
.navbar .dropdown-menu {
border-radius: 0;
}
.mega-dropdown-holder.dropdown {
position: static;
}
.navbar .navbar-toggler {
float: right;
font-size: 26px;
padding: 5px 8px;
margin: 0;
color: #fff;
background: #2a2a2a;
box-shadow: 0 15px 20px 0px rgba(0, 0, 0, 0.05);
}
/*Menu One*/
.theme-menu-one .navbar .navbar-toggler {
background: var(--blue-dark);
}
/*Menu Two*/
.theme-menu-two .navbar .navbar-toggler {
background: var(--red-light);
}
/*Menu Four*/
.theme-menu-four .navbar .navbar-toggler {
background: var(--vin-red);
}
.navbar .navbar-nav {
font-family: "Rubik", sans-serif;
}
.navbar {
padding: 0;
z-index: 1;
-webkit-transition: 0.3s linear all;
-moz-transition: 0.3s linear all;
-ms-transition: 0.3s linear all;
-o-transition: 0.3s linear all;
transition: 0.3s linear all;
}
.navbar .dropdown-menu .dropdown-item {
font-size: 17px;
line-height: 50px;
text-transform: capitalize;
color: var(--heading);
padding: 0 5px 0 25px;
position: relative;
z-index: 1;
transition: all 0.3s ease-in-out;
white-space: inherit;
}
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-submenu:hover > .dropdown-item {
padding-left: 30px;
background: #f5f5f5;
}
.navbar .dropdown-menu .active{
background: #f5f5f5 !important;
}
.navbar-nav .nav-item .nav-link {
padding: 30px 0;
margin: 0 20px;
display: block;
color: #2b2c2e;
font-size: 18px;
text-transform: capitalize;
position: relative;
transition: all 0.3s ease-in-out;
}
.theme-menu-three .navbar-nav .nav-item .nav-link {
margin: 0 30px;
}
.theme-menu-two .navbar-nav .nav-item .nav-link {
margin: 0 28px;
}
/*.navbar-nav .nav-item .nav-link.dropdown-toggle {margin-right: 22px;}*/
.navbar .dropdown-menu {
border: none;
}
.navbar .navbar-toggler:focus {
outline: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
#mega-menu-holder .dropdown-toggle::after {
content: "\f100";
font-family: Flaticon;
border: none !important;
font-size: 10px;
position: absolute;
right: -15px;
top: 34%;
color: inherit;
}
#mega-menu-holder .dropdown-submenu .dropdown-toggle::after {
content: "+";
font-family: "Roboto", sans-serif;
right: 14px;
top: 0;
line-height: 50px;
font-size: 20px;
transition: all 0.3s ease-in-out;
}
#mega-menu-holder .dropdown-submenu:hover > .dropdown-toggle::after {
transform: rotate(45deg);
}
/*Menu One*/
.theme-menu-one .navbar-nav .nav-item.active .dropdown-toggle:after,
.theme-menu-one .navbar-nav .nav-item:hover > .dropdown-toggle:after,
.theme-menu-one .navbar .dropdown-menu .dropdown-submenu:hover .dropdown-item:after,
.theme-menu-one .navbar .dropdown-menu .dropdown-submenu:hover > .dropdown-item,
.theme-menu-one .navbar-nav .nav-item.active .nav-link,
.theme-menu-one .navbar-nav .nav-item:hover > .nav-link,
.theme-menu-one .navbar .dropdown-menu .dropdown-item:hover {
color: var(--blue-dark) !important;
}
.theme-menu-one .navbar-nav .nav-item .active >{
color: var(--blue-dark) !important;
}
.theme-menu-one .navbar .dropdown-menu .active {
color: var(--blue-dark) !important;
}
/*Menu Two*/
.theme-menu-two .navbar-nav .nav-item.active .dropdown-toggle:after,
.theme-menu-two .navbar-nav .nav-item:hover > .dropdown-toggle:after,
.theme-menu-two .navbar .dropdown-menu .dropdown-submenu:hover .dropdown-item:after,
.theme-menu-two .navbar .dropdown-menu .dropdown-submenu:hover > .dropdown-item,
.theme-menu-two .navbar-nav .nav-item.active .nav-link,
.theme-menu-two .navbar-nav .nav-item:hover > .nav-link,
.theme-menu-two .navbar .dropdown-menu .dropdown-item:hover {
color: var(--red-light);
}
.theme-menu-two .navbar .dropdown-menu .active {
color: var(--red-light) !important;
}
.theme-menu-two .navbar-nav .nav-item .active >{
color: var(--red-light) !important;
}
/*Menu Three*/
.theme-menu-three .navbar-nav .nav-item.active .dropdown-toggle:after,
.theme-menu-three .navbar-nav .nav-item:hover > .dropdown-toggle:after,
.theme-menu-three .navbar .dropdown-menu .dropdown-submenu:hover .dropdown-item:after,
.theme-menu-three .navbar .dropdown-menu .dropdown-submenu:hover > .dropdown-item,
.theme-menu-three .navbar-nav .nav-item.active .nav-link,
.theme-menu-three .navbar-nav .nav-item:hover > .nav-link,
.theme-menu-three .navbar .dropdown-menu .dropdown-item:hover {
color: var(--blue-light);
}
.theme-menu-three .navbar .dropdown-menu .active {
color: var(--blue-light) !important;
}
.theme-menu-three .navbar-nav .nav-item .active {
color: var(--blue-light) !important;
}
/*Menu Four*/
.theme-menu-four .navbar-nav .nav-item.active .dropdown-toggle:after,
.theme-menu-four .navbar-nav .nav-item:hover > .dropdown-toggle:after,
.theme-menu-four .navbar .dropdown-menu .dropdown-submenu:hover .dropdown-item:after,
.theme-menu-four .navbar .dropdown-menu .dropdown-submenu:hover > .dropdown-item,
.theme-menu-four .navbar-nav .nav-item.active .nav-link,
.theme-menu-four .navbar-nav .nav-item:hover > .nav-link,
.theme-menu-four .navbar .dropdown-menu .dropdown-item:hover {
color: var(--vin-red);
}
.theme-menu-four .navbar .dropdown-menu .active {
color: var(--vin-red) !important;
}
.theme-menu-four .navbar-nav .nav-item .active >{
color: var(--vin-red) !important;
}
#mega-menu-holder {
position: static;
}
#mega-menu-holder .position-static .dropdown-menu:before {
display: none;
}
#mega-menu-holder .mega-menu {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
#mega-menu-holder .mega-menu li {
-ms-flex: 0 0 16.666%;
flex: 0 0 16.666%;
max-width: 16.666%;
padding: 10px 10px 0;
}
#mega-menu-holder .mega-menu li span {
display: block;
text-align: center;
font-size: 16px;
color: #000;
margin: 20px 0 20px;
line-height: initial;
}
#mega-menu-holder .mega-menu li .img-box {
padding: 0;
background: #fff;
position: relative;
overflow: hidden;
}
#mega-menu-holder .mega-menu li .img-box {
img {
transition: all 0.4s;
border: 1px solid rgba(0, 0, 0, 0.05);
}
&:hover {
img {
transform: scale(1.05);
}
span {
text-decoration: underline;
}
}
.hover {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
font-size: 24px;
color: #fff;
}
}
/*===== End of navigation ======*/
/*====================================
= media quries =
====================================*/
@media screen and (min-width: 992px) {
.navbar .dropdown-submenu.dropdown {
position: relative;
}
.navbar {
padding-top: 0px;
padding-bottom: 0px;
}
.navbar .dropdown-menu.dropdown-lg {
width: 770px;
padding: 35px 0 20px;
}
.navbar .dropdown-menu.dropdown-lg li {
float: left;
width: 50%;
padding: 0 22px 30px 40px;
}
.navbar .dropdown-menu {
z-index: 5;
background-color: #fff;
border-radius: 0;
display: block;
right: 0;
left: 0;
padding: 8px 0 0;
top: 100%;
visibility: hidden;
transform: scale(1, 0);
opacity: 0;
min-width: 270px;
box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
margin: 0;
transform-origin: 0 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.navbar .dropdown-menu:before {
content: "";
font: normal normal normal 14px/1 FontAwesome;
position: absolute;
font-size: 50px;
left: 17%;
top: -8px;
color: #fff;
line-height: 0;
text-shadow: 0px -7px 10px rgba(137, 139, 142, 0.06);
}
.navbar .dropdown:hover > .dropdown-menu {
opacity: 1;
visibility: visible;
transform: scale(1);
}
.navbar .dropdown-submenu .dropdown-menu {
left: 100%;
top: 0;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
.navbar .dropdown-submenu .dropdown-menu:before {
display: none;
}
.navbar .dropdown-submenu:hover > .dropdown-menu {
opacity: 1;
visibility: visible;
-webkit-transition: 0.3s linear all;
-moz-transition: 0.3s linear all;
-ms-transition: 0.3s linear all;
-o-transition: 0.3s linear all;
transition: 0.3s linear all;
}
}
@media screen and (max-width: 991px) {
#mega-menu-holder {
position: static;
padding: 0;
}
.navbar-collapse {
position: absolute;
top: 100%;
background-color: #ffffff;
left: 0px;
right: 0px;
max-height: 70vh;
overflow-y: auto;
box-shadow: 0px 40px 50px 0px rgba(137, 139, 142, 0.15);
/*border-top:1px solid #F3F3F3;*/
}
.dark-style .navbar-collapse {
background: #17192b;
}
/*Menu Four*/
.theme-menu-four .navbar-collapse {
background: #fbf3ec;
}
.navbar .dropdown-menu {
padding: 0;
margin-top: 0;
}
.navbar .navbar-nav .nav-item .nav-link {
padding: 13px 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
padding: 15px;
font-size: 18px;
border-top: 1px solid #f3f3f3;
margin: 0;
}
.dark-style .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dark-style .navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
border-bottom: 1px solid #f3f3f3;
}
/*Menu Four*/
.theme-menu-four .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
border-top: 1px solid #ececec;
}
.theme-menu-four .navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
border-bottom: 1px solid #ececec;
}
.theme-menu-four .right-button-group,
.theme-menu-one .right-button-group {
margin: 0 auto !important;
padding: 15px 0;
}
#mega-menu-holder .dropdown-toggle::after {
right: 0;
width: 40px;
text-align: center;
top: 0;
line-height: 60px;
}
.navbar .dropdown-submenu.dropdown > .dropdown-item:before {
display: none;
}
.navbar .dropdown-submenu .dropdown-menu .dropdown-item {
padding-left: 40px;
}
.navbar .dropdown-submenu .dropdown-menu {
background: #f9f9f9;
}
.navbar .dropdown-menu .dropdown-item {
background: transparent !important;
}
}
@media screen and (max-width: 767px) {
}
/*===== End of media quries ======*/
+320
View File
@@ -0,0 +1,320 @@
.mobile-menu {
display: none;
}
@media only screen and (max-width: 991px) {
#feature-menu {
display: none;
}
.mobile-menu {
display: block;
position: fixed;
background: #fefefe;
height: 100vh;
top: 0;
left: 0;
padding: 45px 35px;
width: 320px;
box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.15%);
transition: 0.5s;
transform: translateX(-100%);
z-index: 99999;
.navbar-nav {
padding-top: 40px;
}
.mob-header {
position: fixed;
right: 30px;
}
&.menu-open {
transform: translateX(0);
}
.nav-item {
.nav-link {
font-family: "Rubik", sans-serif;
color: #000;
font-size: 18px;
margin: 0;
padding: 0;
margin-bottom: 10px;
transition: all 0.3s ease-out;
position: relative;
&::before {
position: absolute;
content: "";
left: 0;
width: 0;
height: 2px;
background: #000;
-webkit-transition: 0.3s;
transition: 0.3s;
bottom: 0;
}
}
&.active {
.nav-link {
&::before {
width: 100%;
}
}
}
}
}
.mob-header {
margin-left: 15px;
.toggler-menu {
width: 45px;
height: 45px;
position: relative;
left: 10px;
border-radius: 50%;
padding: 0;
background: #2a2a2a;
border: none;
cursor: pointer;
span {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 23px;
height: 2px;
margin: auto;
background: #fff;
color: #fff;
transition: 0.3s;
}
}
.toggler-menu span {
transition: 0.3s;
}
.toggler-menu span:nth-child(1) {
top: -13px;
}
.toggler-menu span:nth-child(2) {
top: 1px;
}
.toggler-menu span:nth-child(3) {
top: auto;
bottom: 14px;
}
.toggler-menu .active span:nth-child(1) {
top: 0px;
transform: rotate(45deg);
}
.toggler-menu .active span:nth-child(2) {
left: 50%;
width: 0px;
}
.toggler-menu .active span:nth-child(3) {
top: 15px;
transform: rotate(-45deg);
}
}
// .mobile-menu .nav-item .nav-link::before {
// background: #fff;
// }
}
// mega menu mobile css
.multi-mob-header {
position: fixed;
right: 15px;
top: 27px;
z-index: 99999;
margin-left: 0;
transition: 0.3s;
}
.mega-mobile-menu {
transition: 0.5s;
transform: translateX(-100%);
overflow: hidden;
&.menu-open {
transform: translateX(0);
}
}
.sticky-menu.fixed .multi-mob-header {
top: 19px;
}
// sidebar css
.mega-menu-wrapper {
.pro-sidebar {
position: fixed;
z-index: 99999;
top: 0;
left: 0;
height: 100%;
width: 350px;
min-width: 350px;
display: none;
@media screen and (max-width: 767px) {
width: 300px;
min-width: 300px;
}
@media screen and (max-width: 991px) {
display: block;
}
}
.pro-sidebar-header {
.logo {
line-height: 1;
}
}
.pro-sidebar > .pro-sidebar-inner {
background: #17192b;
}
.pro-sidebar .pro-menu .pro-menu-item {
font-size: 18px;
color: #efefef;
}
.pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout .pro-sidebar-header {
padding: 45px 20px 30px;
}
.pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item {
background-color: #171937;
}
.pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item .pro-menu-item {
font-size: 15px;
position: relative;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
padding: 5px 30px 5px 15px;
}
.pro-sidebar .pro-menu a {
color: #dedede;
transition: 0.3s;
&:hover {
padding-left: 5px;
color: #ffffff;
}
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item:before {
display: none;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item {
padding: 10px 35px 10px 20px;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item {
color: #ffffff;
}
.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item {
transition: 0.3s;
&:hover {
color: #fff;
}
}
.pro-sidebar .pro-menu {
padding-top: 0;
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
border-color: #fff;
padding: 3.2px;
}
.pro-menu > ul > li {
.pro-item-content {
transition: 0.3s;
}
&:not(:last-child) {
border-bottom: 1px solid rgba(173, 173, 173, 0.2);
}
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu {
border-bottom: 1px solid rgba(173, 173, 173, 0.2);
}
.pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item {
padding-left: 20px;
padding-right: 20px;
}
.pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout ul {
padding-bottom: 12px;
}
}
.plus {
&::before {
content: "";
display: inline-block;
width: 23px;
height: 23px;
background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), #fff;
background-position: center;
background-size: 46% 2px, 2px 46%; /*thickness = 2px, length = 50% (25px)*/
background-repeat: no-repeat;
cursor: pointer;
position: absolute;
right: 12px;
top: 7px;
opacity: 0.9;
}
&.open {
&::before {
background-size: 46% 2px, 0 46%; /*thickness = 2px, length = 50% (25px)*/
}
}
}
.alt {
&::before {
content: "";
background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
background-position: center;
background-size: 50% 2px, 2px 51%; /*thickness = 2px, length = 50% (25px)*/
background-repeat: no-repeat;
}
}
.fix-icon {
font-size: 26px;
color: #fff;
position: absolute;
right: 17px;
top: 17px;
cursor: pointer;
transform: scale(1.35);
}
// one page landing
.landing-menu-onepage {
.nav-item {
.nav-link {
position: relative;
&::before {
position: absolute;
content: "";
left: 0;
width: 0;
height: 2px;
background: #000;
-webkit-transition: 0.3s;
transition: 0.3s;
bottom: 0;
}
}
&.active {
.nav-link {
&::before {
width: 100%;
}
}
}
}
}
.dark-style {
.landing-menu-onepage .nav-item .nav-link::before {
background: #fff;
}
}
+106
View File
@@ -0,0 +1,106 @@
// Modal css\
.custom-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.85);
z-index: 99999;
}
.modal-video {
background-color: rgba(0, 0, 0, 0.85);
}
.custom-modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
overflow: initial;
border-radius: 30px;
outline: none;
.box_inner {
width: 1330px;
overflow-y: auto;
@media (max-width: 1600px) {
width: 1070px;
}
@media (max-width: 1400px) {
width: 900px;
}
@media (max-width: 992px) {
width: 700px;
}
@media (max-width: 768px) {
width: 560px;
}
@media (max-width: 599px) {
width: 460px;
}
@media (max-width: 490px) {
width: 360px;
}
@media (max-width: 420px) {
width: 320px;
}
}
.scrollable {
padding: 50px;
@media (max-width: 767px) {
padding: 30px 15px;
}
}
}
.ReactModal__Overlay {
opacity: 0;
transition: all 0.3s ease;
}
.ReactModal__Overlay--after-open {
opacity: 1;
}
.ReactModal__Overlay--before-close {
opacity: 0;
}
.close-modal {
background: transparent;
border: none;
display: flex;
width: 45px;
height: 45px;
position: absolute;
z-index: 4;
right: -50px;
top: -32px;
@media screen and (max-width: 1199px) {
right: 0px;
top: -60px;
}
@media screen and (max-width: 575px) {
right: -10px;
top: -37px;
}
img {
width: 45px;
height: 45px;
cursor: pointer;
position: absolute;
filter: invert(1);
transition: 0.3s;
@media screen and (max-width: 575px) {
width: 30px;
height: 30px;
}
}
&:hover {
img {
filter: invert(0.8);
}
}
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+197
View File
@@ -0,0 +1,197 @@
.slick-dots {
li {
button {
width: 14px;
height: 14px;
border-radius: 50%;
position: relative;
&::before {
content: "";
font-size: 0;
opacity: 1;
border: 2px solid #ffb043;
width: 100%;
height: 100%;
border-radius: 50%;
transition: 0.3s ease-in-out;
}
&::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
transform: scale(0);
background: #ffb043;
transition: 0.3s ease-in-out;
border-radius: inherit;
z-index: 5;
}
}
&.slick-active {
button {
&::after {
transform: scale(0.5);
}
}
}
}
}
.testimonial-wrapper,
.preview-inner {
.slick-slide > div {
margin: 0 10px;
}
.slick-list {
margin: 0 -10px;
}
}
// slick prev
.client-feedback-slider-three,
.client-feedback-slider-seven,
.client-feedback-slider-one,
.custom-icon-slick-arrow,
.vr-landing-slider {
.slick-next,
.slick-prev {
transition: all 0.3s ease-in-out;
left: 50%;
transform: translateX(-50%);
top: auto;
bottom: -80px;
&::before {
display: none;
}
&::after {
content: "\f103";
font-family: Flaticon;
font-size: 40px;
color: #5d5d5d;
transition: all 0.3s ease-in-out;
display: inline-block;
}
&:hover {
&::after {
transform: rotate(0) scale(1);
}
}
}
.slick-prev {
transform: translateX(-45px);
&::after {
transform: rotate(180deg) scale(0.8);
}
&:hover {
&::after {
transform: rotate(180deg) scale(1);
}
}
}
.slick-next {
transform: translateX(15px);
&::after {
transform: rotate(0) scale(0.8);
}
}
}
.client-feedback-slider-seven {
.slick-next,
.slick-prev {
bottom: -60px;
}
}
.client-feedback-slider-one {
@media screen and (min-width: 992px) {
.slick-next,
.slick-prev {
left: 50px;
transform: translateX(0);
}
.slick-prev {
transform: translateX(-45px);
}
}
}
.survey-slider .slick-arrow,
.slick-arrow-none .slick-arrow {
display: none !important;
}
.clientSliderSeven .slick-arrow {
width: 60px;
height: 60px;
background: #ffd88c;
position: absolute;
bottom: 10%;
left: 50%;
z-index: 1;
top: auto;
&::before {
display: none;
}
&::after {
content: "\f103";
font-family: Flaticon;
font-size: 40px;
color: #5d5d5d;
transition: all 0.3s ease-in-out;
display: inline-block;
margin-top: 18px;
}
&:hover {
&::after {
transform: rotate(0) scale(1);
}
}
&.slick-prev {
transform: translateX(-45px);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-right: 1px solid #efc36f;
&::after {
transform: rotate(180deg) scale(0.8);
}
&:hover {
&::after {
transform: rotate(180deg) scale(0.9);
}
}
}
&.slick-next {
transform: translateX(15px);
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
&::after {
transform: rotate(0) scale(0.8);
}
&:hover {
&::after {
transform: scale(0.9);
}
}
}
}
.vr-landing-slider,
.arrow-left-bottom {
.slick-next,
.slick-prev {
left: -100px;
bottom: 20px;
&:after {
color: #fff;
}
}
.slick-dots {
bottom: -40px;
}
}
File diff suppressed because it is too large Load Diff
+136
View File
@@ -0,0 +1,136 @@
// color: var(--blue-dark);
.hoverPurple{
&:hover{
background: var(--purple-blue) !important;
}
}
body{
.activeMenu{
color: var(--blue-dark) !important;
}
}
.slick-dots{
li{
button{
&::before{
font-size: 0px !important;
width: 18px !important;
height: 18px !important;
opacity: .75 !important;
}
&::after{
left: -0.9px !important;
top: -0.9px !important;
}
}
}
}
.slick-dots {
list-style : none !important;
text-align: center !important;
}
.slick-dots li {
position: relative !important;
display: inline-block !important;
padding: 0 !important;
}
.slick-dots li,.slick-dots li button {
width: 20px !important;
height: 20px !important;
cursor: pointer !important;
}
.slick-dots li button {
font-size: 0 !important;
line-height: 0 !important;
display: block !important;
padding: 5px !important;
color: transparent !important;
border: 0 !important;
outline: none !important;
background: transparent !important;
}
.slick-dots li button:focus,.slick-dots li button:hover {
outline: none !important;
}
.slick-dots li button:focus:before,.slick-dots li button:hover:before {
opacity: 1 !important;
}
.slick-dots li button:before {
font-family: slick !important;
font-size: 0px !important;
line-height: 20px !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 14px !important;
height: 14px !important;
content: "" !important;
text-align: center !important;
opacity: .75 !important;
color: #000 !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}
.slick-dots li.slick-active button:before {
opacity: .75 !important;
color: #000 !important;
}
.slick-dots li button:after {
width: 14px;
height: 14px;
left:-0px!important;
top:0px!important;
}
.slider-customized{
.slick-next{
&:focus{
color: #fff !important;
background-color: #efc36f !important;
}
&:hover{
color: #fff !important;
background-color: #efc36f !important;
}
}
.slick-prev{
&:focus{
color: #fff !important;
background-color: #efc36f !important;
}
&:hover{
color: #fff !important;
background-color: #efc36f !important;
}
}
}
.nav-item{
}
.active-scroll-spy {
&>*{
border-bottom: 2px solid black;
}
}
+291
View File
@@ -0,0 +1,291 @@
.mobileMenu{
padding: 16px 0px;
width: 100%;
display: flex;
flex-direction: column;
height: calc(100vh - 80px);
box-sizing: border-box;
overflow-y: scroll;
margin-top: 10px;
&::-webkit-scrollbar-thumb {
background-color: #17192B !important; /* Change the color as desired */
display: none;
}
&::-webkit-scrollbar {
background-color: #17192B !important; /* Change the color as desired */
display: none;
}
color: #fff;
@media (min-width:991px) {
display: none;
}
.link{
padding: 6px 16px;
font-size: 15px;
transition: 0.3s;
margin: 4px 0px;
transition: 0.5s;
&:focus{
transform: translateX(8px);
color: var(--blue-dark);
}
&:hover{
transform: translateX(8px);
color: var(--blue-dark);
}
}
i{
transition: 0.4;
&.active{
transform: rotate(90deg);
}
}
.submenuOne{
display: flex;
flex-direction: column;
width: 100%;
border-top: 0.3px solid #424040;
// row-gap: 8px;
.title{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 16px;
column-gap: 50px;
cursor: pointer;
span{
font-size: 17px;
font-weight: 400;
}
}
.toggle{
display: flex;
flex-direction: column;
padding: 0px 12px;
max-height: 0px;
overflow: hidden;
opacity: 0;
transition: 0.3s;
background-color: #171937;
transition: 0.4s;
&.active{
max-height:400px ;
opacity: 1;
}
.submenuTwo{
display: flex;
flex-direction: column;
background-color: #171937;
padding: 1px 7px;
border-top: 0.3px solid #504e4e;
.title{
span{
font-size: 16px;
}
// i{
// }
}
.toggle{
display: flex;
flex-direction: column;
padding: 0px 20px;
.link{
margin: 0px 0px;
}
}
}
}
}
}
.mega-menu-wrapper{
transition: 0.4s;
&.not-active{
opacity: 0;
visibility: hidden;
}}
.sidebarMenu{
padding: 16px 0px;
width: 100%;
display: flex;
flex-direction: column;
height: calc(100vh - 80px);
box-sizing: border-box;
overflow-y: scroll;
margin-top: 10px;
.link{
padding: 6px 16px;
font-size: 14px;
transition: 0.3s;
transition: 0.5s;
font-family: "Roboto", sans-serif;
&:hover{
transform: translateX(8px);
}
}
i{
transition: 0.4;
&.active{
transform: rotate(90deg);
}
}
.submenuOne{
display: flex;
flex-direction: column;
width: 100%;
color: black;
border-top: 0.3px solid #ddd8d8;
&:first-child{
border-top: none;
}
// row-gap: 8px;
.title{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 4px 16px;
column-gap: 25px;
font-family: "Roboto", sans-serif;
cursor: pointer;
span{
font-size: 18px;
font-weight: 400;
color: black;
padding: 6px 0px;
}
}
.toggle{
display: flex;
flex-direction: column;
padding: 0px 12px;
max-height: 0px;
overflow: hidden;
opacity: 0;
transition: 0.3s;
transition: 0.4s;
&.active{
max-height:400px ;
opacity: 1;
}
.submenuTwo{
display: flex;
flex-direction: column;
padding: 1px 7px;
border-top: 0.3px solid #ddd8d8;
.title{
span{
font-size: 16px;
padding: 4px 0px;
}
// i{
// }
}
.toggle{
display: flex;
flex-direction: column;
padding: 2px 20px;
.link{
margin: 0px 0px;
}
}
}
}
}
}
.wrapper-two-menu{
opacity: 0;
transform: translateX(-100%);
visibility: hidden;
transition: 0.4s !important;
pointer-events: none;
width: 0px;
overflow: hidden;
&.active{
width: 300px;
pointer-events: all;
transform: translateX(0%);
visibility: visible;
opacity: 1;
}
}
.mega-menu-wrapper{
transition: 0.4s !important;
}