first commit
This commit is contained in:
585
static/assets/css/common/_global.css
Normal file
585
static/assets/css/common/_global.css
Normal file
@ -0,0 +1,585 @@
|
||||
/* --------------- global --------------- */
|
||||
*,
|
||||
* button:focus {
|
||||
outline: 0; }
|
||||
|
||||
html::-webkit-scrollbar {
|
||||
height: 20px;
|
||||
width: 10px;
|
||||
background: #f1f1f1;
|
||||
border-radius: 10px; }
|
||||
|
||||
html::-webkit-scrollbar-thumb {
|
||||
background: #999;
|
||||
-webkit-border-radius: 0;
|
||||
border-radius: 10px; }
|
||||
|
||||
html::-webkit-scrollbar-corner {
|
||||
background: #999;
|
||||
border-radius: 10px; }
|
||||
|
||||
body {
|
||||
font-family: "Inter", sans-serif;
|
||||
text-decoration: none;
|
||||
font-size: 0.9em;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
font-weight: 400;
|
||||
line-height: 1.5; }
|
||||
body.style-6 {
|
||||
padding: 30px 30px 0; }
|
||||
|
||||
.container,
|
||||
.container-fluid {
|
||||
position: relative;
|
||||
z-index: 5; }
|
||||
|
||||
.container, .container-lg, .container-md, .container-sm, .container-xl {
|
||||
max-width: 1170px;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px; }
|
||||
|
||||
.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) {
|
||||
margin-right: -15px;
|
||||
margin-left: -15px; }
|
||||
.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) > * {
|
||||
padding-right: 15px;
|
||||
padding-left: 15px; }
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
line-height: 1.4; }
|
||||
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: 500;
|
||||
margin: 0;
|
||||
line-height: 1.4; }
|
||||
|
||||
body a:hover {
|
||||
text-decoration: none; }
|
||||
|
||||
body a:focus {
|
||||
outline: 0; }
|
||||
|
||||
body ul {
|
||||
list-style-type: none;
|
||||
margin: 0; }
|
||||
|
||||
.btn-default:active,
|
||||
.btn-default:active:focus,
|
||||
.btn-default:active:hover,
|
||||
.btn-default:focus,
|
||||
.btn-default:hover,
|
||||
.btn-primary:not(:disabled):not(.disabled):active:focus,
|
||||
.btn:not(:disabled):not(.disabled).active,
|
||||
.btn:not(:disabled):not(.disabled):active {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.btn:active,
|
||||
.btn:active:focus,
|
||||
.btn:active:hover,
|
||||
.btn:focus,
|
||||
.btn:hover,
|
||||
.btn:not(:disabled):not(.disabled).active,
|
||||
.btn:not(:disabled):not(.disabled):active {
|
||||
-webkit-transition: all 0.6s ease;
|
||||
-moz-transition: all 0.6s ease;
|
||||
-o-transition: all 0.6s ease;
|
||||
transition: all 0.6s ease;
|
||||
outline: 0; }
|
||||
|
||||
a,
|
||||
span,
|
||||
img {
|
||||
display: inline-block;
|
||||
-webkit-transition: all 0.3s ease;
|
||||
-o-transition: all 0.3s ease;
|
||||
transition: all 0.3s ease;
|
||||
color: inherit;
|
||||
text-decoration: none !important; }
|
||||
|
||||
a:hover {
|
||||
color: #999; }
|
||||
|
||||
ul {
|
||||
padding: 0; }
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 100%; }
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
margin: 0; }
|
||||
|
||||
.bi {
|
||||
display: -webkit-inline-box;
|
||||
display: -ms-inline-flexbox;
|
||||
display: inline-flex; }
|
||||
|
||||
.text {
|
||||
font-size: 14px;
|
||||
line-height: 2; }
|
||||
|
||||
.small, small {
|
||||
font-size: 13px;
|
||||
line-height: 1.7;
|
||||
display: inline-block; }
|
||||
|
||||
small.text {
|
||||
font-size: 12px; }
|
||||
|
||||
.text-gray {
|
||||
color: #666; }
|
||||
|
||||
.bg-gray5 {
|
||||
background-color: #f3f7fe; }
|
||||
|
||||
.section-padding {
|
||||
padding: 100px 0; }
|
||||
|
||||
.swiper-pagination {
|
||||
width: 100%;
|
||||
bottom: 0; }
|
||||
|
||||
.pagination_circle .swiper-pagination-bullet {
|
||||
margin: 0 20px;
|
||||
position: relative; }
|
||||
.pagination_circle .swiper-pagination-bullet::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: -10px;
|
||||
top: -10px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
border: 1px solid transparent; }
|
||||
.pagination_circle .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
|
||||
border: 1px solid var(--color-lightBlue); }
|
||||
|
||||
.pagi_dark .swiper-pagination-bullet {
|
||||
background-color: #000; }
|
||||
|
||||
.pagi_white .swiper-pagination-bullet {
|
||||
background-color: #fff; }
|
||||
|
||||
.swiper-pagination-bullet {
|
||||
margin: 0 5px; }
|
||||
|
||||
.swiper-pagination-bullet-active {
|
||||
background-color: var(--color-main);
|
||||
border-radius: 5px; }
|
||||
|
||||
.swiper-button-next:after,
|
||||
.swiper-button-prev:after {
|
||||
color: var(--color-main);
|
||||
font-size: 15px;
|
||||
font-weight: bold; }
|
||||
|
||||
.swiper-button-next,
|
||||
.swiper-button-prev {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 5px;
|
||||
background: #fff; }
|
||||
.swiper-button-next:hover,
|
||||
.swiper-button-prev:hover {
|
||||
background: var(--color-main-grad); }
|
||||
.swiper-button-next:hover::after,
|
||||
.swiper-button-prev:hover::after {
|
||||
color: #fff; }
|
||||
|
||||
.slider-style-6 {
|
||||
position: relative; }
|
||||
.slider-style-6 .swiper-pagination-bullet-active {
|
||||
background-color: var(--color-blue6); }
|
||||
.slider-style-6 .swiper-button-next,
|
||||
.slider-style-6 .swiper-button-prev {
|
||||
border-radius: 50%;
|
||||
width: 45px;
|
||||
height: 45px; }
|
||||
.slider-style-6 .swiper-button-next:hover,
|
||||
.slider-style-6 .swiper-button-prev:hover {
|
||||
background: var(--color-blue6);
|
||||
-webkit-transition: all 0.3s ease;
|
||||
-o-transition: all 0.3s ease;
|
||||
transition: all 0.3s ease; }
|
||||
.slider-style-6 .swiper-button-next, .slider-style-6 .swiper-container-rtl .swiper-button-prev {
|
||||
right: -60px; }
|
||||
.slider-style-6 .swiper-button-prev, .slider-style-6 .swiper-container-rtl .swiper-button-next {
|
||||
left: -60px; }
|
||||
|
||||
/* --------------- dropdown --------------- */
|
||||
.dropdown-toggle::after {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
opacity: 0.8;
|
||||
content: "\f078";
|
||||
font-weight: 900;
|
||||
font-family: "Font Awesome 5 Free";
|
||||
border: 0;
|
||||
font-size: 80%; }
|
||||
|
||||
.dropdown-menu {
|
||||
min-width: 170px;
|
||||
padding: 10px 0;
|
||||
border-radius: 15px;
|
||||
border: 0;
|
||||
-webkit-box-shadow: 0 0 20px #0001;
|
||||
box-shadow: 0 0 20px #0001;
|
||||
top: 100%; }
|
||||
.dropdown-menu .dropdown-item {
|
||||
padding: 5px 20px;
|
||||
font-size: 12px; }
|
||||
|
||||
.form-control:focus {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none; }
|
||||
|
||||
.form-switch .form-check-input {
|
||||
margin: 0 15px !important;
|
||||
width: 2.5em !important;
|
||||
height: 1.3em;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
cursor: pointer; }
|
||||
.form-switch .form-check-input.color-lightBlue:checked {
|
||||
background-color: var(--color-lightBlue);
|
||||
border-color: var(--color-lightBlue);
|
||||
background-image: url(../img/icons/toggle_dot.svg); }
|
||||
|
||||
/* --------------- Start Preloader --------------- */
|
||||
.pace {
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
z-index: 99999999999999;
|
||||
position: fixed;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 400px;
|
||||
border: 0px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
-webkit-transition: all 1s;
|
||||
-o-transition: all 1s;
|
||||
transition: all 1s;
|
||||
pointer-events: none; }
|
||||
|
||||
.pace .pace-progress {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
max-width: 300px;
|
||||
position: fixed;
|
||||
z-index: 99999999999999;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 100%;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: #fff; }
|
||||
|
||||
.pace.pace-inactive {
|
||||
width: 100vw;
|
||||
opacity: 0; }
|
||||
|
||||
.pace.pace-inactive .pace-progress {
|
||||
max-width: 100vw; }
|
||||
|
||||
#preloader {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
z-index: 9999999;
|
||||
pointer-events: none; }
|
||||
|
||||
#preloader:after,
|
||||
#preloader:before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
left: 0;
|
||||
height: 50%;
|
||||
width: 100%;
|
||||
background: -webkit-gradient(linear, left top, right top, from(#0c3df4), to(#02b5ff));
|
||||
background: -webkit-linear-gradient(left, #0c3df4 0%, #02b5ff 100%);
|
||||
background: -o-linear-gradient(left, #0c3df4 0%, #02b5ff 100%);
|
||||
background: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%);
|
||||
-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
|
||||
-o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
|
||||
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
|
||||
|
||||
#preloader:before {
|
||||
top: 0; }
|
||||
|
||||
#preloader:after {
|
||||
bottom: 0; }
|
||||
|
||||
#preloader.isdone {
|
||||
visibility: hidden;
|
||||
-webkit-transition-delay: 1.5s;
|
||||
-o-transition-delay: 1.5s;
|
||||
transition-delay: 1.5s; }
|
||||
|
||||
#preloader.isdone:after,
|
||||
#preloader.isdone:before {
|
||||
height: 0;
|
||||
-webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
|
||||
-o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
|
||||
transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
|
||||
-webkit-transition-delay: 1s;
|
||||
-o-transition-delay: 1s;
|
||||
transition-delay: 1s; }
|
||||
|
||||
.loading {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: calc(50% - 40px);
|
||||
-webkit-transform: translateX(-50%) translateY(-50%);
|
||||
-ms-transform: translateX(-50%) translateY(-50%);
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
font-weight: 300;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 10px;
|
||||
z-index: 9999999999; }
|
||||
|
||||
.loading.isdone {
|
||||
top: 50%;
|
||||
opacity: 0;
|
||||
-webkit-transition: all 0.8s;
|
||||
-o-transition: all 0.8s;
|
||||
transition: all 0.8s;
|
||||
-webkit-transition-delay: 0.5s;
|
||||
-o-transition-delay: 0.5s;
|
||||
transition-delay: 0.5s; }
|
||||
|
||||
.loading span {
|
||||
-webkit-animation: loading 1.4s infinite alternate;
|
||||
animation: loading 1.4s infinite alternate; }
|
||||
|
||||
.loading span:nth-child(1) {
|
||||
-webkit-animation-delay: 0s;
|
||||
animation-delay: 0s; }
|
||||
|
||||
.loading span:nth-child(2) {
|
||||
-webkit-animation-delay: 0.1s;
|
||||
animation-delay: 0.1s; }
|
||||
|
||||
.loading span:nth-child(3) {
|
||||
-webkit-animation-delay: 0.2s;
|
||||
animation-delay: 0.2s; }
|
||||
|
||||
.loading span:nth-child(4) {
|
||||
-webkit-animation-delay: 0.3s;
|
||||
animation-delay: 0.3s; }
|
||||
|
||||
.loading span:nth-child(5) {
|
||||
-webkit-animation-delay: 0.4s;
|
||||
animation-delay: 0.4s; }
|
||||
|
||||
.loading span:nth-child(6) {
|
||||
-webkit-animation-delay: 0.5s;
|
||||
animation-delay: 0.5s; }
|
||||
|
||||
.loading span:nth-child(7) {
|
||||
-webkit-animation-delay: 0.6s;
|
||||
animation-delay: 0.6s; }
|
||||
|
||||
@-webkit-keyframes loading {
|
||||
0% {
|
||||
opacity: 1; }
|
||||
100% {
|
||||
opacity: 0; } }
|
||||
|
||||
@keyframes loading {
|
||||
0% {
|
||||
opacity: 1; }
|
||||
100% {
|
||||
opacity: 0; } }
|
||||
|
||||
/* --------------- End Preloader --------------- */
|
||||
/* --------------- to_top button --------------- */
|
||||
.to_top {
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
bottom: 30px;
|
||||
right: -50px;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
border-radius: 7px;
|
||||
background: var(--color-main-grad);
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
padding: 7px;
|
||||
line-height: 1;
|
||||
opacity: 0;
|
||||
-webkit-transition: all 0.4s ease;
|
||||
-o-transition: all 0.4s ease;
|
||||
transition: all 0.4s ease;
|
||||
-webkit-box-shadow: 0 5px 10px #0002;
|
||||
box-shadow: 0 5px 10px #0002; }
|
||||
.to_top small {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
-webkit-transition: all 0.4s ease;
|
||||
-o-transition: all 0.4s ease;
|
||||
transition: all 0.4s ease; }
|
||||
.to_top i {
|
||||
-webkit-transition: all 0.4s ease;
|
||||
-o-transition: all 0.4s ease;
|
||||
transition: all 0.4s ease; }
|
||||
.to_top.show {
|
||||
right: 30px;
|
||||
opacity: 1; }
|
||||
|
||||
/* --------------- pagination style --------------- */
|
||||
.pagination.style-5 a {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
display: -webkit-inline-box;
|
||||
display: -ms-inline-flexbox;
|
||||
display: inline-flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
min-width: -webkit-max-content;
|
||||
min-width: -moz-max-content;
|
||||
min-width: max-content;
|
||||
border: 1px solid #9993;
|
||||
border-radius: 8px;
|
||||
margin-right: 5px;
|
||||
font-size: 11px;
|
||||
color: #666; }
|
||||
.pagination.style-5 a .text {
|
||||
padding: 3px 10px;
|
||||
font-size: 11px; }
|
||||
|
||||
.pagination.color-5 a:hover {
|
||||
color: var(--color-blue5) !important;
|
||||
border-color: var(--color-blue5); }
|
||||
|
||||
.pagination.color-5 a.active {
|
||||
color: #fff;
|
||||
border-color: var(--color-blue5);
|
||||
background-color: var(--color-blue5); }
|
||||
|
||||
/**
|
||||
* ----------------------------------------
|
||||
* animation rotate-center
|
||||
* ----------------------------------------
|
||||
*/
|
||||
.rotate-center {
|
||||
-webkit-animation: rotate-center 100s linear infinite both;
|
||||
animation: rotate-center 100s linear infinite both; }
|
||||
|
||||
@-webkit-keyframes rotate-center {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0); }
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg); } }
|
||||
|
||||
@keyframes rotate-center {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0); }
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg); } }
|
||||
|
||||
/**
|
||||
* ----------------------------------------
|
||||
* animation slide_up_down
|
||||
* ----------------------------------------
|
||||
*/
|
||||
.slide_up_down {
|
||||
-webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both;
|
||||
animation: slide_up_down 1.7s ease-in-out infinite alternate both; }
|
||||
|
||||
/* ------- */
|
||||
@-webkit-keyframes slide_up_down {
|
||||
0% {
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0); }
|
||||
100% {
|
||||
-webkit-transform: translateY(-20px);
|
||||
transform: translateY(-20px); } }
|
||||
|
||||
@keyframes slide_up_down {
|
||||
0% {
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0); }
|
||||
100% {
|
||||
-webkit-transform: translateY(-20px);
|
||||
transform: translateY(-20px); } }
|
||||
|
||||
/**
|
||||
* ----------------------------------------
|
||||
* animation wave
|
||||
* ----------------------------------------
|
||||
*/
|
||||
.wave {
|
||||
-webkit-animation: wave 2s ease-in-out infinite alternate both;
|
||||
animation: wave 2s ease-in-out infinite alternate both; }
|
||||
|
||||
/* ------- */
|
||||
@-webkit-keyframes wave {
|
||||
0% {
|
||||
-webkit-transform: rotate(1deg);
|
||||
transform: rotate(1deg); }
|
||||
100% {
|
||||
-webkit-transform: rotate(-1deg);
|
||||
transform: rotate(-1deg); } }
|
||||
|
||||
@keyframes wave {
|
||||
0% {
|
||||
-webkit-transform: rotate(1deg);
|
||||
transform: rotate(1deg); }
|
||||
100% {
|
||||
-webkit-transform: rotate(-1deg);
|
||||
transform: rotate(-1deg); } }
|
||||
|
||||
/**
|
||||
* ----------------------------------------
|
||||
* animation scale_up_down
|
||||
* ----------------------------------------
|
||||
*/
|
||||
.scale_up_down {
|
||||
-webkit-animation: scale_up_down 1s ease-in-out infinite alternate both;
|
||||
animation: scale_up_down 1s ease-in-out infinite alternate both; }
|
||||
|
||||
/* ------- */
|
||||
@-webkit-keyframes scale_up_down {
|
||||
0% {
|
||||
-webkit-transform: scale(0.9);
|
||||
transform: scale(0.9); }
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1); } }
|
||||
|
||||
@keyframes scale_up_down {
|
||||
0% {
|
||||
-webkit-transform: scale(0.9);
|
||||
transform: scale(0.9); }
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1); } }
|
||||
536
static/assets/css/common/_responsive.css
Normal file
536
static/assets/css/common/_responsive.css
Normal file
@ -0,0 +1,536 @@
|
||||
/* -------------------- responsive style ------------------------- */
|
||||
@media screen and (max-width: 1100px) {
|
||||
.screenshots.style-4 .screenshots-slider .img {
|
||||
margin: 0 auto;
|
||||
width: 190px; } }
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
.section-padding {
|
||||
padding: 70px 0; }
|
||||
.section-head h2 {
|
||||
font-size: 25px; }
|
||||
.top-navbar.style-1 .top-links {
|
||||
display: none; }
|
||||
.top-navbar.style-1 .r-side {
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
padding: 10px 0; }
|
||||
.navbar.style-1 {
|
||||
border-bottom: 1px solid #9993; }
|
||||
.navbar.style-1 .nav-side {
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap; }
|
||||
.navbar.style-1 .nav-side .hotline {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
border: 0; }
|
||||
.portfolio.style-1 .portfolio-slider .swiper-button-next,
|
||||
.portfolio.style-1 .portfolio-slider .swiper-button-prev {
|
||||
display: none; }
|
||||
header.style-1 .info {
|
||||
margin-bottom: 30px; }
|
||||
header.style-1 .info .text {
|
||||
width: 100%; }
|
||||
.about.style-1 .content {
|
||||
padding: 30px; }
|
||||
.about.style-1 .content .num-item {
|
||||
padding: 15px;
|
||||
border: 1px solid #fff5;
|
||||
margin: 5px 0; }
|
||||
.testimonials.style-1 .content .vid_img {
|
||||
min-height: auto; }
|
||||
.testimonials.style-1 .content .info {
|
||||
padding: 0; }
|
||||
.testimonials.style-1 .content .info::after {
|
||||
display: none; }
|
||||
.choose_us.style-1 .choose-us-img,
|
||||
.choose_us.style-1 .animated_logos,
|
||||
.choose_us.style-1 .choose-us-brands,
|
||||
.choose_us.style-1 .choose-us-bubbles {
|
||||
display: none; }
|
||||
.choose_us.style-1 .info .btn {
|
||||
margin-top: 30px; }
|
||||
.team.style-1 .content .team_box {
|
||||
width: 100%; }
|
||||
.blog.style-1 .blog_slider .swiper-button-next,
|
||||
.blog.style-1 .blog_slider .swiper-button-prev {
|
||||
position: static;
|
||||
margin-top: 40px !important;
|
||||
display: -webkit-inline-box !important;
|
||||
display: -ms-inline-flexbox !important;
|
||||
display: inline-flex !important; }
|
||||
.contact.style-1 .content .contact_info ul {
|
||||
margin: 15px 0; }
|
||||
.contact.style-1 .content .contact_form {
|
||||
margin-top: 30px; }
|
||||
footer.style-1 .links {
|
||||
-webkit-box-pack: start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start; }
|
||||
.navbar.style-2 {
|
||||
padding: 25px 0 !important;
|
||||
position: relative !important;
|
||||
background: var(--color-main-grad); }
|
||||
.navbar.style-2 .navbar-collapse {
|
||||
margin-top: 30px; }
|
||||
.navbar.style-2 .container {
|
||||
border: 0; }
|
||||
.navbar.style-2 .qoute-nav .btn {
|
||||
margin-left: auto;
|
||||
margin-right: 0; }
|
||||
header.style-2 br {
|
||||
display: none; }
|
||||
.section-head h2 {
|
||||
letter-spacing: 3px;
|
||||
margin-bottom: 30px; }
|
||||
.choose_us.style-2 {
|
||||
overflow: hidden; }
|
||||
.choose_us.style-2 .choose-numbers {
|
||||
margin-top: 50px; }
|
||||
.choose_us.style-2 .choose-numbers .num-item {
|
||||
width: 100%;
|
||||
border: 1px solid #fff3;
|
||||
margin: 5px 0;
|
||||
padding: 15px;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap; }
|
||||
.choose_us.style-2 .choose-numbers .num-item br {
|
||||
display: none; }
|
||||
.choose_us.style-2 .choose-numbers .num-item .num {
|
||||
width: 100%;
|
||||
text-align: initial; }
|
||||
.reviews_card.style-2 br {
|
||||
display: none; }
|
||||
.pricing.style-2 {
|
||||
overflow: hidden; }
|
||||
.pricing.style-2 .pricing_card.style-2 {
|
||||
border: 1px solid var(--color-lightBlue) !important;
|
||||
margin: 10px 0 !important;
|
||||
border-radius: 0 !important; }
|
||||
.pricing.style-2 .mt-50 {
|
||||
margin-top: 30px; }
|
||||
.services_projects .service-box {
|
||||
border: 0 !important; }
|
||||
.blog.style-2 {
|
||||
overflow: hidden; }
|
||||
.blog.style-2 .card {
|
||||
padding: 10px;
|
||||
border: 1px solid #fff3 !important; }
|
||||
.blog.style-2 .card h4 {
|
||||
font-size: 1rem !important; }
|
||||
.blog.style-2 .mt-80 {
|
||||
margin-top: 40px; }
|
||||
.contact.style-2 {
|
||||
padding-bottom: 150px; }
|
||||
.contact.style-2 h2 {
|
||||
letter-spacing: 1px; }
|
||||
.contact.style-2 .global_2 {
|
||||
bottom: -120px; }
|
||||
.contact.style-2 .mb-70 {
|
||||
margin-bottom: 30px; }
|
||||
.contact.style-2 .mb-50 {
|
||||
margin-bottom: 20px; }
|
||||
footer.style-2 .foot_links {
|
||||
text-align: initial !important;
|
||||
margin: 30px 0;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap; }
|
||||
footer.style-2 .foot_links a {
|
||||
width: 50%;
|
||||
margin: 10px 0 !important; }
|
||||
footer.style-2 .text-end,
|
||||
footer.style-2 .text-center {
|
||||
text-align: initial !important; }
|
||||
.navbar.style-3 {
|
||||
position: relative !important;
|
||||
background-color: var(--color-blue2);
|
||||
padding: 20px 0; }
|
||||
.navbar.style-3 .navbar-collapse {
|
||||
margin-top: 15px; }
|
||||
header.style-3 {
|
||||
padding: 0 0 30px; }
|
||||
header.style-3 .main-img {
|
||||
display: none; }
|
||||
header.style-3 .content .info .h1 {
|
||||
font-size: 28px; }
|
||||
header.style-3 .content .info .h1 span:before {
|
||||
width: 100px;
|
||||
background-size: 100px; }
|
||||
header.style-3 .content .info .h5 {
|
||||
margin-top: 40px; }
|
||||
.style-3 .testi_lines {
|
||||
width: calc(100% - 30px) !important; }
|
||||
.about.style-3 .img-left {
|
||||
position: relative;
|
||||
top: 0;
|
||||
max-width: 100%;
|
||||
margin: 50px 0; }
|
||||
.about.style-3 .img-left .info-circle {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
outline: 7px solid #fff; }
|
||||
.about.style-3 .img-left .info-circle h2 {
|
||||
font-size: 35px; }
|
||||
.about.style-3 .img-left .info-circle small {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(2) {
|
||||
width: 120px;
|
||||
height: 120px; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(2) h2 {
|
||||
font-size: 30px; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(3) {
|
||||
width: 100px;
|
||||
height: 100px; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(3) h2 {
|
||||
font-size: 25px; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(4) {
|
||||
width: 110px;
|
||||
height: 110px; }
|
||||
.about.style-3 .img-left .info-circle:nth-of-type(4) h2 {
|
||||
font-size: 20px; }
|
||||
.about.style-3 .info .mb-70 {
|
||||
margin-bottom: 30px !important; }
|
||||
.about.style-3 .btm-content {
|
||||
min-height: -webkit-max-content;
|
||||
min-height: -moz-max-content;
|
||||
min-height: max-content; }
|
||||
.about.style-3 .btm-content .mt-60 {
|
||||
margin-top: 30px !important; }
|
||||
.about.style-3 .btm-content .img-right {
|
||||
display: none; }
|
||||
.about.style-3 .top-content {
|
||||
margin-bottom: 30px; }
|
||||
.pricing.style-3 .info {
|
||||
margin-bottom: 50px; }
|
||||
.pricing.style-3 .text.mb-30 {
|
||||
margin-bottom: 15px !important; }
|
||||
.pricing.style-3 .mt-60 {
|
||||
margin-top: 30px !important; }
|
||||
.section-head.style-3 h3 {
|
||||
font-size: 21px; }
|
||||
.blog.style-3 .card .img {
|
||||
height: 150px;
|
||||
margin-bottom: 5px; }
|
||||
.blog.style-3 .v_lines {
|
||||
display: none; }
|
||||
.blog.style-3 .client-logos {
|
||||
margin-top: 30px !important; }
|
||||
.blog.style-3 .client-logos .img {
|
||||
margin: 20px 0; }
|
||||
.chat-banner.style-3 .bttns {
|
||||
margin-top: 60px;
|
||||
text-align: start !important; }
|
||||
footer.style-3 .items {
|
||||
margin-bottom: 50px; }
|
||||
footer.style-3 .items .title {
|
||||
margin-bottom: 20px; }
|
||||
footer.style-3 .foot {
|
||||
margin-top: 0; }
|
||||
footer.style-3 .foot .logo {
|
||||
margin-bottom: 20px; }
|
||||
.fs-10px {
|
||||
font-size: 8px !important; }
|
||||
.navbar.style-4 .navbar-nav .nav-item .nav-link:before {
|
||||
display: none; }
|
||||
.navbar.style-4 {
|
||||
background-color: #f0eff5;
|
||||
padding: 20px 0; }
|
||||
.navbar.style-4 .navbar-collapse {
|
||||
margin-top: 30px; }
|
||||
.style-4 .mb-60 {
|
||||
margin-bottom: 30px !important; }
|
||||
.style-4 .mb-70 {
|
||||
margin-bottom: 40px !important; }
|
||||
.style-4 br {
|
||||
display: none; }
|
||||
header.style-4 {
|
||||
overflow: hidden; }
|
||||
header.style-4 .content .info {
|
||||
margin-bottom: 50px; }
|
||||
header.style-4 .content .info h1 {
|
||||
font-size: 25px;
|
||||
line-height: 40px;
|
||||
margin-bottom: 15px !important; }
|
||||
header.style-4 .content .info .title_small {
|
||||
margin-bottom: 20px !important; }
|
||||
header.style-4 .content .info .mt-100 {
|
||||
margin-top: 50px !important; }
|
||||
header.style-4 .content .info .mt-50 {
|
||||
margin-top: 30px !important; }
|
||||
header.style-4 .content .info br {
|
||||
display: none; }
|
||||
header.style-4 .content .info .small, header.style-4 .content .info small,
|
||||
header.style-4 .content .info .btn {
|
||||
font-size: 10px; }
|
||||
.clients.style-4 .client-logos .img {
|
||||
margin: 20px 0;
|
||||
text-align: center; }
|
||||
.features.style-4 .content {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column; }
|
||||
.features.style-4 .content .features-card {
|
||||
margin: 15px 0; }
|
||||
.about.style-4 .content {
|
||||
padding: 40px 0; }
|
||||
.testimonials.style-4 {
|
||||
overflow: hidden; }
|
||||
.testimonials.style-4 .content .testi-cards .client_card {
|
||||
right: 0 !important;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
margin: 20px 0 !important; }
|
||||
.testimonials.style-4 .content .testi-cards .client_card .user_img {
|
||||
margin-bottom: 30px; }
|
||||
.testimonials.style-4 .content .testi-cards .client_card .inf_content {
|
||||
text-align: center; }
|
||||
.testimonials.style-4 .content .testi-cards .client_card .inf_content br {
|
||||
display: none; }
|
||||
.pricing.style-4 .content .row .col-lg-6:first-of-type .price-card {
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border: 1px solid #e9e8ee;
|
||||
margin-right: 0;
|
||||
margin-bottom: 30px; }
|
||||
.pricing.style-4 .content .row .col-lg-6:nth-of-type(2) .price-card {
|
||||
border-top-left-radius: 15px;
|
||||
border-bottom-left-radius: 15px; }
|
||||
.faq.style-3.style-4 {
|
||||
overflow: hidden; }
|
||||
.faq.style-3.style-4 .col-lg-6:nth-of-type(1) .accordion-item.border-0 {
|
||||
border-bottom: 1px solid #9995 !important; }
|
||||
.community.style-4 .content,
|
||||
.community.style-5 .content {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
border-radius: 20px !important; }
|
||||
.community.style-4 .content .commun-card,
|
||||
.community.style-5 .content .commun-card {
|
||||
width: 100%;
|
||||
-webkit-box-pack: start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: start;
|
||||
padding: 30px !important; }
|
||||
.section-head.style-4 h2 {
|
||||
font-size: 25px; }
|
||||
footer.style-4 {
|
||||
margin-top: 120px; }
|
||||
footer.style-4 .d-flex {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column; }
|
||||
footer.style-4 .d-flex .btn {
|
||||
width: 100%;
|
||||
margin: 10px 0; }
|
||||
footer.style-4 .d-flex .btn.me-4 {
|
||||
margin-right: 0 !important; }
|
||||
footer.style-4 .foot .links {
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
margin: 30px 0; }
|
||||
footer.style-4 .foot .links li {
|
||||
width: 50%;
|
||||
margin: 5px 0; }
|
||||
footer.style-4 .foot .links li a {
|
||||
margin-left: 0; }
|
||||
footer.style-4 .wave {
|
||||
left: 0;
|
||||
width: 100%; }
|
||||
.screenshots.style-4 .screenshots-slider {
|
||||
width: 100%;
|
||||
left: 0; }
|
||||
.screenshots.style-4 .screenshots-slider .img {
|
||||
margin: 0 auto;
|
||||
width: 190px; }
|
||||
footer.style-4 .foot .logo {
|
||||
width: 160px; }
|
||||
.navbar.style-5 {
|
||||
border-bottom: 1px solid #9999; }
|
||||
.navbar.style-5 .navbar-collapse {
|
||||
margin-top: 20px;
|
||||
padding: 15px 0;
|
||||
background: #fff9; }
|
||||
.navbar.style-5 .nav-item .nav-link {
|
||||
padding-left: 0; }
|
||||
.section-head.style-5 h2 {
|
||||
font-size: 30px; }
|
||||
.about.style-5 .content .img {
|
||||
overflow: hidden;
|
||||
margin-bottom: 30px;
|
||||
padding-bottom: 50px; }
|
||||
.about.style-5 .content .img.main-img3 .img-body {
|
||||
max-height: 300px; }
|
||||
.download.style-5 .content h2 {
|
||||
font-size: 28px; }
|
||||
.download.style-5 .content h2 span {
|
||||
padding-bottom: 10px; }
|
||||
.download.style-5 .btn {
|
||||
margin: 10px 0; }
|
||||
.download.style-5 .btn.sm-butn span {
|
||||
font-size: 10px; }
|
||||
footer.style-5 .items {
|
||||
margin-bottom: 50px; }
|
||||
footer.style-5 .items .title {
|
||||
margin-bottom: 20px; }
|
||||
footer.style-5 .foot {
|
||||
margin-top: 0; }
|
||||
footer.style-5 .foot .logo {
|
||||
margin-bottom: 20px; }
|
||||
.style-6 br {
|
||||
display: none; }
|
||||
.navbar.style-6 .container-fluid {
|
||||
padding: 0 20px; }
|
||||
.navbar.style-6 .container-fluid .navbar-collapse {
|
||||
margin-top: 20px; }
|
||||
header.style-6 .content {
|
||||
padding: 100px 0 20px; }
|
||||
header.style-6 .info h1,
|
||||
header.style-6 .info h1 span small {
|
||||
font-size: 30px;
|
||||
line-height: 1.5; }
|
||||
header.style-6 .info .text {
|
||||
margin-top: 20px; }
|
||||
header.style-6 .info .text br {
|
||||
display: none; }
|
||||
header.style-6 .info .form {
|
||||
border-radius: 15px; }
|
||||
header.style-6 .info .form .form-group {
|
||||
width: 100%;
|
||||
margin: 8px 0; }
|
||||
header.style-6 .info .form .btn {
|
||||
width: 100%;
|
||||
margin-top: 15px; }
|
||||
.navbar.style-6 .nav-item .nav-link:after {
|
||||
display: inline-block !important; }
|
||||
header.style-6 {
|
||||
padding: 0; }
|
||||
header.style-6 .content {
|
||||
border-radius: 0; }
|
||||
.section-head.style-6 h2,
|
||||
.section-head.style-6 h2 span small {
|
||||
font-size: 30px; }
|
||||
.about.style-6 {
|
||||
overflow: hidden; }
|
||||
.about.style-6 .info {
|
||||
margin-bottom: 30px; }
|
||||
.service-card.style-6 {
|
||||
margin: 15px; }
|
||||
.section-head.d-flex {
|
||||
display: block !important; }
|
||||
.projects.style-6 {
|
||||
overflow: hidden;
|
||||
padding: 0; }
|
||||
.projects.style-6 .content {
|
||||
border-radius: 0; }
|
||||
.projects.style-6 .content .project-card.style-6 {
|
||||
margin: 0; }
|
||||
.testimonials.style-6 {
|
||||
overflow: hidden; }
|
||||
.choose-us.style-6 {
|
||||
overflow: hidden; }
|
||||
.choose-us.style-6 .info {
|
||||
padding: 0 15px;
|
||||
margin-top: 30px; }
|
||||
.testimonials.style-6 .img {
|
||||
margin-top: 150px; }
|
||||
.clients.style-5 .content .img.img-card {
|
||||
width: 47%; }
|
||||
.number-card.style-6 {
|
||||
margin: 15px 0;
|
||||
border: 0 !important; }
|
||||
.team.style-6 {
|
||||
padding: 0; }
|
||||
.team.style-6 .content {
|
||||
border-radius: 0;
|
||||
padding: 70px 0; }
|
||||
.team.style-6 .content .text-end {
|
||||
text-align: left !important;
|
||||
margin-top: 10px; }
|
||||
.team-card.style-6 .img .social-icons a {
|
||||
-webkit-transform: translateY(0) !important;
|
||||
-ms-transform: translateY(0) !important;
|
||||
transform: translateY(0) !important;
|
||||
opacity: 1; }
|
||||
.blog.style-6 .content {
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap; }
|
||||
.blog.style-6 .content .blog-card {
|
||||
width: 100% !important;
|
||||
margin-bottom: 30px; }
|
||||
.blog.style-6 .content .blog-card:last-of-type {
|
||||
margin: 0; }
|
||||
.blog.style-6 .content .blog-card::after, .blog.style-6 .content .blog-card::before {
|
||||
display: none; }
|
||||
footer.style-6 {
|
||||
padding-top: 40px; }
|
||||
footer.style-6 .items {
|
||||
margin-top: 30px; }
|
||||
footer.style-6 .items .title {
|
||||
margin-bottom: 15px; }
|
||||
footer.style-6 .foot {
|
||||
padding-top: 30px;
|
||||
line-height: 1.8; }
|
||||
footer.style-6 .foot .logo {
|
||||
margin-bottom: 20px; }
|
||||
.blog-page.style-1 .popular-posts .border-end {
|
||||
border: 0 !important; }
|
||||
.about-page header.style-5 .info h1 {
|
||||
font-size: 30px; }
|
||||
.about-page header.style-5 .main-vid {
|
||||
height: 350px; }
|
||||
.about-page .choose-us.style-6 .info {
|
||||
padding: 30px 15px; }
|
||||
.about-page .clients .section-head {
|
||||
padding: 0 15px; }
|
||||
.about-page .culture {
|
||||
padding: 70px 15px; }
|
||||
.contact.style-6 .content .contact_message {
|
||||
right: 0;
|
||||
top: 30px; }
|
||||
.contact-page.style-5 .contact .content .contact_message {
|
||||
right: 0;
|
||||
top: 30px; }
|
||||
.contact-page.style-5 .section-head {
|
||||
margin-bottom: 50px !important; }
|
||||
.contact-page.style-5 .mb-100 {
|
||||
margin-bottom: 70px !important; }
|
||||
.contact-page.style-5 .ltspc-20 {
|
||||
letter-spacing: 3px !important;
|
||||
margin-bottom: 30px !important; }
|
||||
.contact-page.style-5 h4 {
|
||||
font-size: 18px; }
|
||||
.shop-page .filter {
|
||||
margin-bottom: 30px; }
|
||||
.shop-page .products-content .products.list-view .card-width {
|
||||
width: 100%; }
|
||||
.product-page .related-products .related-products-slider .swiper-button-next,
|
||||
.product-page .related-products .related-products-slider .swiper-container-rtl .swiper-button-prev {
|
||||
right: 5px; }
|
||||
.product-page .related-products .related-products-slider .swiper-button-prev,
|
||||
.product-page .related-products .related-products-slider .swiper-container-rtl .swiper-button-next {
|
||||
left: 5px; }
|
||||
.product-page .product-slider {
|
||||
overflow: hidden; }
|
||||
.product-page .product-slider {
|
||||
margin-bottom: 50px; }
|
||||
.product-page .product-slider .gallery-top .swiper-slide .img,
|
||||
.product-page .product-slider .gallery-thumbs {
|
||||
height: 370px; }
|
||||
.product-page .product-details .nav-pills .nav-link {
|
||||
font-size: 18px; }
|
||||
.product-page .product-info .qyt-addCart .add-more {
|
||||
width: 25%; } }
|
||||
|
||||
/* ======== */
|
||||
/* ======= */
|
||||
83
static/assets/css/common/_variable.css
Normal file
83
static/assets/css/common/_variable.css
Normal file
@ -0,0 +1,83 @@
|
||||
/* --------------- variable --------------- */
|
||||
:root {
|
||||
--color-main:#0066ff;
|
||||
--color-primary:#0066ff;
|
||||
--color-secondary:#02b5ff;
|
||||
--color-blue2: #4a00e1;
|
||||
--color-blue4: #5842bc;
|
||||
--color-blue5: #157efb;
|
||||
--color-blue6: #6640f4;
|
||||
--color-lightBlue:#15f1ff;
|
||||
--color-darkBlue:#010049;
|
||||
--color-gray:#eef4f8;
|
||||
--color-main-grad: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%); }
|
||||
|
||||
.color-main {
|
||||
color: var(--color-main); }
|
||||
|
||||
.border-main {
|
||||
border-color: var(--color-main) !important; }
|
||||
|
||||
.bg-main {
|
||||
background-color: var(--color-main);
|
||||
border-color: var(--color-main); }
|
||||
|
||||
.color-lightBlue {
|
||||
color: var(--color-lightBlue); }
|
||||
|
||||
.border-lightBlue {
|
||||
border-color: var(--color-lightBlue) !important; }
|
||||
|
||||
.bg-lightBlue {
|
||||
background-color: var(--color-lightBlue); }
|
||||
|
||||
.color-darkBlue {
|
||||
color: var(--color-darkBlue); }
|
||||
|
||||
.border-darkBlue {
|
||||
border-color: var(--color-darkBlue) !important; }
|
||||
|
||||
.bg-darkBlue {
|
||||
background-color: var(--color-darkBlue); }
|
||||
|
||||
.bg-gradient {
|
||||
background-image: var(--color-main-grad) !important; }
|
||||
|
||||
.bg-gray {
|
||||
background: var(--color-gray) !important; }
|
||||
|
||||
.color-blue2 {
|
||||
color: var(--color-blue2) !important; }
|
||||
|
||||
.bg-blue2 {
|
||||
background-color: var(--color-blue2) !important; }
|
||||
|
||||
.border-blue2 {
|
||||
border-color: var(--color-blue2) !important; }
|
||||
|
||||
.color-blue4 {
|
||||
color: var(--color-blue4) !important; }
|
||||
|
||||
.bg-blue4 {
|
||||
background-color: var(--color-blue4) !important; }
|
||||
|
||||
.border-blue4 {
|
||||
border-color: var(--color-blue4) !important; }
|
||||
|
||||
.color-blue5 {
|
||||
color: var(--color-blue5) !important; }
|
||||
|
||||
.bg-blue5 {
|
||||
background-color: var(--color-blue5) !important; }
|
||||
|
||||
.border-blue5 {
|
||||
border-color: var(--color-blue5) !important; }
|
||||
|
||||
.color-blue6 {
|
||||
color: var(--color-blue6) !important; }
|
||||
|
||||
.bg-blue6 {
|
||||
background-color: var(--color-blue6) !important; }
|
||||
|
||||
.border-blue6 {
|
||||
border-color: var(--color-blue6) !important; }
|
||||
Reference in New Issue
Block a user