added more preview pages and more templates
@@ -0,0 +1,352 @@
|
||||
/*--------------------- Responsive (Start) ---------------------*/
|
||||
@media (max-width: 991px){
|
||||
|
||||
html{
|
||||
font-size: 55%;
|
||||
}
|
||||
|
||||
.header .navbar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header #menu-btn{
|
||||
display: initial;
|
||||
}
|
||||
|
||||
.header .icon-container .btn{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mobile-menu {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
right: 0;
|
||||
left: 0;
|
||||
z-index: 10000;
|
||||
max-height: 80vh;
|
||||
overflow-y: auto;
|
||||
background: var(--black);
|
||||
-webkit-transition: all 0.5s ease-in-out;
|
||||
-moz-transition: all 0.5s ease-in-out;
|
||||
-o-transition: all 0.5s ease-in-out;
|
||||
transition: all 0.5s ease-in-out;
|
||||
-webkit-box-shadow: var(--box-shadow);
|
||||
box-shadow: var(--box-shadow);
|
||||
border-top: 0.2rem solid var(--main-color);
|
||||
border-bottom: 0.2rem solid var(--main-color);
|
||||
padding: 2rem;
|
||||
-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
|
||||
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
|
||||
}
|
||||
|
||||
.mobile-menu.active {
|
||||
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
||||
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
||||
}
|
||||
|
||||
.mobile-navbar{
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.mobile-navbar .nav-link{
|
||||
background: var(--main-color);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mobile-navbar .main-nav-link{
|
||||
color: var(--white);
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
padding: 1.5rem;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.mobile-navbar .main-nav-link a{
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.mobile-navbar .sub-nav-link {
|
||||
background-color: var(--white);
|
||||
padding: 1rem 0;
|
||||
padding-left: 4rem;
|
||||
display: none;
|
||||
-webkit-transition: all 0s;
|
||||
-moz-transition: all 0s;
|
||||
-o-transition: all 0s;
|
||||
transition: all 0s;
|
||||
}
|
||||
|
||||
.mobile-navbar .sub-nav-link a{
|
||||
color: var(--grey);
|
||||
border-bottom: 0.1rem solid rgba(0,0,0,0.2);
|
||||
display: block;
|
||||
padding: 1rem 0rem;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.mobile-navbar .sub-nav-link a:hover{
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.mobile-menu::-webkit-scrollbar{
|
||||
width: 0.8rem;
|
||||
}
|
||||
|
||||
.mobile-menu::-webkit-scrollbar-thumb{
|
||||
border-radius: 1rem;
|
||||
background-color: var(--main-color);
|
||||
}
|
||||
|
||||
.mobile-menu::-webkit-scrollbar-track{
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.blog.grid, .blog.list{
|
||||
-ms-flex-wrap: wrap-reverse;
|
||||
flex-wrap: wrap-reverse;
|
||||
}
|
||||
|
||||
.shop{
|
||||
-ms-flex-wrap: wrap-reverse;
|
||||
flex-wrap: wrap-reverse;
|
||||
}
|
||||
|
||||
.footer .box-container{
|
||||
-ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
|
||||
grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
|
||||
}
|
||||
|
||||
.features .box-container{
|
||||
-ms-grid-columns: (minmax(28rem, 1fr))[auto-fit];
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
}
|
||||
|
||||
.team .box-container{
|
||||
-ms-grid-columns: (minmax(28rem, 1fr))[auto-fit];
|
||||
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 768px){
|
||||
|
||||
section{
|
||||
padding: 3rem 2rem;
|
||||
}
|
||||
|
||||
.header .header-1{
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
.header .header-2{
|
||||
padding: 0rem 2rem;
|
||||
}
|
||||
|
||||
.header .social-contacts{
|
||||
width: 30%;
|
||||
padding: 0.5rem 2rem;
|
||||
}
|
||||
|
||||
.footer .box-container{
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.search-container{
|
||||
right: 1rem;
|
||||
}
|
||||
|
||||
.home-item{
|
||||
height: 75rem;
|
||||
}
|
||||
|
||||
.home-item .content{
|
||||
padding: 10rem 2rem;
|
||||
}
|
||||
|
||||
.awards .box-container{
|
||||
-ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
|
||||
grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
|
||||
}
|
||||
|
||||
.why-us .image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.custom-form .content{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.project-item{
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.gallery .box-container{
|
||||
-ms-grid-columns: 1fr 1fr;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-areas:
|
||||
'gallery-1 gallery-2'
|
||||
'gallery-3 gallery-4'
|
||||
'gallery-5 gallery-6'
|
||||
'gallery-7 gallery-8'
|
||||
'gallery-9 gallery-10';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 450px){
|
||||
|
||||
html{
|
||||
font-size: 50%;
|
||||
}
|
||||
|
||||
section{
|
||||
padding: 3rem 1rem;
|
||||
}
|
||||
|
||||
.career .career-intro,
|
||||
.career-positions,
|
||||
.career-benefits {
|
||||
padding: 3rem 1rem;
|
||||
}
|
||||
|
||||
.header .header-1{
|
||||
padding-left: 1rem;
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.header .header-2{
|
||||
padding: 0rem 1rem;
|
||||
}
|
||||
|
||||
.header .social-contacts{
|
||||
width: 50%;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
.header .header-contacts{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer .box-container{
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
.home-item{
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.home-item .content{
|
||||
padding: 10rem 1rem;
|
||||
}
|
||||
|
||||
.home-slider .swiper-button-next,
|
||||
.home-slider .swiper-button-prev{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.features{
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.about .sub-image.first{
|
||||
margin-right: 16rem;
|
||||
}
|
||||
|
||||
.why-us .content {
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.form .input-box,
|
||||
.dark-form .input-box{
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.dark-form .input-box .input-field,
|
||||
.dark-form .select{
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1 1 25rem;
|
||||
flex: 1 1 25rem;
|
||||
}
|
||||
|
||||
.team-single .image{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.team-item .team-image{
|
||||
height: 40rem;
|
||||
}
|
||||
|
||||
.gallery .box-container{
|
||||
-ms-grid-columns: 1fr;
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-areas:
|
||||
'gallery-1'
|
||||
'gallery-2'
|
||||
'gallery-3'
|
||||
'gallery-4'
|
||||
'gallery-5'
|
||||
'gallery-6'
|
||||
'gallery-7'
|
||||
'gallery-8'
|
||||
'gallery-9'
|
||||
'gallery-10';
|
||||
}
|
||||
|
||||
.account-form{
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.project-item{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.shop .product-container.list .product-item {
|
||||
gap: 0rem;
|
||||
}
|
||||
|
||||
.shop .product-container.list .product-item .image {
|
||||
width: 30rem;
|
||||
}
|
||||
|
||||
.shop .product-container.list .product-item .content {
|
||||
padding: 1rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.shop .product-container.list .product-item .content p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.product-info .leave-reply{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cart .cart-summary{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
/*--------------------- Responsive (End) ---------------------*/
|
||||
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 258 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 157 KiB |
|
After Width: | Height: | Size: 272 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 163 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 178 KiB |
|
After Width: | Height: | Size: 127 KiB |
|
After Width: | Height: | Size: 259 KiB |
|
After Width: | Height: | Size: 617 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 8.0 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 296 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 274 KiB |
|
After Width: | Height: | Size: 335 KiB |
|
After Width: | Height: | Size: 332 KiB |
|
After Width: | Height: | Size: 410 KiB |
|
After Width: | Height: | Size: 276 KiB |
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 335 KiB |
|
After Width: | Height: | Size: 337 KiB |
|
After Width: | Height: | Size: 412 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 236 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 36 KiB |