first
This commit is contained in:
2
resources/css/sass/default/_all.scss
Normal file
2
resources/css/sass/default/_all.scss
Normal file
@@ -0,0 +1,2 @@
|
||||
@import 'common';
|
||||
@import 'space';
|
||||
770
resources/css/sass/default/_common.scss
Normal file
770
resources/css/sass/default/_common.scss
Normal file
@@ -0,0 +1,770 @@
|
||||
/*------------------------------------------------------------------------
|
||||
|
||||
Template Name: BuildGo - Constructions HTML5 Template
|
||||
Author: ThemeOri
|
||||
Author URI: http://themeori.com
|
||||
Version: 1.0.2
|
||||
Description: This Template is created for web template
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
START TABLE OF CONTENTS
|
||||
--------------------------------------------------------------------------
|
||||
* Color & Google Fonts
|
||||
* Common Css
|
||||
* Form CSS
|
||||
* Hedging CSS
|
||||
* Button CSS
|
||||
* Scroll Top CSS
|
||||
* Preloader CSS
|
||||
* Video Animation CSS
|
||||
* Menu Bar CSS
|
||||
* Menu Bar Sticky CSS
|
||||
* Menu Sidebar CSS
|
||||
* Responsive Menu Sidebar CSS
|
||||
* Banner One CSS
|
||||
* Banner Two CSS
|
||||
* Banner Three CSS
|
||||
* Banner Four CSS
|
||||
* About One CSS
|
||||
* About Two CSS
|
||||
* About Three CSS
|
||||
* About Four CSS
|
||||
* About Five CSS
|
||||
* Company History CSS
|
||||
* Blog One CSS
|
||||
* Blog Two CSS
|
||||
* Blog Three CSS
|
||||
* Blog Four CSS
|
||||
* Blog Standard CSS
|
||||
* Blog Details CSS
|
||||
* All Side Bar
|
||||
* Counter CSS
|
||||
* Process Css
|
||||
* Faq CSS
|
||||
* Request Quote CSS
|
||||
* Contact CSS
|
||||
* Pricing Css
|
||||
* Choose Us Css
|
||||
* Experience CSS
|
||||
* Industry One CSS
|
||||
* Industry Two CSS
|
||||
* Experience CSS
|
||||
* Footer One CSS
|
||||
* Footer Two CSS
|
||||
* Footer Four CSS
|
||||
* Copyright CSS
|
||||
* Cta CSS
|
||||
* Subscribe CSS
|
||||
* Award CSS
|
||||
* Text Slider CSS
|
||||
* Portfolio One Css
|
||||
* Portfolio Two CSS
|
||||
* Portfolio Two CSS
|
||||
* Portfolio Four CSS
|
||||
* Portfolio Four CSS
|
||||
* Portfolio Four CSS
|
||||
* Services One CSS
|
||||
* Services Two CSS
|
||||
* Services Three CSS
|
||||
* Services Four CSS
|
||||
* Services Details CSS
|
||||
* Video CSS
|
||||
* Skill Bar CSS
|
||||
* Team CSS
|
||||
* Testimonial One CSS
|
||||
* Testimonial Two CSS
|
||||
* Breadcrumb CSS
|
||||
* Error CSS
|
||||
* Theme Pagination CSS
|
||||
* Switch Tab CSS
|
||||
* Dark CSS
|
||||
--------------------------------------------------------------------------
|
||||
END TABLE OF CONTENTS
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
/*==========================================================================
|
||||
* Color & Google Fonts
|
||||
==========================================================================*/
|
||||
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
|
||||
|
||||
:root {
|
||||
--body-font: "DM Sans", sans-serif;
|
||||
--heading-font: "Instrument Sans", sans-serif;
|
||||
--body-color: #555855;
|
||||
--text-heading-color: #222222;
|
||||
--text-white: #FFFFFF;
|
||||
--bg-white: #FFFFFF;
|
||||
--primary-color-1: #FFBF43;
|
||||
--color-1: #222222;
|
||||
--color-2: #F8F7F0;
|
||||
--color-3: #EBEBEB;
|
||||
--color-4: #EAB342;
|
||||
--color-5: #4B4A4A;
|
||||
--color-6: #CCCCCC;
|
||||
--color-7: #313131;
|
||||
--color-8: #282828;
|
||||
--border-color-1: #EEEDE8;
|
||||
--border-color-2: #CDD0CD;
|
||||
--border-color-3: #474644;
|
||||
}
|
||||
/*==========================================================================
|
||||
* Common Css
|
||||
==========================================================================*/
|
||||
body {
|
||||
font-family: var(--body-font);
|
||||
color: var(--body-color);
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
font-weight: 400;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
transition: 0.4s;
|
||||
}
|
||||
a {
|
||||
outline: none;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: 0.4s;
|
||||
}
|
||||
a,
|
||||
button,
|
||||
i {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
a:focus,
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
.section-padding {
|
||||
padding: 120px 0px;
|
||||
}
|
||||
.section-padding-two {
|
||||
padding: 120px 0 95px 0;
|
||||
}
|
||||
.section-padding-three {
|
||||
padding: 95px 0 120px 0;
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.section-padding {
|
||||
padding: 100px 0px;
|
||||
}
|
||||
.section-padding-two {
|
||||
padding: 100px 0 75px 0;
|
||||
}
|
||||
.section-padding-three {
|
||||
padding: 75px 0 100px 0;
|
||||
}
|
||||
}
|
||||
.display-none {
|
||||
display: none;
|
||||
}
|
||||
.display-block {
|
||||
display: block;
|
||||
}
|
||||
.img_full {
|
||||
width: 100%;
|
||||
}
|
||||
/*==========================================================================
|
||||
* Form CSS
|
||||
==========================================================================*/
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
background: var(--primary-color-1);
|
||||
border-color: transparent;
|
||||
border-radius: 5px;
|
||||
color: var(--color-1);
|
||||
padding: 17px 40px;
|
||||
}
|
||||
button:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
input[type="submit"]:hover {
|
||||
border-color: transparent;
|
||||
}
|
||||
button:active,
|
||||
button:focus,
|
||||
input[type="button"]:active,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:active,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:active,
|
||||
input[type="submit"]:focus {
|
||||
border-color: transparent;
|
||||
}
|
||||
input[type="text"],
|
||||
input[type="file"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
input[type="range"],
|
||||
input[type="date"],
|
||||
input[type="month"],
|
||||
input[type="week"],
|
||||
input[type="time"],
|
||||
input[type="datetime"],
|
||||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: var(--body-color);
|
||||
border-radius: 6px;
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
background: var(--bg-white);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 0 15px;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
&::placeholder {
|
||||
color: var(--body-color);
|
||||
}
|
||||
}
|
||||
input[type="text"]:focus,
|
||||
input[type="file"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="range"]:focus,
|
||||
input[type="date"]:focus,
|
||||
input[type="month"]:focus,
|
||||
input[type="week"]:focus,
|
||||
input[type="time"]:focus,
|
||||
input[type="datetime"]:focus,
|
||||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: var(--body-color);
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
select {
|
||||
border: 1px solid var(--border-color-1);
|
||||
}
|
||||
textarea {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
button,
|
||||
button:hover,
|
||||
button:focus {
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
outline: none;
|
||||
}
|
||||
/*==========================================================================
|
||||
* Hedging CSS
|
||||
==========================================================================*/
|
||||
$list: (h1, 84px, 94px, 0, 0, var(--text-heading-color), var(--heading-font), 500),
|
||||
(h2, 56px, 66px, 0, 0, var(--text-heading-color), var(--heading-font), 500),
|
||||
(h3, 36px, 46px, 0, 0, var(--text-heading-color), var(--heading-font), 500),
|
||||
(h4, 28px, 38px, 0, 0, var(--text-heading-color), var(--heading-font), 500),
|
||||
(h5, 22px, 32px, 0, 0, var(--text-heading-color), var(--heading-font), 500),
|
||||
(h6, 18px, 28px, 0, 0, var(--text-heading-color), var(--heading-font), 500);
|
||||
@each $name, $size, $height, $p, $m, $color, $font, $weight in $list {
|
||||
#{$name}{
|
||||
font-size: $size;
|
||||
line-height: $height;
|
||||
padding: $p;
|
||||
margin: $m;
|
||||
color: $color;
|
||||
font-family: $font;
|
||||
font-weight: $weight;
|
||||
}
|
||||
}
|
||||
p {
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
color: var(--body-color);
|
||||
font-family: var(--body-font);
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.t-#{$i} {
|
||||
text-align: $i;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
h2 {
|
||||
font-size: 34px;
|
||||
line-height: 44px;
|
||||
}
|
||||
h3 {
|
||||
font-size: 28px;
|
||||
line-height: 38px;
|
||||
}
|
||||
h4 {
|
||||
font-size: 22px;
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Button CSS
|
||||
==========================================================================*/
|
||||
.build_button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
transition: 0.4s;
|
||||
font-family: var(--heading-font);
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
line-height: 26px;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
border-radius: 50px 50px 50px 50px;
|
||||
padding: 8px 8px 8px 30px;
|
||||
gap: 20px;
|
||||
&::before {
|
||||
content: "";
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 100%;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-1);
|
||||
transform-origin: 100% 50%;
|
||||
transform: scale3d(1, 2, 1);
|
||||
transition: transform 0.4s, opacity 0.4s;
|
||||
transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
|
||||
}
|
||||
i {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
transition: 0.4s;
|
||||
color: var(--color-1);
|
||||
background: var(--color-4);
|
||||
font-size: 26px;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50px 50px 50px 50px;
|
||||
}
|
||||
&:hover {
|
||||
color: var(--text-white);
|
||||
i {
|
||||
color: var(--text-white);
|
||||
background: var(--color-5);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
&::before {
|
||||
transform: scale3d(10, 9, 1);
|
||||
transform-origin: 103% 55%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.more_btn {
|
||||
font-family: var(--heading-font);
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
line-height: 26px;
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
display: inline-block;
|
||||
i {
|
||||
position: relative;
|
||||
top: 4px;
|
||||
font-size: 22px;
|
||||
transition: 0.4s;
|
||||
display: inline-flex;
|
||||
gap: 4px;
|
||||
}
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
i {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
.subtitle {
|
||||
color: var(--text-heading-color);
|
||||
font-family: var(--heading-font);
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 15px;
|
||||
padding: 7px 15px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-radius: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.columns_sticky {
|
||||
position: sticky;
|
||||
z-index: 99;
|
||||
height: 100%;
|
||||
top: 120px;
|
||||
}
|
||||
}
|
||||
.card_sticky {
|
||||
position: sticky;
|
||||
z-index: 99;
|
||||
top: var(--card-top);
|
||||
}
|
||||
/*==========================================================================
|
||||
* Scroll Top CSS
|
||||
==========================================================================*/
|
||||
.scroll-up {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
border-radius: 50px;
|
||||
box-shadow: inset 0 0 0 2px var(--color-3);
|
||||
z-index: 10000;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(15px);
|
||||
position: fixed;
|
||||
right: 20px;
|
||||
bottom: 20px;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
transition: all 200ms linear;
|
||||
&::after {
|
||||
position: absolute;
|
||||
font-family: 'Font Awesome 5 Pro';
|
||||
content: "\f176";
|
||||
text-align: center;
|
||||
line-height: 50px;
|
||||
font-size: 24px;
|
||||
color: var(--primary-color-1);
|
||||
left: 0;
|
||||
top: 0;
|
||||
font-size: 20px;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
&.active-scroll {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateY(0);
|
||||
}
|
||||
svg path {
|
||||
fill: none;
|
||||
}
|
||||
svg.scroll-circle path {
|
||||
stroke: var(--primary-color-1);
|
||||
stroke-width: 4;
|
||||
box-sizing:border-box;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Preloader CSS
|
||||
==========================================================================*/
|
||||
.theme-loader {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--color-1);
|
||||
z-index: 9999999999;
|
||||
}
|
||||
.spinner {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
display: flex;
|
||||
}
|
||||
.spinner-bounce {
|
||||
will-change: transform;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
border-radius: 50%;
|
||||
background: var(--primary-color-1);
|
||||
display: inline-block;
|
||||
animation: bounces 1s ease-in-out infinite alternate;
|
||||
transform-origin: 50% 50%;
|
||||
&.one {
|
||||
margin-right: 15px;
|
||||
}
|
||||
&.two {
|
||||
margin-right: 15px;
|
||||
animation-delay: .4s;
|
||||
}
|
||||
&.three {
|
||||
animation-delay: .8s;
|
||||
}
|
||||
}
|
||||
@keyframes bounces {
|
||||
0% {
|
||||
transform: scale(0.8);
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
50% {
|
||||
background: var(--primary-color-2);
|
||||
}
|
||||
100% {
|
||||
transform: scale(.2);
|
||||
background: var(--primary-color-3);
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Video Animation CSS
|
||||
==========================================================================*/
|
||||
.video {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
z-index: 4;
|
||||
a {
|
||||
position: relative;
|
||||
background: var(--primary-color-1);
|
||||
font-size: 20px;
|
||||
z-index: 1;
|
||||
color: var(--color-1);
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.video-pulse::after, .video-pulse::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid var(--bg-white);
|
||||
left: 0;
|
||||
top: 0;
|
||||
border-radius: 50%;
|
||||
animation-duration: 2.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-name: video-animation;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
.video-pulse::before {
|
||||
animation-delay: 1s;
|
||||
}
|
||||
@keyframes video-animation {
|
||||
0% {
|
||||
opacity: 0.5;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.2;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
@keyframes rotate {
|
||||
100% {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
@keyframes rollShape {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(-359deg);
|
||||
}
|
||||
}
|
||||
@keyframes rollIn {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes bounce-y {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@keyframes bounce-x {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
.bounce_y {
|
||||
animation: bounce-y 3s infinite linear;
|
||||
}
|
||||
.bounce_x {
|
||||
animation: bounce-x 2s infinite linear;
|
||||
}
|
||||
.roll_in {
|
||||
animation: rollShape 20s infinite linear;
|
||||
}
|
||||
.h_rotate:hover {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.slider-arrow {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
i {
|
||||
font-size: 24px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
color: var(--text-heading-color);
|
||||
background: var(--bg-white);
|
||||
transition: 0.4s;
|
||||
border: 1px solid var(--border-color-1);
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
.slider-area {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
.slider-arrow {
|
||||
justify-content: space-between;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 100%;
|
||||
transition: 0.4s;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
&-prev {
|
||||
transform: translateX(-80px);
|
||||
transition: 0.4s;
|
||||
}
|
||||
&-next {
|
||||
transform: translateX(80px);
|
||||
transition: 0.4s;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
.slider-arrow {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
&-prev {
|
||||
transform: translateX(-110px);
|
||||
}
|
||||
&-next {
|
||||
transform: translateX(110px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.img_left_animation {
|
||||
animation: left-animation 3000ms forwards cubic-bezier(0.40, 0.98, 0.52, 0.99);
|
||||
opacity: 0
|
||||
}
|
||||
@keyframes left-animation {
|
||||
0% {
|
||||
clip-path: inset(0 100% 0 0);
|
||||
opacity: 0
|
||||
}
|
||||
100% {
|
||||
clip-path: inset(0 0 0 0);
|
||||
opacity: 1
|
||||
}
|
||||
}
|
||||
.img_right_animation {
|
||||
animation: right-animation 3000ms forwards cubic-bezier(0.40, 0.98, 0.52, 0.99);
|
||||
opacity: 0
|
||||
}
|
||||
@keyframes right-animation {
|
||||
0% {
|
||||
clip-path: inset(0 0 0 100%);
|
||||
opacity: 0
|
||||
}
|
||||
100% {
|
||||
clip-path: inset(0 0 0 0);
|
||||
opacity: 1
|
||||
}
|
||||
}
|
||||
.img_top_animation {
|
||||
animation: top-animation 3000ms forwards cubic-bezier(0.40, 0.98, 0.52, 0.99);
|
||||
opacity: 0
|
||||
}
|
||||
@keyframes top-animation {
|
||||
0% {
|
||||
clip-path: inset(0 0 100% 0);
|
||||
opacity: 0
|
||||
}
|
||||
100% {
|
||||
clip-path: inset(0 0 0 0);
|
||||
opacity: 1
|
||||
}
|
||||
}
|
||||
.data_cursor {
|
||||
cursor: none;
|
||||
}
|
||||
.cursor {
|
||||
#cursor-ball {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: var(--color-1);
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
transform: translate(-50%, -50%);
|
||||
pointer-events: none;
|
||||
z-index: 999;
|
||||
transition: width 0.4s ease, height 0.4s ease;
|
||||
}
|
||||
#cursor-text {
|
||||
position: absolute;
|
||||
transform: translate(-50%, -50%);
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
z-index: 999;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
transition: opacity 300ms ease-in-out;
|
||||
color: var(--text-white);
|
||||
font-size: 18px;
|
||||
line-height: 18px;
|
||||
text-align: center;
|
||||
}
|
||||
&.no #cursor-text {
|
||||
background: var(--color-1);
|
||||
padding: 31px 21px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
221
resources/css/sass/default/_space.scss
Normal file
221
resources/css/sass/default/_space.scss
Normal file
@@ -0,0 +1,221 @@
|
||||
.container {
|
||||
max-width: 1345px;
|
||||
}
|
||||
.custom_container {
|
||||
max-width: 1770px;
|
||||
margin: 0 auto;
|
||||
padding: 0 12px;
|
||||
}
|
||||
.row {
|
||||
--bs-gutter-x: 24.8px;
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.t-#{$i} {
|
||||
text-align: $i;
|
||||
}
|
||||
}
|
||||
$list: left, center, end;
|
||||
@each $i in $list {
|
||||
.jc-#{$i} {
|
||||
justify-content: $i;
|
||||
}
|
||||
}
|
||||
$list: start, left, center, end;
|
||||
@each $i in $list {
|
||||
.al-#{$i} {
|
||||
align-items: $i;
|
||||
}
|
||||
}
|
||||
@for $i from 0 to 25 {
|
||||
.mt-#{5 * $i}{
|
||||
margin-top: 5px * $i;
|
||||
}
|
||||
.mb-#{5 * $i}{
|
||||
margin-bottom: 5px * $i;
|
||||
}
|
||||
.ml-#{5 * $i}{
|
||||
margin-left: 5px * $i;
|
||||
}
|
||||
.mr-#{5 * $i}{
|
||||
margin-right: 5px * $i;
|
||||
}
|
||||
.pt-#{5 * $i}{
|
||||
padding-top: 5px * $i;
|
||||
}
|
||||
.pb-#{5 * $i}{
|
||||
padding-bottom: 5px * $i;
|
||||
}
|
||||
.pl-#{5 * $i}{
|
||||
padding-left: 5px * $i;
|
||||
}
|
||||
.pr-#{5 * $i}{
|
||||
padding-right: 5px * $i;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
@for $i from 0 to 20 {
|
||||
.xl-pb-#{5 * $i}{
|
||||
padding-bottom: 5px * $i;
|
||||
}
|
||||
.xl-pl-#{5 * $i}{
|
||||
padding-left: 5px * $i;
|
||||
}
|
||||
.xl-pr-#{5 * $i}{
|
||||
padding-right: 5px * $i;
|
||||
}
|
||||
.xl-mb-#{5 * $i}{
|
||||
margin-bottom: 5px * $i;
|
||||
}
|
||||
.xl-ml-#{5 * $i}{
|
||||
margin-left: 5px * $i;
|
||||
}
|
||||
.xl-mr-#{5 * $i}{
|
||||
margin-right: 5px * $i;
|
||||
}
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.xl-t-#{$i} {
|
||||
text-align: $i !important;
|
||||
}
|
||||
}
|
||||
.xl-display-n {
|
||||
display: none !important;
|
||||
}
|
||||
.xl-display-b {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
@for $i from 0 to 15 {
|
||||
.lg-mb-#{5 * $i}{
|
||||
margin-bottom: 5px * $i;
|
||||
}
|
||||
.lg-mt-#{5 * $i}{
|
||||
margin-top: 5px * $i;
|
||||
}
|
||||
.lg-ml-#{5 * $i}{
|
||||
margin-left: 5px * $i;
|
||||
}
|
||||
.lg-mr-#{5 * $i}{
|
||||
margin-right: 5px * $i;
|
||||
}
|
||||
.lg-pt-#{5 * $i}{
|
||||
padding-top: 5px * $i;
|
||||
}
|
||||
.lg-pb-#{5 * $i}{
|
||||
padding-bottom: 5px * $i;
|
||||
}
|
||||
.lg-pl-#{5 * $i}{
|
||||
padding-left: 5px * $i;
|
||||
}
|
||||
.lg-pr-#{5 * $i}{
|
||||
padding-right: 5px * $i;
|
||||
}
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.lg-t-#{$i} {
|
||||
text-align: $i !important;
|
||||
}
|
||||
}
|
||||
$list: left, center, end, space-between;
|
||||
@each $i in $list {
|
||||
.lg-jc-#{$i} {
|
||||
justify-content: $i !important;
|
||||
}
|
||||
}
|
||||
.lg-display-n {
|
||||
display: none !important;
|
||||
}
|
||||
.lg-display-b {
|
||||
display: block !important;
|
||||
}
|
||||
.lg_img_full {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
@for $i from 0 to 10 {
|
||||
.md-mb-#{5 * $i}{
|
||||
margin-bottom: 5px * $i;
|
||||
}
|
||||
.md-mt-#{5 * $i}{
|
||||
margin-top: 5px * $i;
|
||||
}
|
||||
.md-pt-#{5 * $i}{
|
||||
padding-top: 5px * $i;
|
||||
}
|
||||
.md-pb-#{5 * $i}{
|
||||
padding-bottom: 5px * $i;
|
||||
}
|
||||
.md-pl-#{5 * $i}{
|
||||
padding-left: 5px * $i;
|
||||
}
|
||||
.md-pr-#{5 * $i}{
|
||||
padding-right: 5px * $i;
|
||||
}
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.md-t-#{$i} {
|
||||
text-align: $i !important;
|
||||
}
|
||||
}
|
||||
$list: left, center, end;
|
||||
@each $i in $list {
|
||||
.md-jc-#{$i} {
|
||||
justify-content: $i !important;
|
||||
}
|
||||
}
|
||||
.md-display-n {
|
||||
display: none !important;
|
||||
}
|
||||
.md-display-b {
|
||||
display: block !important;
|
||||
}
|
||||
.md_img_full {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
@for $i from 0 to 12 {
|
||||
.sm-mb-#{5 * $i}{
|
||||
margin-bottom: 5px * $i;
|
||||
}
|
||||
.sm-mt-#{5 * $i}{
|
||||
margin-top: 5px * $i;
|
||||
}
|
||||
.sm-ml-#{5 * $i}{
|
||||
margin-left: 5px * $i;
|
||||
}
|
||||
.sm-pt-#{5 * $i}{
|
||||
padding-top: 5px * $i;
|
||||
}
|
||||
.sm-pb-#{5 * $i}{
|
||||
padding-bottom: 5px * $i;
|
||||
}
|
||||
.sm-pl-#{5 * $i}{
|
||||
padding-left: 5px * $i;
|
||||
}
|
||||
.sm-pr-#{5 * $i}{
|
||||
padding-right: 5px * $i;
|
||||
}
|
||||
}
|
||||
$list: left, center, right;
|
||||
@each $i in $list {
|
||||
.sm-t-#{$i} {
|
||||
text-align: $i !important;
|
||||
}
|
||||
}
|
||||
.sm-display-n {
|
||||
display: none !important;
|
||||
}
|
||||
.sm-display-b {
|
||||
display: block !important;
|
||||
}
|
||||
.sm_img_full {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
381
resources/css/sass/section/_about.scss
Normal file
381
resources/css/sass/section/_about.scss
Normal file
@@ -0,0 +1,381 @@
|
||||
/*==========================================================================
|
||||
* About One CSS
|
||||
==========================================================================*/
|
||||
.about__one {
|
||||
&-left {
|
||||
&-list {
|
||||
&-item {
|
||||
display: flex;
|
||||
align-items: start;
|
||||
gap: 25px;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid var(--border-color-2);
|
||||
i {
|
||||
font-size: 60px;
|
||||
margin-top: 6px;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
&-content {
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-image {
|
||||
position: relative;
|
||||
img {
|
||||
object-fit: cover;
|
||||
height: 335px;
|
||||
filter: brightness(0.6);
|
||||
}
|
||||
.video {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
a {
|
||||
background: #ffffff33;
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* About Two CSS
|
||||
==========================================================================*/
|
||||
.about__two {
|
||||
background: var(--color-1);
|
||||
&-left {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
margin-bottom: 25px;
|
||||
color: var(--text-white);
|
||||
}
|
||||
p {
|
||||
color: var(--color-6);
|
||||
max-width: 450px;
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
img {
|
||||
object-fit: cover;
|
||||
height: 480px;
|
||||
border-radius: 0px 0px 10px 10px;
|
||||
}
|
||||
&-counter {
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
font-size: 56px;
|
||||
line-height: 66px;
|
||||
}
|
||||
p {
|
||||
color: var(--color-6);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* About Three CSS
|
||||
==========================================================================*/
|
||||
.about__three {
|
||||
background: var(--color-2);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&-image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
&-right {
|
||||
background: var(--color-2);
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* About Four CSS
|
||||
==========================================================================*/
|
||||
.about__four {
|
||||
&-title {
|
||||
p {
|
||||
max-width: 460px;
|
||||
}
|
||||
}
|
||||
&-counter {
|
||||
background: var(--color-2);
|
||||
border-radius: 10px;
|
||||
padding: 35px 40px;
|
||||
&-item {
|
||||
padding: 15px 0;
|
||||
.box {
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
}
|
||||
h2 {
|
||||
font-size: 64px;
|
||||
line-height: 64px;
|
||||
}
|
||||
&.borders {
|
||||
border-left: 1px solid var(--border-color-2);
|
||||
border-right: 1px solid var(--border-color-2);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
margin-top: -200px;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* About Five CSS
|
||||
==========================================================================*/
|
||||
.about__five {
|
||||
&-right {
|
||||
.features {
|
||||
background-position: top center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
padding: 50px;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 35px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: linear-gradient(115deg, var(--color-1) 0%, #F2295B00 100%);
|
||||
z-index: -1;
|
||||
}
|
||||
h3 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Company History CSS
|
||||
==========================================================================*/
|
||||
.company__history {
|
||||
&-area {
|
||||
&-item {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
&-inner {
|
||||
border-left: 1px solid var(--border-color-1);
|
||||
padding-left: 120px;
|
||||
&-image {
|
||||
margin: 0 30px;
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
|
||||
background: var(--bg-white);
|
||||
padding: 60px 30px 30px 30px;
|
||||
margin-top: -30px;
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-date {
|
||||
text-align: right;
|
||||
span {
|
||||
background: var(--primary-color-1);
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--color-1);
|
||||
border-radius: 50%;
|
||||
margin-right: -40px;
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
right: -45px;
|
||||
top: 0;
|
||||
background-image: url(../../assets/img/icon/arrow.png);
|
||||
width: 60%;
|
||||
height: 100%;
|
||||
background-repeat: no-repeat;
|
||||
z-index: 9999;
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:nth-child(even) {
|
||||
direction: rtl;
|
||||
margin-right: -2px;
|
||||
.company__history-area-item {
|
||||
&-inner {
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
border-right: 1px solid var(--border-color-1);
|
||||
padding-right: 120px;
|
||||
direction: ltr;
|
||||
}
|
||||
&-date {
|
||||
text-align: left;
|
||||
span {
|
||||
margin-right: 0;
|
||||
margin-left: -40px;
|
||||
&::after {
|
||||
right: initial;
|
||||
left: -45px;
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.about__four-right {
|
||||
margin-top: -136px;
|
||||
height: 330px;
|
||||
img {
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.about__two-right img {
|
||||
height: 380px;
|
||||
}
|
||||
.about__two-left p {
|
||||
max-width: 100%;
|
||||
}
|
||||
.about__three-image {
|
||||
position: inherit;
|
||||
width: 100%;
|
||||
}
|
||||
.about__four-left img {
|
||||
height: 420px;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
.about__four-title p {
|
||||
max-width: 100%;
|
||||
}
|
||||
.about__four-right {
|
||||
margin-top: 0;
|
||||
height: 330px;
|
||||
img {
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
object-position: top center;
|
||||
}
|
||||
}
|
||||
.company__history-area-item {
|
||||
&-inner {
|
||||
padding-left: 65px;
|
||||
&-image {
|
||||
margin: 0 25px;
|
||||
}
|
||||
&-content {
|
||||
background: var(--color-11);
|
||||
padding: 60px 22px 30px 22px;
|
||||
margin-top: -30px;
|
||||
}
|
||||
}
|
||||
&-date span {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin-right: -30px;
|
||||
font-size: 16px;
|
||||
&::after {
|
||||
right: -25px;
|
||||
}
|
||||
}
|
||||
&:nth-child(even) .company__history-area-item {
|
||||
&-inner {
|
||||
padding-right: 65px;
|
||||
}
|
||||
&-date span {
|
||||
margin-left: -30px;
|
||||
&::after {
|
||||
left: -25px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.about__four-counter-item.borders {
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 660px) {
|
||||
.company__history-area {
|
||||
display: grid;
|
||||
gap: 80px;
|
||||
&-item {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 40px;
|
||||
&-inner {
|
||||
padding-left: 0;
|
||||
border: 0;
|
||||
}
|
||||
&-date {
|
||||
text-align: center;
|
||||
span {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin-right: 0;
|
||||
font-size: 16px;
|
||||
&::after {
|
||||
top: 35px;
|
||||
transform: rotate(90deg);
|
||||
right: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:nth-child(even) .company__history-area-item {
|
||||
&-inner {
|
||||
padding-right: 0;
|
||||
border: 0;
|
||||
}
|
||||
&-date {
|
||||
text-align: center;
|
||||
span {
|
||||
margin-left: 0;
|
||||
&::after {
|
||||
top: 35px;
|
||||
transform: rotate(90deg);
|
||||
left: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
232
resources/css/sass/section/_all-sidebar.scss
Normal file
232
resources/css/sass/section/_all-sidebar.scss
Normal file
@@ -0,0 +1,232 @@
|
||||
/*==========================================================================
|
||||
* All Side Bar
|
||||
========================================================================== */
|
||||
.all__sidebar {
|
||||
&-item {
|
||||
padding: 30px 35px 35px 35px;
|
||||
margin-bottom: 25px;
|
||||
background: var(--color-2);
|
||||
border: 1px solid var(--border-color-1);
|
||||
border-radius: 10px;
|
||||
> h4 {
|
||||
position: relative;
|
||||
padding-bottom: 15px;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 1px;
|
||||
width: 70px;
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
&-search {
|
||||
form {
|
||||
display: flex;
|
||||
position: relative;
|
||||
input {
|
||||
background: var(--bg-white);
|
||||
}
|
||||
button {
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-post {
|
||||
.post__item {
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
&-image {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
min-width: 90px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
&-title {
|
||||
h6 {
|
||||
a {
|
||||
color: var(--text-heading-color);
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-size: 13px;
|
||||
line-height: 23px;
|
||||
i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-category {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
margin-bottom: 10px;
|
||||
a {
|
||||
background: var(--bg-white);
|
||||
display: flex;
|
||||
font-family: var(--heading-font);
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
line-height: 32px;
|
||||
padding: 14px 20px;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 5px;
|
||||
color: var(--color-1);
|
||||
i {
|
||||
font-size: 25px;
|
||||
color: var(--text-white);
|
||||
transition: 0.4s;
|
||||
}
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
i {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-tag {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
transition: 0.4s;
|
||||
padding: 4px 18px 5px 18px;
|
||||
display: inline-block;
|
||||
font-size: 15px;
|
||||
line-height: 25px;
|
||||
font-weight: 500;
|
||||
border-radius: 4px;
|
||||
color: var(--text-heading-color);
|
||||
border: 1px solid var(--border-color-1);
|
||||
background: var(--bg-white);
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-help {
|
||||
height: 430px;
|
||||
padding: 35px;
|
||||
border-radius: 10px;
|
||||
h3 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
&-download {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
transition: 0.4s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-family: var(--heading-font);
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
line-height: 32px;
|
||||
margin-bottom: 10px;
|
||||
padding: 14px 20px;
|
||||
border-radius: 6px;
|
||||
justify-content: space-between;
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
span {
|
||||
float: right;
|
||||
font-size: 25px;
|
||||
}
|
||||
}
|
||||
&:last-child a {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1299px) {
|
||||
.all__sidebar {
|
||||
&-item {
|
||||
padding: 40px 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.all__sidebar-item-post-item {
|
||||
gap: 15px;
|
||||
&-content h6 {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
}
|
||||
&-image img {
|
||||
width: 80px;
|
||||
height: 85px;
|
||||
max-width: 80px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.all__sidebar {
|
||||
&-item {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
23
resources/css/sass/section/_all.scss
Normal file
23
resources/css/sass/section/_all.scss
Normal file
@@ -0,0 +1,23 @@
|
||||
@import'header';
|
||||
@import'banner';
|
||||
@import'about';
|
||||
@import'blog';
|
||||
@import'all-sidebar';
|
||||
@import'counter';
|
||||
@import'process';
|
||||
@import'faq';
|
||||
@import'contact';
|
||||
@import'pricing';
|
||||
@import'features';
|
||||
@import'footer';
|
||||
@import'cta';
|
||||
@import'sponsors';
|
||||
@import'portfolio';
|
||||
@import'services';
|
||||
@import'video';
|
||||
@import'skill';
|
||||
@import'team';
|
||||
@import'testimonial';
|
||||
@import'page';
|
||||
@import'switch-tab';
|
||||
@import'dark';
|
||||
544
resources/css/sass/section/_banner.scss
Normal file
544
resources/css/sass/section/_banner.scss
Normal file
@@ -0,0 +1,544 @@
|
||||
/*==========================================================================
|
||||
* Banner One CSS
|
||||
==========================================================================*/
|
||||
.banner__one {
|
||||
background-position: 0px -85px;
|
||||
background-repeat: no-repeat;
|
||||
padding-top: 110px;
|
||||
overflow: hidden;
|
||||
.container {
|
||||
max-width: 1460px;
|
||||
}
|
||||
&-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
h1 {
|
||||
font-size: 130px;
|
||||
line-height: 130px;
|
||||
}
|
||||
&-user {
|
||||
margin-top: 55px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 30px;
|
||||
h5 {
|
||||
font-weight: 400;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
&-award {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 20%;
|
||||
}
|
||||
}
|
||||
&-image {
|
||||
margin-top: -200px;
|
||||
position: relative;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Banner Two CSS
|
||||
==========================================================================*/
|
||||
@keyframes activeBar {
|
||||
0% {width: 0;}
|
||||
100% {width:100%;}
|
||||
}
|
||||
.banner__two {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&-area {
|
||||
padding-bottom: 120px;
|
||||
padding-top: 70px;
|
||||
&-image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--color-1);
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
padding: 170px 0;
|
||||
.subtitle {
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
font-size: 80px;
|
||||
line-height: 90px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 150px;
|
||||
line-height: 160px;
|
||||
color: var(--text-white);
|
||||
letter-spacing: 1.6px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
&-slide {
|
||||
margin-top: -119px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&-area {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&-thumb {
|
||||
width: 100%;
|
||||
&-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 25px;
|
||||
padding: 29px 50px;
|
||||
border-right: 1px solid var(--border-color-1);
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
background: var(--bg-white);
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
width: 33.33% !important;
|
||||
transition: 0.4s;
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 0;
|
||||
height: 4px;
|
||||
background: #D8A743;
|
||||
}
|
||||
img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
min-width: 60px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
}
|
||||
h6 {
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
max-width: 150px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
&:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
&.swiper-slide-thumb-active {
|
||||
background: var(--primary-color-1);
|
||||
&::after {
|
||||
animation-name: activeBar;
|
||||
animation-duration: 4.7s;
|
||||
}
|
||||
h6 {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-arrow {
|
||||
display: flex;
|
||||
margin-left: -1px;
|
||||
width: 140px;
|
||||
.banner_next, .banner_prev {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin-top: 0;
|
||||
}
|
||||
.banner_prev {
|
||||
border-right: 1px solid var(--border-color-1);
|
||||
}
|
||||
&-next,
|
||||
&-prev {
|
||||
display: inline-block;
|
||||
i {
|
||||
font-size: 22px;
|
||||
width: 70px;
|
||||
height: 118.1px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--color-2);
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Banner Three CSS
|
||||
==========================================================================*/
|
||||
.banner__three {
|
||||
padding-top: 110px;
|
||||
overflow: hidden;
|
||||
background: var(--color-1);
|
||||
&-content {
|
||||
h1 {
|
||||
color: var(--text-white);
|
||||
font-size: 110px;
|
||||
line-height: 110px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
img {
|
||||
height: 85px;
|
||||
width: 300px;
|
||||
object-fit: cover;
|
||||
object-position: center center;
|
||||
border-radius: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.slider-arrow i {
|
||||
color: var(--text-white);
|
||||
background: #313131;
|
||||
border-color: #313131;
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
.container {
|
||||
max-width: 1620px;
|
||||
}
|
||||
&-slider {
|
||||
margin-top: 65px;
|
||||
margin-right: -250px;
|
||||
}
|
||||
.scroll__slider {
|
||||
margin-right: -250px;
|
||||
padding: 80px 0;
|
||||
ul li img {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Banner Four CSS
|
||||
==========================================================================*/
|
||||
.banner__four {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
padding: 250px 0 0 0;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
background: var(--bg-white);
|
||||
z-index: -1;
|
||||
}
|
||||
.bg-video {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
video {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
position: relative;
|
||||
img.h_rotate {
|
||||
position: absolute;
|
||||
right: 9%;
|
||||
bottom: 0;
|
||||
}
|
||||
.subtitle {
|
||||
color: var(--text-white);
|
||||
}
|
||||
h1 {
|
||||
font-size: 150px;
|
||||
line-height: 160px;
|
||||
font-weight: 600;
|
||||
color: var(--text-white);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
h2 {
|
||||
font-size: 100px;
|
||||
font-weight: 500;
|
||||
line-height: 100px;
|
||||
-webkit-text-stroke-width: 1px;
|
||||
stroke-width: 1px;
|
||||
-webkit-text-stroke-color: #FFFFFF;
|
||||
stroke: #FFFFFF;
|
||||
color: transparent;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
.container {
|
||||
max-width: 1420px;
|
||||
}
|
||||
&-brand {
|
||||
background: var(--color-2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 150px;
|
||||
.title {
|
||||
padding: 0 30px 0 60px;
|
||||
min-width: 290px;
|
||||
}
|
||||
.scroll__slider {
|
||||
margin-right: -260px;
|
||||
padding: 85px 0;
|
||||
background: var(--color-2);
|
||||
border-left: 1px solid var(--border-color-2);
|
||||
.text-slide {
|
||||
margin-left: 60px;
|
||||
overflow: hidden;
|
||||
}
|
||||
ul li img {
|
||||
filter: invert(1);
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1350px) {
|
||||
.banner__one-content h1 {
|
||||
font-size: 110px;
|
||||
line-height: 120px;
|
||||
}
|
||||
.banner__three-content h1 {
|
||||
font-size: 95px;
|
||||
line-height: 105px;
|
||||
}
|
||||
.banner__four-content h1 {
|
||||
font-size: 130px;
|
||||
line-height: 140px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.banner__one {
|
||||
background-position: top;
|
||||
&-image {
|
||||
margin-top: -100px;
|
||||
}
|
||||
}
|
||||
.banner__three-content h1 {
|
||||
font-size: 80px;
|
||||
line-height: 90px;
|
||||
}
|
||||
.banner__four-content h1 {
|
||||
font-size: 110px;
|
||||
line-height: 120px;
|
||||
}
|
||||
.banner__four-content h2 {
|
||||
font-size: 90px;
|
||||
line-height: 90px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.banner__one-content h1 {
|
||||
font-size: 84px;
|
||||
line-height: 94px;
|
||||
}
|
||||
.banner__one {
|
||||
&-content-award {
|
||||
display: none;
|
||||
}
|
||||
&-image {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
.banner__three-content h1 {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.banner__three-content h1 {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
img {
|
||||
height: 70px;
|
||||
width: 100px;
|
||||
border-radius: 50px;
|
||||
}
|
||||
}
|
||||
.banner__four-content h1 {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.banner__four-content h2 {
|
||||
font-size: 50px;
|
||||
line-height: 50px;
|
||||
}
|
||||
.banner__four-content img.h_rotate {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.banner__one-content h1 {
|
||||
font-size: 54px;
|
||||
line-height: 64px;
|
||||
}
|
||||
.banner__three-content h1 {
|
||||
font-size: 50px;
|
||||
line-height: 60px;
|
||||
}
|
||||
.banner__four-brand {
|
||||
display: grid;
|
||||
.title {
|
||||
padding: 50px 0 0 30px;
|
||||
}
|
||||
.scroll__slider {
|
||||
padding: 50px 30px;
|
||||
border-left: 0;
|
||||
margin: 0;
|
||||
.text-slide {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 359px) {
|
||||
.banner__one-content h1 {
|
||||
font-size: 46px;
|
||||
line-height: 56px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@media (max-width: 1199px) {
|
||||
.banner__two {
|
||||
&-slide-area-thumb-item {
|
||||
gap: 20px;
|
||||
padding: 29px 25px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1010px) {
|
||||
.banner__two {
|
||||
&-slide-area {
|
||||
&-thumb-item {
|
||||
width: 100% !important;
|
||||
&:last-child {
|
||||
border-right: 1px solid var(--border-color-1);
|
||||
}
|
||||
}
|
||||
.thumb__area {
|
||||
display: grid;
|
||||
grid-template-columns: 50% 50%;
|
||||
}
|
||||
&-arrow {
|
||||
display: block;
|
||||
width: 70px;
|
||||
.banner_prev {
|
||||
border-right: 0;
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
h1 {
|
||||
font-size: 130px;
|
||||
line-height: 140px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.banner__two-content {
|
||||
h1 {
|
||||
font-size: 82px;
|
||||
line-height: 92px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 44px;
|
||||
line-height: 54px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 660px) {
|
||||
.banner__two-content {
|
||||
padding: 145px 0 195px 0;
|
||||
}
|
||||
.banner__two-slide-area {
|
||||
display: block;
|
||||
position: relative;
|
||||
.thumb__area {
|
||||
grid-template-columns: 100%;
|
||||
}
|
||||
&-arrow {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: -70px;
|
||||
z-index: 1;
|
||||
.banner_prev {
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.banner__two-slide-area-arrow-next i, .banner__two-slide-area-arrow-prev i {
|
||||
font-size: 22px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.banner__two-slide-area-thumb-item {
|
||||
border-left: 1px solid var(--border-color-1);
|
||||
h6 {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
max-width: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 465px) {
|
||||
.banner__two-content {
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
line-height: 42px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 50px;
|
||||
line-height: 60px;
|
||||
}
|
||||
}
|
||||
}
|
||||
468
resources/css/sass/section/_blog.scss
Normal file
468
resources/css/sass/section/_blog.scss
Normal file
@@ -0,0 +1,468 @@
|
||||
/*==========================================================================
|
||||
* Blog One CSS
|
||||
==========================================================================*/
|
||||
.blog__one {
|
||||
&-item {
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-top: 0;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 25px;
|
||||
&-image {
|
||||
position: relative;
|
||||
img {
|
||||
border-radius: 10px 10px 0 0;
|
||||
height: 270px;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
}
|
||||
&-date {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background: var(--bg-white);
|
||||
padding: 5px 30px 0px 30px;
|
||||
border-radius: 0px 5px 0px 0px;
|
||||
i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
h6 {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
padding: 20px 30px 30px 30px;
|
||||
h4 a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
.more_btn {
|
||||
margin-top: 25px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Blog Two CSS
|
||||
==========================================================================*/
|
||||
.blog__two {
|
||||
overflow: hidden;
|
||||
.blog__one-item-image-date {
|
||||
top: 25px;
|
||||
left: 25px;
|
||||
bottom: inherit;
|
||||
background: var(--primary-color-1);
|
||||
padding: 5px 20px;
|
||||
border-radius: 40px;
|
||||
h6 {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
.blog__one-item-content {
|
||||
.meta {
|
||||
display: inline-block;
|
||||
padding: 0px 20px 0px 20px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 50px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 25px;
|
||||
row-gap: 5px;
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Blog Three CSS
|
||||
==========================================================================*/
|
||||
.blog__three {
|
||||
&-right {
|
||||
max-width: 75%;
|
||||
margin: 0 0 0 auto;
|
||||
}
|
||||
&-item {
|
||||
display: flex;
|
||||
&-image {
|
||||
max-width: 45%;
|
||||
img {
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
border-radius: 10px 0 0 10px;
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-left: 0;
|
||||
padding: 40px 30px;
|
||||
border-radius: 0 10px 10px 0;
|
||||
background: var(--bg-white);
|
||||
.meta {
|
||||
margin-bottom: 5px;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 25px;
|
||||
row-gap: 5px;
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
h4 a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
.more_btn {
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Blog Four CSS
|
||||
==========================================================================*/
|
||||
.blog__four {
|
||||
&-item {
|
||||
padding: 20px;
|
||||
background: var(--color-2);
|
||||
border-radius: 8px;
|
||||
&-image {
|
||||
position: relative;
|
||||
img {
|
||||
height: 270px;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
}
|
||||
&-date {
|
||||
position: absolute;
|
||||
left: 20px;
|
||||
bottom: 20px;
|
||||
background: var(--bg-white);
|
||||
padding: 13px 20px 10px 20px;
|
||||
border-radius: 6px;
|
||||
text-align: center;
|
||||
h5 {
|
||||
font-size: 24px;
|
||||
line-height: 24px;
|
||||
}
|
||||
h6 {
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
padding: 30px 0 10px 0;
|
||||
.meta {
|
||||
display: inline-block;
|
||||
padding: 0px 20px 0px 20px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 50px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 25px;
|
||||
row-gap: 5px;
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
h4 a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
.more_btn {
|
||||
margin-top: 25px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Blog Standard CSS
|
||||
==========================================================================*/
|
||||
.blog__standard {
|
||||
&-item {
|
||||
margin-bottom: 50px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&-image img {
|
||||
width: 100%;
|
||||
}
|
||||
&-content {
|
||||
background: var(--color-2);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 30px;
|
||||
&-meta {
|
||||
margin-bottom: 15px;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
column-gap: 25px;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
row-gap: 5px;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
display: inline-flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
h3 {
|
||||
margin-bottom: 10px;
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Blog Details CSS
|
||||
==========================================================================*/
|
||||
.blog__details-area {
|
||||
&-box {
|
||||
background: var(--color-2);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 45px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
margin: 40px 0;
|
||||
i {
|
||||
font-size: 80px;
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
h6 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
&-image img {
|
||||
width: 100%;
|
||||
height: 460px;
|
||||
object-fit: cover;
|
||||
object-position: center center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
&-tag {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
column-gap: 30px;
|
||||
row-gap: 20px;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 50px;
|
||||
padding-bottom: 40px;
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
&-author {
|
||||
background: var(--color-2);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 45px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
gap: 25px;
|
||||
&-image {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
min-width: 120px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.social__icon {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
li {
|
||||
list-style: none;
|
||||
a i {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
background: var(--bg-white);
|
||||
border-radius: 50%;
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
font-size: 14px;
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-comment {
|
||||
&-item {
|
||||
padding-bottom: 25px;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid var(--border-color-1);
|
||||
&-comment {
|
||||
&-image {
|
||||
float: left;
|
||||
img {
|
||||
min-width: 80px;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
padding-left: 30px;
|
||||
overflow: hidden;
|
||||
span {
|
||||
font-size: 14px;
|
||||
margin-bottom: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
h5 {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
a {
|
||||
float: right;
|
||||
transition: 0.4s;
|
||||
font-family: var(--heading-font);
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
color: var(--text-heading-color);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 7px 18px;
|
||||
border-radius: 4px;
|
||||
i {
|
||||
margin-right: 10px;
|
||||
}
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
p {
|
||||
max-width: 580px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-contact {
|
||||
background: var(--color-2);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 45px;
|
||||
border-radius: 10px;
|
||||
h3 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.blog__three-right {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 574px) {
|
||||
.blog__three-item {
|
||||
display: block;
|
||||
&-image {
|
||||
max-width: 100%;
|
||||
img {
|
||||
border-radius: 10px 10px 0 0;
|
||||
}
|
||||
}
|
||||
.blog__three-item-content {
|
||||
padding: 20px 25px 30px 25px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.blog__details-area-contact,
|
||||
.blog__details-area-author {
|
||||
display: grid;
|
||||
padding: 40px 30px;
|
||||
}
|
||||
.blog__details-area-box {
|
||||
display: block;
|
||||
padding: 40px 30px;
|
||||
h5 {
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
.blog__details-area-comment-item-comment {
|
||||
&-image {
|
||||
float: initial;
|
||||
}
|
||||
&-content {
|
||||
padding-left: 0;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
87
resources/css/sass/section/_contact.scss
Normal file
87
resources/css/sass/section/_contact.scss
Normal file
@@ -0,0 +1,87 @@
|
||||
/*==========================================================================
|
||||
* Request Quote CSS
|
||||
==========================================================================*/
|
||||
.request__quote {
|
||||
span {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
&-item {
|
||||
label {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
&-services {
|
||||
label {
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
font-weight: 500;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
}
|
||||
.description {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Contact CSS
|
||||
==========================================================================*/
|
||||
.contact__area {
|
||||
&-left {
|
||||
&-contact {
|
||||
margin-top: 45px;
|
||||
&-item {
|
||||
display: flex;
|
||||
margin-bottom: 25px;
|
||||
gap: 25px;
|
||||
&-icon {
|
||||
i {
|
||||
font-size: 40px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
span {
|
||||
display: inline-block;
|
||||
font-size: 22px;
|
||||
line-height: 32px;
|
||||
font-weight: 500;
|
||||
}
|
||||
h6 {
|
||||
max-width: 240px;
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
font-weight: 400;
|
||||
font-family: var(--body-font);
|
||||
a {
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-form {
|
||||
background: var(--color-2);
|
||||
padding: 70px;
|
||||
border-radius: 10px;
|
||||
h4 {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.map-area iframe {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
display: block;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.contact__area-form {
|
||||
padding: 30px 25px 30px 25px;
|
||||
}
|
||||
}
|
||||
47
resources/css/sass/section/_counter.scss
Normal file
47
resources/css/sass/section/_counter.scss
Normal file
@@ -0,0 +1,47 @@
|
||||
/*==========================================================================
|
||||
* Counter CSS
|
||||
==========================================================================*/
|
||||
.counter__one {
|
||||
background: var(--color-2);
|
||||
&-area {
|
||||
display: flex;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
flex-wrap: wrap;
|
||||
align-content: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 25px;
|
||||
&-item {
|
||||
width: 270px;
|
||||
height: 270px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
h2 {
|
||||
font-size: 56px;
|
||||
line-height: 66px;
|
||||
}
|
||||
p {
|
||||
font-size: 18px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.counter__two-area-item {
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
h2 {
|
||||
font-size: 56px;
|
||||
line-height: 66px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.counter__one-area {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
116
resources/css/sass/section/_cta.scss
Normal file
116
resources/css/sass/section/_cta.scss
Normal file
@@ -0,0 +1,116 @@
|
||||
/*==========================================================================
|
||||
* Cta CSS
|
||||
==========================================================================*/
|
||||
.cta__area {
|
||||
background: var(--primary-color-1);
|
||||
padding: 70px 0;
|
||||
h2 {
|
||||
color: var(--color-1);
|
||||
}
|
||||
.build_button {
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
i {
|
||||
color: var(--text-white);
|
||||
background: var(--color-5);
|
||||
}
|
||||
}
|
||||
}
|
||||
.cta__four {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50%;
|
||||
background: var(--color-2);
|
||||
z-index: -1;
|
||||
}
|
||||
&-area {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
padding: 90px 0 100px 0;
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--color-1);
|
||||
opacity: 0.6;
|
||||
z-index: -1;
|
||||
}
|
||||
&-content {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Subscribe CSS
|
||||
==========================================================================*/
|
||||
.subscribe__area {
|
||||
position: relative;
|
||||
margin-bottom: 100px;
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 45%;
|
||||
background: var(--bg-white);
|
||||
}
|
||||
&-bg {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 70px 55px;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
border-radius: 20px;
|
||||
}
|
||||
&-left {
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
&-form {
|
||||
form {
|
||||
position: relative;
|
||||
input {
|
||||
height: 70px;
|
||||
border-radius: 35px;
|
||||
}
|
||||
button {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 22px 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.subscribe__area-bg {
|
||||
padding: 60px 10px;
|
||||
}
|
||||
.subscribe__area-form form button {
|
||||
padding: 22px 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
119
resources/css/sass/section/_dark.scss
Normal file
119
resources/css/sass/section/_dark.scss
Normal file
@@ -0,0 +1,119 @@
|
||||
/*==========================================================================
|
||||
* Dark CSS
|
||||
==========================================================================*/
|
||||
.light-n {
|
||||
display: none;
|
||||
}
|
||||
.light {
|
||||
display: none;
|
||||
}
|
||||
.dark-mode {
|
||||
background: #1f1f1f;
|
||||
--body-color: #CCCCCC;
|
||||
--bg-white: #1e1e1e;
|
||||
--color-1: #1c1c1c;
|
||||
--color-2: #1e1e1e;
|
||||
--text-heading-color: #ffffff;
|
||||
--border-color-1: #383736;
|
||||
--border-color-2: #383736;
|
||||
--border-color-3: #383736;
|
||||
.light-n {
|
||||
display: inline-block;
|
||||
}
|
||||
.dark-n {
|
||||
display: none;
|
||||
}
|
||||
.process__area {
|
||||
background: #222222;
|
||||
}
|
||||
.choose__three-list-item {
|
||||
background: #1f1f1f;
|
||||
}
|
||||
.about__four-counter,
|
||||
.blog__four-item,
|
||||
.portfolio__four::after,
|
||||
.services__two .services__one-item > i,
|
||||
.experience__area-list-item {
|
||||
background: #242424;
|
||||
}
|
||||
.header__area-menubar-right-sidebar-icon,
|
||||
.copyright__area.four .copyright__area-social ul li a i,
|
||||
.skill__area-item-inner {
|
||||
background: #343434;
|
||||
}
|
||||
.brand__area,
|
||||
.banner__four-brand .scroll__slider,
|
||||
.banner__four-brand,
|
||||
.cta__four::after,
|
||||
.footer__four,
|
||||
.certification,
|
||||
.contact__area-form,
|
||||
.copyright__area.four,
|
||||
.testimonial__three,
|
||||
.testimonial__two {
|
||||
background: #1c1c1c;
|
||||
}
|
||||
.header__four {
|
||||
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before,
|
||||
.header__area-menubar-center-menu ul li a {
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before,
|
||||
.price__area-item.active .price__area-item-price span,
|
||||
.price__area-item.active .price__area-item-list ul li,
|
||||
.header__area-menubar-right-sidebar-popup .sidebar-close-btn i,
|
||||
.header__area-menubar-right-search-icon i,
|
||||
.header__area-menubar-center-menu ul li a,
|
||||
.portfolio__one-item-content span,
|
||||
.portfolio__one-item-content h4,
|
||||
.portfolio__three-item-content span,
|
||||
.portfolio__three-item-content h4,
|
||||
.banner__one-content-user h5,
|
||||
.banner__one-content h1 {
|
||||
color: #222222;
|
||||
}
|
||||
.cursor {
|
||||
#cursor-ball {
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
#cursor-text {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
.services__four-title .build_button:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
.services__one-item:hover {
|
||||
background: var(--primary-color-1);
|
||||
.more_btn,
|
||||
> i {
|
||||
color: var(--color-1);
|
||||
}
|
||||
h4 a {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
.cursor.no #cursor-text,
|
||||
.process__area-item h6 {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
.services__two .services__one-item:hover > i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
.banner__four-brand .scroll__slider ul li img,
|
||||
.brand__area ul li img {
|
||||
filter: inherit;
|
||||
}
|
||||
.industry__four-left-item img {
|
||||
filter: invert(1);
|
||||
}
|
||||
.copyright__area.four .copyright__area-social ul li a i:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
.choose__us-left-counter {
|
||||
background-image: url('../../assets/img/shape/shape-dark.png') !important;
|
||||
}
|
||||
}
|
||||
115
resources/css/sass/section/_faq.scss
Normal file
115
resources/css/sass/section/_faq.scss
Normal file
@@ -0,0 +1,115 @@
|
||||
/*==========================================================================
|
||||
* Faq CSS
|
||||
==========================================================================*/
|
||||
.faq__area {
|
||||
background: var(--color-1);
|
||||
&-image {
|
||||
img {
|
||||
height: 660px;
|
||||
object-fit: cover;
|
||||
object-position: center right;
|
||||
border-radius: 10px;
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
.faq-item {
|
||||
border-color: var(--border-color-3);
|
||||
h5 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
&-body {
|
||||
border-color: var(--border-color-3);
|
||||
p {
|
||||
color: var(--color-6);
|
||||
}
|
||||
}
|
||||
.icon {
|
||||
&:not(.collapsed) {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
&::after {
|
||||
content: "\f068";
|
||||
background: #DFA22C;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.faq {
|
||||
&-item {
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid var(--border-color-1);
|
||||
border-radius: 10px;
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
h5 {
|
||||
cursor: pointer;
|
||||
padding: 16px 25px;
|
||||
}
|
||||
.icon {
|
||||
position: relative;
|
||||
border-radius: 10px 10px 0 0;
|
||||
&::after {
|
||||
content: "\2b";
|
||||
font-family: 'Font Awesome 6 Pro';
|
||||
font-weight: 300;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: var(--color-1);
|
||||
right: 20px;
|
||||
font-size: 18px;
|
||||
transition: 0.4s;
|
||||
background: var(--primary-color-1);
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
line-height: 26px;
|
||||
text-align: center;
|
||||
}
|
||||
&:not(.collapsed) {
|
||||
&::after {
|
||||
content: "\f068";
|
||||
}
|
||||
}
|
||||
}
|
||||
&-body {
|
||||
border-radius: 0 0 10px 10px;
|
||||
transition: 0.3s;
|
||||
border-top: 1px solid var(--border-color-1);
|
||||
p {
|
||||
padding: 15px 25px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.faq__page {
|
||||
.faq-item h5 {
|
||||
padding: 20px 25px;
|
||||
}
|
||||
.faq-item-body {
|
||||
padding: 0 25px;
|
||||
p {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.faq__area-image img {
|
||||
height: 380px;
|
||||
}
|
||||
}
|
||||
282
resources/css/sass/section/_features.scss
Normal file
282
resources/css/sass/section/_features.scss
Normal file
@@ -0,0 +1,282 @@
|
||||
/*==========================================================================
|
||||
* Choose Us Css
|
||||
==========================================================================*/
|
||||
.choose__us {
|
||||
&-left {
|
||||
position: relative;
|
||||
img {
|
||||
width: 75%;
|
||||
}
|
||||
&-counter {
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 25%;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
padding: 78px 25px 87px 55px;
|
||||
h2 {
|
||||
font-size: 48px;
|
||||
font-weight: 600;
|
||||
line-height: 64px;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
line-height: 26px;
|
||||
max-width: 140px;
|
||||
color: var(--text-heading-color);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
.build_button {
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
i {
|
||||
color: var(--text-white);
|
||||
background: var(--color-5);
|
||||
}
|
||||
&::before {
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
i {
|
||||
color: var(--color-1);
|
||||
background: var(--color-4);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.choose__three {
|
||||
background: var(--color-2);
|
||||
&-left {
|
||||
img {
|
||||
object-fit: cover;
|
||||
height: 490px;
|
||||
}
|
||||
}
|
||||
&-list-item {
|
||||
padding: 40px;
|
||||
background: var(--bg-white);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 70px rgba(0, 0, 0, 0.05);
|
||||
i {
|
||||
display: inline-block;
|
||||
font-size: 70px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.choose__three-list-item {
|
||||
padding: 30px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.choose__us-left img {
|
||||
width: 85%;
|
||||
height: 440px;
|
||||
object-fit: cover;
|
||||
}
|
||||
.choose__three-left img {
|
||||
height: 380px;
|
||||
}
|
||||
}
|
||||
.certification {
|
||||
background: var(--color-2);
|
||||
}
|
||||
/*==========================================================================
|
||||
* Experience CSS
|
||||
==========================================================================*/
|
||||
.experience__area {
|
||||
background: var(--color-1);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
max-width: 700px;
|
||||
}
|
||||
}
|
||||
&-image {
|
||||
margin-left: -160px;
|
||||
position: relative;
|
||||
z-index: -1;
|
||||
img {
|
||||
height: 642px;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
&-list-item {
|
||||
background: var(--color-2);
|
||||
border-radius: 12px;
|
||||
padding: 40px;
|
||||
i {
|
||||
font-size: 70px;
|
||||
display: inline-block;
|
||||
}
|
||||
&-content {
|
||||
margin-top: 25px;
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
}
|
||||
p {
|
||||
margin-top: 7px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.experience__area-image {
|
||||
margin-left: 0;
|
||||
img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Industry One CSS
|
||||
==========================================================================*/
|
||||
.industry__area {
|
||||
&-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
&-right {
|
||||
&-list {
|
||||
&-item {
|
||||
display: flex;
|
||||
align-items: start;
|
||||
gap: 25px;
|
||||
i {
|
||||
font-size: 70px;
|
||||
margin-top: 6px;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
&-content {
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Industry Two CSS
|
||||
==========================================================================*/
|
||||
.industry__four {
|
||||
&-left {
|
||||
&-item {
|
||||
&.borders {
|
||||
border-right: 1px solid var(--border-color-2);
|
||||
}
|
||||
img {
|
||||
max-width: 70px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
h5 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
p {
|
||||
max-width: 540px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.industry__four-left-item.borders {
|
||||
border-right: 0;
|
||||
}
|
||||
.industry__four-right p {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Experience CSS
|
||||
==========================================================================*/
|
||||
.text__slide {
|
||||
background: var(--color-1);
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
max-width: 550px;
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&-counter {
|
||||
width: 170px;
|
||||
height: 170px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
font-size: 44px;
|
||||
line-height: 54px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.scroll__slider {
|
||||
margin-top: -70px;
|
||||
ul li {
|
||||
align-items: center;
|
||||
img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
a {
|
||||
font-size: 60px;
|
||||
line-height: 70px;
|
||||
color: var(--text-white);
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.text__slide-right {
|
||||
&-counter {
|
||||
display: none;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
364
resources/css/sass/section/_footer.scss
Normal file
364
resources/css/sass/section/_footer.scss
Normal file
@@ -0,0 +1,364 @@
|
||||
/*==========================================================================
|
||||
* Footer One CSS
|
||||
==========================================================================*/
|
||||
.footer__one {
|
||||
background: var(--color-1);
|
||||
overflow: hidden;
|
||||
&-cta {
|
||||
padding: 80px 0;
|
||||
border-bottom: 1px solid var(--border-color-3);
|
||||
&-title {
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
&-icon a i {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
border-radius: 50%;
|
||||
font-size: 50px;
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-area {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 120px;
|
||||
}
|
||||
&-widget {
|
||||
.logo {
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
img {
|
||||
max-width: 170px;
|
||||
}
|
||||
}
|
||||
h5 {
|
||||
color: var(--text-white);
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
line-height: 34px;
|
||||
}
|
||||
> h4 {
|
||||
color: var(--text-white);
|
||||
margin-bottom: 20px;
|
||||
font-size: 28px;
|
||||
line-height: 38px;
|
||||
}
|
||||
&.address {
|
||||
margin-left: -40px;
|
||||
}
|
||||
&-address {
|
||||
h6 {
|
||||
color: var(--color-6);
|
||||
font-family: var(--body-font);
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 30px;
|
||||
a {
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
margin-top: 25px;
|
||||
a {
|
||||
color: var(--primary-color-1);
|
||||
font-family: var(--body-font);
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
text-decoration: underline;
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-widget-menu {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
margin-bottom: 10px;
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
a {
|
||||
color: var(--color-6);
|
||||
transition: 0.4s;
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Footer Two CSS
|
||||
==========================================================================*/
|
||||
.footer__two {
|
||||
background: var(--color-1);
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
padding-bottom: 110px;
|
||||
&-widget {
|
||||
h4 {
|
||||
color: var(--text-white);
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
&.footer-border {
|
||||
position: relative;
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
width: 1px;
|
||||
height: 250px;
|
||||
background: var(--border-color-3);
|
||||
left: -10px;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
&-about {
|
||||
a img {
|
||||
max-width: 165px;
|
||||
}
|
||||
p {
|
||||
color: var(--color-6);
|
||||
max-width: 355px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
&-social {
|
||||
margin-top: 30px;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
li {
|
||||
list-style: none;
|
||||
a i {
|
||||
display: inline-block;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
text-align: center;
|
||||
background: var(--color-7);
|
||||
font-size: 15px;
|
||||
border-radius: 50%;
|
||||
color: var(--text-white);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-location {
|
||||
h6 {
|
||||
color: var(--text-white);
|
||||
margin: 18px 0;
|
||||
}
|
||||
&-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
&-icon i {
|
||||
display: inline-block;
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
line-height: 55px;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
border: 1px solid var(--border-color-3);
|
||||
border-radius: 50%;
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
&-info a {
|
||||
color: var(--color-6);
|
||||
max-width: 220px;
|
||||
display: inline-block;
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.post__item {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
&-image {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
min-width: 80px;
|
||||
img {
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
&-title {
|
||||
span {
|
||||
color: var(--color-6);
|
||||
}
|
||||
h6 a {
|
||||
color: var(--text-white);
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Footer Four CSS
|
||||
==========================================================================*/
|
||||
.footer__four {
|
||||
background: var(--color-2);
|
||||
&-area {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 120px;
|
||||
}
|
||||
&-widget {
|
||||
.logo {
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
img {
|
||||
max-width: 170px;
|
||||
}
|
||||
}
|
||||
h5 {
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
line-height: 34px;
|
||||
}
|
||||
> h4 {
|
||||
margin-bottom: 20px;
|
||||
font-size: 28px;
|
||||
line-height: 38px;
|
||||
}
|
||||
&.address {
|
||||
margin-left: -40px;
|
||||
}
|
||||
&-address {
|
||||
h6 {
|
||||
color: var(--body-color);
|
||||
font-family: var(--body-font);
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 30px;
|
||||
a {
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
margin-top: 25px;
|
||||
a {
|
||||
color: var(--primary-color-1);
|
||||
font-family: var(--body-font);
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
text-decoration: underline;
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-widget-menu ul li a {
|
||||
color: var(--body-color);
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Copyright CSS
|
||||
==========================================================================*/
|
||||
.copyright__area {
|
||||
background: var(--color-1);
|
||||
border-top: 1px solid var(--border-color-3);
|
||||
padding: 26px 0;
|
||||
&-content {
|
||||
p {
|
||||
margin: 0;
|
||||
color: var(--color-6);
|
||||
a {
|
||||
color: var(--primary-color-1);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-social {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
li {
|
||||
list-style: none;
|
||||
a i {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
background: var(--color-7);
|
||||
border-radius: 50%;
|
||||
color: var(--color-6);
|
||||
transition: 0.4s;
|
||||
font-size: 14px;
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.four {
|
||||
background: var(--color-2);
|
||||
border-color: var(--border-color-2);
|
||||
p {
|
||||
color: var(--body-color);
|
||||
}
|
||||
.copyright__area-social ul li a i {
|
||||
background: #EBE9DD;
|
||||
color: var(--text-heading-color);
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.footer__four-widget.address,
|
||||
.footer__one-widget.address {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.footer__two-widget.footer-border::before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
707
resources/css/sass/section/_header.scss
Normal file
707
resources/css/sass/section/_header.scss
Normal file
@@ -0,0 +1,707 @@
|
||||
/*==========================================================================
|
||||
* Menu Bar CSS
|
||||
==========================================================================*/
|
||||
.header__area {
|
||||
padding: 20px 0;
|
||||
background: var(--primary-color-1);
|
||||
border-bottom: 1px solid #E5B142;
|
||||
&-menubar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
&-left {
|
||||
position: relative;
|
||||
z-index: 99;
|
||||
&-logo {
|
||||
a {
|
||||
display: inline-block;
|
||||
img {
|
||||
max-width: 170px;
|
||||
position: relative;
|
||||
z-index: 9999;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 50px;
|
||||
&-menu {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
list-style: none;
|
||||
margin: 0 25px;
|
||||
&:hover {
|
||||
> a {
|
||||
color: var(--color-1);
|
||||
}
|
||||
> .sub-menu {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
.sub-menu {
|
||||
position: absolute;
|
||||
background: var(--color-8);
|
||||
min-width: 260px;
|
||||
transition: 0.4s;
|
||||
top: 63px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 99;
|
||||
transform: translateY(10px);
|
||||
li {
|
||||
display: block;
|
||||
padding: 0 30px;
|
||||
margin: 0;
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
> a {
|
||||
border-bottom: 1px solid var(--border-color-3);
|
||||
color: var(--text-white);
|
||||
padding: 12px 0;
|
||||
transition: 0.4s;
|
||||
text-transform: capitalize;
|
||||
position: relative;
|
||||
font-weight: 400;
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
background: var(--primary-color-1);
|
||||
width: 0;
|
||||
transition: 0.4s;
|
||||
height: 1px;
|
||||
left: 0;
|
||||
bottom: -1px;
|
||||
}
|
||||
}
|
||||
.sub-menu {
|
||||
left: 100%;
|
||||
top: 0;
|
||||
}
|
||||
&:hover {
|
||||
> a {
|
||||
color: var(--primary-color-1);
|
||||
&::before {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
&::after {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child > a {
|
||||
border: none;
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.menu-item-has-children > {
|
||||
a {
|
||||
&::before {
|
||||
content: '\f105';
|
||||
right: 0;
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: var(--text-heading-color);
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
transition: 0.4s;
|
||||
font-family: var(--heading-font);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
&.menu-item-has-children > {
|
||||
a {
|
||||
position: relative;
|
||||
&::before {
|
||||
content: '\f107';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-48%);
|
||||
right: -16px;
|
||||
font-family: "Font Awesome 6 Pro";
|
||||
font-weight: 800;
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.3s;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.menu-item-has-children {
|
||||
padding-right: 15px;
|
||||
&:hover > a {
|
||||
&::before {
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
&-search {
|
||||
margin-right: 30px;
|
||||
&-icon {
|
||||
i {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
z-index: 9;
|
||||
display: block;
|
||||
color: var(--text-heading-color);
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
&-box {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 0;
|
||||
background: var(--color-1);
|
||||
z-index: 9999;
|
||||
transition: all 0.5s ease-out;
|
||||
overflow: hidden;
|
||||
form {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%) scale(0);
|
||||
width: 55%;
|
||||
transition: all 0.5s ease-out;
|
||||
}
|
||||
button {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
font-size: 22px;
|
||||
padding: 0;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
}
|
||||
&.active {
|
||||
height: 100vh;
|
||||
top: 0;
|
||||
&.header__area-menubar-right-search-box form {
|
||||
transform: translate(-50%, -50%) scale(1);
|
||||
}
|
||||
}
|
||||
&-icon {
|
||||
position: absolute;
|
||||
right: 50px;
|
||||
top: 50px;
|
||||
i {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
z-index: 9;
|
||||
display: block;
|
||||
font-size: 22px;
|
||||
color: var(--text-white);
|
||||
transform: rotate(0deg);
|
||||
&:hover {
|
||||
animation: rotate 0.4s ease 0s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-btn {
|
||||
&.one .build_button {
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
i {
|
||||
color: var(--text-white);
|
||||
background: var(--color-5);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-sidebar {
|
||||
&-icon {
|
||||
background: var(--bg-white);
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
cursor: pointer;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
i {
|
||||
font-size: 24px;
|
||||
height: 24px;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
}
|
||||
&-popup {
|
||||
position: fixed;
|
||||
width: 460px;
|
||||
height: 100%;
|
||||
right: 0;
|
||||
overflow: auto;
|
||||
transform: translateX(100%);
|
||||
top: 0;
|
||||
background: var(--color-1);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 999999;
|
||||
transition: transform .5s ease .4s;
|
||||
padding: 100px 40px;
|
||||
scrollbar-width: none;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
&.active {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateX(0%);
|
||||
right: 0;
|
||||
}
|
||||
&-icon {
|
||||
i {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
display: block;
|
||||
font-size: 25px;
|
||||
color: var(--text-heading-color);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.sidebar-close-btn {
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
right: 40px;
|
||||
transform: rotate(0);
|
||||
i {
|
||||
background: var(--primary-color-1);
|
||||
width: 40px;
|
||||
color: var(--text-heading-color);
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
&:hover {
|
||||
animation: rotate 0.4s ease 0s;
|
||||
}
|
||||
}
|
||||
&-logo {
|
||||
margin-bottom: 30px;
|
||||
a {
|
||||
display: inline-block;
|
||||
img {
|
||||
max-width: 170px;
|
||||
}
|
||||
}
|
||||
}
|
||||
p {
|
||||
color: var(--color-6);
|
||||
}
|
||||
&-contact {
|
||||
margin: 40px 0;
|
||||
padding: 40px 0;
|
||||
border-top: 1px solid var(--border-color-3);
|
||||
border-bottom: 1px solid var(--border-color-3);
|
||||
&-item {
|
||||
display: flex;
|
||||
margin-bottom: 25px;
|
||||
gap: 25px;
|
||||
&-icon {
|
||||
i {
|
||||
font-size: 40px;
|
||||
margin-top: 5px;
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
span {
|
||||
color: var(--text-white);
|
||||
display: inline-block;
|
||||
font-size: 22px;
|
||||
line-height: 32px;
|
||||
font-weight: 500;
|
||||
}
|
||||
h6 {
|
||||
max-width: 240px;
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
font-weight: 400;
|
||||
font-family: var(--body-font);
|
||||
a {
|
||||
transition: 0.4s;
|
||||
color: var(--color-6);
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
&-social{
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
li {
|
||||
list-style: none;
|
||||
a i {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: var(--color-7);
|
||||
border-radius: 50%;
|
||||
color: var(--text-white);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.two {
|
||||
background: transparent;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 99;
|
||||
border-color: #FFFFFF21;
|
||||
.menu__bar i,
|
||||
.header__area-menubar-right-search-icon i,
|
||||
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before,
|
||||
.header__area-menubar-center-menu ul li a {
|
||||
color: var(--text-white);
|
||||
}
|
||||
.header__area-menubar-center-menu ul li:hover > a {
|
||||
color: var(--primary-color-1);
|
||||
&::before {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.three {
|
||||
border-color: #FFFFFF21;
|
||||
background: var(--color-1);
|
||||
.menu__bar i,
|
||||
.header__area-menubar-right-search-icon i,
|
||||
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before,
|
||||
.header__area-menubar-center-menu ul li a {
|
||||
color: var(--text-white);
|
||||
}
|
||||
.header__area-menubar-center-menu ul li:hover > a {
|
||||
color: var(--primary-color-1);
|
||||
&::before {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
.build_button {
|
||||
&::before {
|
||||
background: var(--bg-white);
|
||||
}
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
i {
|
||||
color: var(--color-1);
|
||||
background: #F1F1F1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.header__four {
|
||||
padding: 20px 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 99;
|
||||
border-bottom: 1px solid #FFFFFF3D;
|
||||
.header__area-menubar-center-menu {
|
||||
background: var(--bg-white);
|
||||
padding: 11px 25px;
|
||||
border-radius: 50px;
|
||||
}
|
||||
.menu__bar i,
|
||||
.header__area-menubar-right-search-icon i {
|
||||
color: var(--text-white);
|
||||
}
|
||||
.header__area-menubar-right-sidebar-icon {
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
.header__area-menubar-center-menu ul li .sub-menu {
|
||||
top: 39px;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Menu Bar Sticky CSS
|
||||
==========================================================================*/
|
||||
.header__sticky {
|
||||
&-sticky-menu {
|
||||
position: fixed !important;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 999;
|
||||
width: 100%;
|
||||
animation: header_sticky 1s;
|
||||
display: block;
|
||||
box-shadow: 0 0 50px rgb(var(--border-color-2),0.04);
|
||||
background: var(--color-8) !important;
|
||||
}
|
||||
@keyframes header_sticky {
|
||||
0% {
|
||||
top: -100px;
|
||||
}
|
||||
100% {
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Menu Sidebar CSS
|
||||
==========================================================================*/
|
||||
.sidebar-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
transition: all 0.8s ease-out;
|
||||
visibility: hidden;
|
||||
z-index: 99999;
|
||||
background: var(--color-1);
|
||||
opacity: 0.8;
|
||||
&.show {
|
||||
visibility: visible;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Responsive Menu Sidebar CSS
|
||||
==========================================================================*/
|
||||
.vertical-menu {
|
||||
padding-right: 6px;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
position: relative;
|
||||
a {
|
||||
padding: 14px 0;
|
||||
display: block;
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
font-weight: 400;
|
||||
transition: all 0.4s ease;
|
||||
border-bottom: 1px solid var(--border-color-3);
|
||||
color: var(--text-white);
|
||||
}
|
||||
&.menu-item-has-children {
|
||||
> span {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 0;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
background: var(--primary-color-1);
|
||||
color: var(--text-heading-color);
|
||||
z-index: 1;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
border-radius: 50%;
|
||||
line-height: 26px;
|
||||
&.is-open::before {
|
||||
content: '\f068';
|
||||
}
|
||||
}
|
||||
.sub-menu {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
&:hover > a {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
& .sub-menu {
|
||||
padding-left: 20px;
|
||||
li a {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.menu__bar {
|
||||
display: none;
|
||||
i {
|
||||
font-size: 35px;
|
||||
cursor: pointer;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
&-popup {
|
||||
display: none;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
z-index: 9999;
|
||||
transition: 0.5s;
|
||||
transform: translateX(-100%);
|
||||
padding: 40px;
|
||||
background: var(--color-1);
|
||||
&.show {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateX(0);
|
||||
& .menu__bar-popup {
|
||||
&-left-social {
|
||||
background: var(--color-1);
|
||||
}
|
||||
&-right-contact {
|
||||
transition: transform 2s ease 0.4s, opacity 2s ease 0.4s;
|
||||
transform: translateX(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 40px;
|
||||
.logo img {
|
||||
max-width: 170px;
|
||||
}
|
||||
.close {
|
||||
i {
|
||||
background: var(--primary-color-1);
|
||||
width: 40px;
|
||||
color: var(--text-heading-color);
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
}
|
||||
&:hover {
|
||||
animation: rotate 0.4s ease 0s;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
transition: 0.8s;
|
||||
visibility: hidden;
|
||||
z-index: 9;
|
||||
background: var(--color-1);
|
||||
opacity: 0.8;
|
||||
display: none;
|
||||
&.show {
|
||||
visibility: visible;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1550px) {
|
||||
.header__area-menubar-center-menu ul li:nth-child(n+4) .sub-menu li .sub-menu {
|
||||
right: 100%;
|
||||
left: initial;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1299px) {
|
||||
.header__four .header__area-menubar-right-btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.header__area-menubar-right-btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.header__area {
|
||||
padding: 25px 0;
|
||||
&-menubar {
|
||||
&-right-search,
|
||||
&-right-sidebar,
|
||||
&-center {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.menu__bar {
|
||||
display: block;
|
||||
&-popup {
|
||||
display: block;
|
||||
&-overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 520px) {
|
||||
.menu__bar-popup {
|
||||
width: 100%;
|
||||
&-overlay {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
118
resources/css/sass/section/_page.scss
Normal file
118
resources/css/sass/section/_page.scss
Normal file
@@ -0,0 +1,118 @@
|
||||
/*==========================================================================
|
||||
* Breadcrumb CSS
|
||||
==========================================================================*/
|
||||
.breadcrumb__area {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: 230px 0 130px 0;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--color-1);
|
||||
opacity: 0.45;
|
||||
z-index: -1;
|
||||
}
|
||||
&-content {
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
gap: 15px;
|
||||
align-items: center;
|
||||
li {
|
||||
list-style: none;
|
||||
color: var(--primary-color-1);
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
display: inline-flex;
|
||||
gap: 15px;
|
||||
align-items: center;
|
||||
a {
|
||||
color: var(--text-white);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Error CSS
|
||||
==========================================================================*/
|
||||
.error {
|
||||
&-page {
|
||||
text-align: center;
|
||||
h1 {
|
||||
font-size: 240px;
|
||||
line-height: 1;
|
||||
font-weight: 600;
|
||||
span {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
margin: 15px 0 30px 0;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Theme Pagination CSS
|
||||
==========================================================================*/
|
||||
.theme__pagination {
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline-flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
li {
|
||||
list-style: none;
|
||||
.active {
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
a {
|
||||
border: 1px solid var(--border-color-1);
|
||||
display: flex;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: 0.4s;
|
||||
border-radius: 5px;
|
||||
background: var(--bg-white);
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.error-page h1 {
|
||||
font-size: 140px;
|
||||
line-height: 150px;
|
||||
}
|
||||
}
|
||||
456
resources/css/sass/section/_portfolio.scss
Normal file
456
resources/css/sass/section/_portfolio.scss
Normal file
@@ -0,0 +1,456 @@
|
||||
/*==========================================================================
|
||||
* Portfolio One Css
|
||||
==========================================================================*/
|
||||
.portfolio__one {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 35%;
|
||||
background: var(--color-2);
|
||||
z-index: -1;
|
||||
|
||||
}
|
||||
.portfolio_slide {
|
||||
margin-right: -420px;
|
||||
}
|
||||
&-item {
|
||||
img {
|
||||
height: 480px;
|
||||
object-fit: cover;
|
||||
}
|
||||
&-content {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
transition: 0.4s;
|
||||
background: #FFBF43;
|
||||
border-radius: 15px;
|
||||
padding: 45px 45px 45px 45px;
|
||||
margin: 0px 50px 30px 50px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
&:hover .portfolio__one-item-content {
|
||||
transform: translateY(-20px);
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Portfolio Two CSS
|
||||
==========================================================================*/
|
||||
.portfolio__two {
|
||||
&-item {
|
||||
img {
|
||||
border-radius: 10px;
|
||||
}
|
||||
&-content {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
text-align: center;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: 0.4s;
|
||||
width: 100%;
|
||||
span {
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
color: var(--color-6);
|
||||
}
|
||||
h4 {
|
||||
color: var(--text-white);
|
||||
margin-bottom: 30px;
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
> a i {
|
||||
background: var(--primary-color-1);
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
color: var(--color-1);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
font-size: 28px;
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
img {
|
||||
filter: brightness(0.66);
|
||||
}
|
||||
.portfolio__two-item-content {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Portfolio Two CSS
|
||||
==========================================================================*/
|
||||
.portfolio__three {
|
||||
background: var(--color-1);
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
&-item {
|
||||
img {
|
||||
height: 560px;
|
||||
object-fit: cover;
|
||||
}
|
||||
&-content {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
transition: 0.4s;
|
||||
background: #FFBF43;
|
||||
border-radius: 15px;
|
||||
padding: 0 45px 45px 45px;
|
||||
margin: 0px 50px 30px 50px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
a i {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
border-radius: 50%;
|
||||
transition: 0.4s;
|
||||
font-size: 30px;
|
||||
margin-top: -30px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
&:hover .portfolio__three-item-content {
|
||||
transform: translateY(-20px);
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Portfolio Four CSS
|
||||
==========================================================================*/
|
||||
.portfolio__four {
|
||||
padding-bottom: 60px;
|
||||
position: relative;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50%;
|
||||
background: var(--color-2);
|
||||
z-index: -1;
|
||||
}
|
||||
&-area {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
gap: 1px;
|
||||
padding: 0 50px;
|
||||
&-item {
|
||||
width: 50%;
|
||||
transition: 0.5s;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
height: 620px;
|
||||
cursor: pointer;
|
||||
img {
|
||||
filter: brightness(0.8);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
&-area {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
|
||||
transform: translateY(30px);
|
||||
animation-duration: 1.25s;
|
||||
justify-content: center;
|
||||
align-items: flex-end;
|
||||
}
|
||||
&.active {
|
||||
width: 100%;
|
||||
img {
|
||||
filter: brightness(1);
|
||||
}
|
||||
.portfolio__one-item-content {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
position: relative;
|
||||
margin: 0px 0px 50px 0px;
|
||||
}
|
||||
.portfolio__four-area-item-area {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Portfolio Four CSS
|
||||
==========================================================================*/
|
||||
.gallery__area {
|
||||
&-button button {
|
||||
font-weight: 500;
|
||||
background: var(--bg-white);
|
||||
color: var(--text-heading-color);
|
||||
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
|
||||
border: 1px solid var(--border-color-1);
|
||||
padding: 10px 30px 10px 30px;
|
||||
margin: 3px 3px 3px 3px;
|
||||
&.active {
|
||||
color: var(--color-1);
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
.success__area {
|
||||
&-title {
|
||||
p {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.two__columns {
|
||||
.portfolio__two-item {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
img {
|
||||
height: 480px;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
}
|
||||
.three__columns {
|
||||
.portfolio__three-item {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
img {
|
||||
height: 480px;
|
||||
object-fit: cover;
|
||||
}
|
||||
&-content {
|
||||
padding: 0 25px 30px 25px;
|
||||
margin: 0px 30px 20px 30px;
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.four__columns {
|
||||
.portfolio__four-item {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
> a i {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--primary-color-1);
|
||||
color: var(--color-1);
|
||||
border-radius: 50%;
|
||||
transition: 0.4s;
|
||||
font-size: 30px;
|
||||
position: absolute;
|
||||
left: 25px;
|
||||
top: 25px;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
z-index: 2;
|
||||
}
|
||||
img {
|
||||
height: 380px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
}
|
||||
&-content {
|
||||
padding: 25px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
transition: 0.4s;
|
||||
transform: translateY(20px);
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
span,
|
||||
h5 {
|
||||
color: var(--text-white);
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
.portfolio__four-item-content,
|
||||
> a i {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
.portfolio__four-item-content {
|
||||
transform: translateY(0);
|
||||
}
|
||||
img {
|
||||
filter: brightness(0.4);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Portfolio Four CSS
|
||||
==========================================================================*/
|
||||
.portfolio__details {
|
||||
&-overview {
|
||||
background: var(--color-2);
|
||||
border-radius: 10px;
|
||||
padding: 40px;
|
||||
h4 {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
&-item {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: 1px solid var(--border-color-2);
|
||||
span {
|
||||
font-weight: 500;
|
||||
}
|
||||
h6 {
|
||||
margin-top: 5px;
|
||||
a:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-area {
|
||||
> img {
|
||||
border-radius: 10px;
|
||||
}
|
||||
&-list {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
margin-bottom: 8px;
|
||||
gap: 8px;
|
||||
font-weight: 500;
|
||||
color: var(--text-heading-color);
|
||||
i {
|
||||
display: inline-flex;
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-image img {
|
||||
width: 100%;
|
||||
height: 460px;
|
||||
object-fit: cover;
|
||||
object-position: center center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@media (max-width: 1440px) {
|
||||
.portfolio__four-area {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.portfolio__one-item-content {
|
||||
padding: 30px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.portfolio__four-area {
|
||||
display: grid;
|
||||
&-item {
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
&.active {
|
||||
height: 480px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.portfolio__one .portfolio_slide {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.portfolio__two-item img {
|
||||
height: 360px;
|
||||
object-fit: cover;
|
||||
}
|
||||
.portfolio__one-item,
|
||||
.portfolio__three-item {
|
||||
img {
|
||||
height: 480px;
|
||||
}
|
||||
&-content {
|
||||
padding: 0 30px 30px 30px;
|
||||
margin: 0px 20px 10px 20px;
|
||||
}
|
||||
}
|
||||
.portfolio__one-item-content {
|
||||
padding: 30px;
|
||||
}
|
||||
}
|
||||
99
resources/css/sass/section/_pricing.scss
Normal file
99
resources/css/sass/section/_pricing.scss
Normal file
@@ -0,0 +1,99 @@
|
||||
/*==========================================================================
|
||||
* Pricing Css
|
||||
==========================================================================*/
|
||||
.price__area {
|
||||
&-item {
|
||||
padding: 40px;
|
||||
border: 1px solid var(--border-color-2);
|
||||
border-radius: 10px;
|
||||
&-price {
|
||||
span {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
color: var(--body-color);
|
||||
}
|
||||
h2 {
|
||||
margin-top: 15px;
|
||||
font-size: 54px;
|
||||
line-height: 64px;
|
||||
span {
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-list {
|
||||
margin-top: 35px;
|
||||
padding-top: 30px;
|
||||
border-top: 1px solid var(--border-color-2);
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
margin-bottom: 10px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
i {
|
||||
color: var(--primary-color-1);
|
||||
font-size: 16px;
|
||||
margin-right: 6px;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-btn {
|
||||
margin-top: 50px;
|
||||
.build_button {
|
||||
border: 1px solid var(--border-color-2);
|
||||
background: transparent;
|
||||
color: var(--text-heading-color);
|
||||
padding: 7px 7px 7px 29px;
|
||||
&:hover {
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
background: var(--primary-color-1);
|
||||
border-color: var(--primary-color-1);
|
||||
.price__area-item {
|
||||
&-price {
|
||||
h3,
|
||||
h2 {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
&-list {
|
||||
border-color: #DDB348;
|
||||
ul li i {
|
||||
color: var(--color-1);
|
||||
}
|
||||
}
|
||||
&-btn .build_button {
|
||||
border-color: var(--color-1);
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
i {
|
||||
color: var(--text-white);
|
||||
background: var(--color-5);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.price__area-item {
|
||||
padding: 30px;
|
||||
&-list ul li {
|
||||
font-size: 16px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
31
resources/css/sass/section/_process.scss
Normal file
31
resources/css/sass/section/_process.scss
Normal file
@@ -0,0 +1,31 @@
|
||||
/*==========================================================================
|
||||
* Process Css
|
||||
==========================================================================*/
|
||||
.process__area {
|
||||
&-title {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
&-item {
|
||||
border-top: 1px dashed var(--border-color-3);
|
||||
h6 {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
top: -20px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
201
resources/css/sass/section/_services.scss
Normal file
201
resources/css/sass/section/_services.scss
Normal file
@@ -0,0 +1,201 @@
|
||||
/*==========================================================================
|
||||
* Services One CSS
|
||||
==========================================================================*/
|
||||
.services__one {
|
||||
background: var(--color-2);
|
||||
&-item {
|
||||
background: var(--bg-white);
|
||||
border: 1px solid var(--border-color-1);
|
||||
border-radius: 8px;
|
||||
padding: 40px 80px 40px 40px;
|
||||
transition: 0.5s;
|
||||
> i {
|
||||
font-size: 80px;
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
}
|
||||
h4 {
|
||||
margin-top: 90px;
|
||||
}
|
||||
.more_btn {
|
||||
margin-top: 25px;
|
||||
}
|
||||
&:hover {
|
||||
background: var(--color-1);
|
||||
.more_btn,
|
||||
> i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
h4 a {
|
||||
color: var(--text-white);
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Services Two CSS
|
||||
==========================================================================*/
|
||||
.services__two {
|
||||
overflow: hidden;
|
||||
.services__one-item {
|
||||
background: var(--color-2);
|
||||
> i {
|
||||
font-size: 45px;
|
||||
display: inline-flex;
|
||||
color: var(--text-heading-color);
|
||||
background: var(--bg-white);
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
min-width: 80px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
}
|
||||
&:hover {
|
||||
background: var(--color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Services Three CSS
|
||||
==========================================================================*/
|
||||
.services__three {
|
||||
background: var(--color-1);
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
p {
|
||||
color: var(--color-6);
|
||||
}
|
||||
.build_button {
|
||||
&::before {
|
||||
background: var(--bg-white);
|
||||
}
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
i {
|
||||
color: var(--color-1);
|
||||
background: #F1F1F1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-item {
|
||||
border-bottom: 1px solid var(--border-color-3);
|
||||
&-title {
|
||||
padding: 30px 0;
|
||||
h3 {
|
||||
color: var(--text-white);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
span {
|
||||
color: var(--primary-color-1);
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
h3 {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-body {
|
||||
padding: 0 0 30px 50px;
|
||||
display: none;
|
||||
p {
|
||||
color: var(--color-6);
|
||||
margin-bottom: 0;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Services Four CSS
|
||||
==========================================================================*/
|
||||
.services__four {
|
||||
background: var(--color-1);
|
||||
overflow: hidden;
|
||||
&-title {
|
||||
.subtitle {
|
||||
border-color: #474644;
|
||||
color: var(--text-white);
|
||||
}
|
||||
h2 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
.build_button {
|
||||
&::before {
|
||||
background: var(--bg-white);
|
||||
}
|
||||
&:hover {
|
||||
color: var(--color-1);
|
||||
i {
|
||||
color: var(--color-1);
|
||||
background: #F1F1F1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-image {
|
||||
margin-right: -295px;
|
||||
}
|
||||
.services__one-item {
|
||||
background: var(--color-1);
|
||||
border-color: var(--border-color-3);
|
||||
> i {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
.more_btn,
|
||||
h4 {
|
||||
color: var(--text-white);
|
||||
}
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
.more_btn,
|
||||
h4 a,
|
||||
> i {
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Services Details CSS
|
||||
==========================================================================*/
|
||||
.services__details-area {
|
||||
&-list {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-bottom: 35px;
|
||||
margin-top: 20px;
|
||||
li {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
margin-bottom: 8px;
|
||||
gap: 8px;
|
||||
i {
|
||||
display: inline-flex;
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.services__four-image {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
45
resources/css/sass/section/_skill.scss
Normal file
45
resources/css/sass/section/_skill.scss
Normal file
@@ -0,0 +1,45 @@
|
||||
/*==========================================================================
|
||||
* Skill Bar CSS
|
||||
==========================================================================*/
|
||||
.skill__area {
|
||||
&-item {
|
||||
margin-bottom: 30px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&-content {
|
||||
position: relative;
|
||||
}
|
||||
h6 {
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
&-count {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-family: var(--heading-font);
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
&-bar {
|
||||
height: 10px;
|
||||
position: absolute;
|
||||
width: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: var(--primary-color-1);
|
||||
transition: all 3.5s ease-out 0s;
|
||||
}
|
||||
&-inner {
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
position: relative;
|
||||
background: var(--color-2);
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
169
resources/css/sass/section/_sponsors.scss
Normal file
169
resources/css/sass/section/_sponsors.scss
Normal file
@@ -0,0 +1,169 @@
|
||||
|
||||
/*==========================================================================
|
||||
* Award CSS
|
||||
==========================================================================*/
|
||||
.award__area {
|
||||
background: var(--color-2);
|
||||
&-content {
|
||||
display: flex;
|
||||
p {
|
||||
max-width: 480px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
&-left {
|
||||
height: 450px;
|
||||
position: relative;
|
||||
&-image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0;
|
||||
transition: 0.4s;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: 0.6s;
|
||||
transform: scale(0.8) rotate(-10deg);
|
||||
}
|
||||
&.active {
|
||||
opacity: 1;
|
||||
img {
|
||||
transform: scale(1) rotate(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-list-item {
|
||||
border-bottom: 1px solid var(--border-color-2);
|
||||
padding: 40px 0px 40px 0px;
|
||||
position: relative;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -1px;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
background: var(--primary-color-1);
|
||||
transition: 0.8s;
|
||||
}
|
||||
&-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
h4 {
|
||||
&:nth-child(1) {
|
||||
width: 55%;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
width: 33%;
|
||||
}
|
||||
&:nth-child(3) {
|
||||
width: 12%;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
&::after {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.award__area-content p {
|
||||
max-width: 100%;
|
||||
}
|
||||
.award__area-list-item-content h4 {
|
||||
&:nth-child(1) {
|
||||
width: 48%;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
width: 35%;
|
||||
}
|
||||
&:nth-child(3) {
|
||||
width: 17%;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Text Slider CSS
|
||||
==========================================================================*/
|
||||
.scroll__slider {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.text-slide {
|
||||
display: flex;
|
||||
}
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
li {
|
||||
display: inline-flex;
|
||||
img {
|
||||
margin: 0 50px;
|
||||
}
|
||||
a {
|
||||
font-family: var(--heading-font);
|
||||
font-size: 80px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
line-height: 88px;
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
&:nth-child(even) {
|
||||
a {
|
||||
-webkit-text-fill-color: transparent;
|
||||
-webkit-text-stroke-width: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.sliders {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.text_scroll {
|
||||
animation: scroll 40s linear infinite;
|
||||
animation-direction: reverse !important;
|
||||
}
|
||||
@keyframes scroll {
|
||||
0% {
|
||||
transform: translateX(0%);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
.brand__area {
|
||||
background: var(--color-2);
|
||||
ul li img {
|
||||
filter: invert(1);
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.scroll__slider ul li a {
|
||||
font-size: 40px;
|
||||
font-weight: 600;
|
||||
line-height: 50px;
|
||||
}
|
||||
.scroll__slider ul li img {
|
||||
margin: 0 30px;
|
||||
max-width: 40px;
|
||||
}
|
||||
.brand__area {
|
||||
.scroll__slider ul li img {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
74
resources/css/sass/section/_switch-tab.scss
Normal file
74
resources/css/sass/section/_switch-tab.scss
Normal file
@@ -0,0 +1,74 @@
|
||||
/*==========================================================================
|
||||
* Switch Tab CSS
|
||||
==========================================================================*/
|
||||
.switch__tab {
|
||||
&-icon {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
z-index: 999;
|
||||
transition: all 0.3s;
|
||||
i {
|
||||
background: var(--primary-color-1);
|
||||
width: 50px;
|
||||
color: var(--color-1);
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 25px;
|
||||
border-radius: 5px 0 0 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
&-area {
|
||||
width: 260px;
|
||||
padding: 35px 25px;
|
||||
background: var(--color-1);
|
||||
border: 1px solid var(--border-color-3);
|
||||
position: fixed;
|
||||
right: -260px;
|
||||
top: 50%;
|
||||
z-index: 99;
|
||||
transform: translateY(-50%);
|
||||
transition: all 0.3s;
|
||||
direction: ltr;
|
||||
&-item {
|
||||
margin-bottom: 30px;
|
||||
h5 {
|
||||
color: var(--text-white);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
&-buttons,
|
||||
&-button {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
button {
|
||||
display: inline-block;
|
||||
padding: 4px 10px;
|
||||
color: var(--color-6);
|
||||
background: #2B2B2F;
|
||||
border-radius: 4px;
|
||||
text-transform: capitalize;
|
||||
opacity: 0.55;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
&.active {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-open i::before {
|
||||
animation: rollIn 5s infinite linear;
|
||||
}
|
||||
&-close {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
118
resources/css/sass/section/_team.scss
Normal file
118
resources/css/sass/section/_team.scss
Normal file
@@ -0,0 +1,118 @@
|
||||
/*==========================================================================
|
||||
* Team CSS
|
||||
==========================================================================*/
|
||||
.team__two {
|
||||
.team__area-item {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&-content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
padding: 35px 20px;
|
||||
margin: 20px 30px;
|
||||
background: var(--primary-color-1);
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(10px);
|
||||
transition: 0.4s;
|
||||
}
|
||||
&:hover .team__area-item-content {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
}
|
||||
.team__three {
|
||||
.team__area-item {
|
||||
&-content {
|
||||
background: var(--bg-white);
|
||||
padding: 30px 20px;
|
||||
margin: 0 30px;
|
||||
box-shadow: 0 0 60px rgb(0 0 0 / 9%);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin-top: -50px;
|
||||
border-radius: 10px;
|
||||
transition: 0.4s;
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
&-icon {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 20px;
|
||||
transform: translateY(-50%);
|
||||
span {
|
||||
color: var(--text-heading-color);
|
||||
display: inline-flex;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 16px;
|
||||
background: var(--color-2);
|
||||
border-radius: 50%;
|
||||
transition: 0.4s;
|
||||
cursor: pointer;
|
||||
}
|
||||
.team__area-item-content-social {
|
||||
position: absolute;
|
||||
bottom: 55px;
|
||||
}
|
||||
&:hover {
|
||||
.team__area-item-content-social {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-social {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: 0.4s;
|
||||
margin-bottom: 10px;
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
i {
|
||||
display: inline-flex;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
border-radius: 50%;
|
||||
background:var(--color-2);
|
||||
color: var(--text-heading-color);
|
||||
transition: 0.4s;
|
||||
&:hover {
|
||||
background: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&:hover .team__area-item-content {
|
||||
transform: translateY(-10px);
|
||||
&-icon span {
|
||||
background: var(--color-1);
|
||||
color: var(--text-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
86
resources/css/sass/section/_testimonial.scss
Normal file
86
resources/css/sass/section/_testimonial.scss
Normal file
@@ -0,0 +1,86 @@
|
||||
/*==========================================================================
|
||||
* Testimonial One CSS
|
||||
==========================================================================*/
|
||||
.testimonial__one {
|
||||
overflow: hidden;
|
||||
&-item {
|
||||
border: 1px solid var(--border-color-2);
|
||||
padding: 50px;
|
||||
border-radius: 10px;
|
||||
background: var(--bg-white);
|
||||
&-client {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 25px;
|
||||
&-image {
|
||||
img {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
max-width: 70px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin-top: 30px;
|
||||
font-size: 27px;
|
||||
line-height: 36px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
&-reviews {
|
||||
margin-top: 30px;
|
||||
i {
|
||||
color: var(--primary-color-1);
|
||||
transition: 0.4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.page {
|
||||
background: var(--color-2);
|
||||
.testimonial__one-item {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*==========================================================================
|
||||
* Testimonial Two CSS
|
||||
==========================================================================*/
|
||||
.testimonial__two {
|
||||
background: var(--color-2);
|
||||
overflow: hidden;
|
||||
.testimonial__one-item {
|
||||
border-color: var(--border-color-1);
|
||||
p {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
}
|
||||
.testimonial_two_slide {
|
||||
margin-right: -420px;
|
||||
}
|
||||
}
|
||||
.testimonial__three {
|
||||
.testimonial__one-item {
|
||||
p {
|
||||
margin: 15px 0 40px 0;
|
||||
color: var(--text-heading-color);
|
||||
}
|
||||
&-reviews {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.testimonial__two .testimonial_two_slide {
|
||||
margin: 0 10px 0 10px;
|
||||
}
|
||||
.testimonial__two .testimonial__one-item,
|
||||
.testimonial__one-item {
|
||||
padding: 30px;
|
||||
p {
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
56
resources/css/sass/section/_video.scss
Normal file
56
resources/css/sass/section/_video.scss
Normal file
@@ -0,0 +1,56 @@
|
||||
/*==========================================================================
|
||||
* Video CSS
|
||||
==========================================================================*/
|
||||
.video__area {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 250px 0;
|
||||
&-icon {
|
||||
text-align: center;
|
||||
.video a {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
font-size: 26px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.video__two {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 250px 0 120px 0;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: linear-gradient(180deg, #FFFBFB00 0%, var(--color-1) 100%);
|
||||
z-index: -1;
|
||||
}
|
||||
&-icon {
|
||||
text-align: center;
|
||||
.video a {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
font-size: 26px;
|
||||
}
|
||||
}
|
||||
.scroll__slider {
|
||||
margin-top: 150px;
|
||||
ul li a {
|
||||
color: var(--text-white);
|
||||
&:hover {
|
||||
color: var(--primary-color-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7693
resources/css/sass/style.css
Normal file
7693
resources/css/sass/style.css
Normal file
File diff suppressed because it is too large
Load Diff
1
resources/css/sass/style.css.map
Normal file
1
resources/css/sass/style.css.map
Normal file
File diff suppressed because one or more lines are too long
2
resources/css/sass/style.scss
Normal file
2
resources/css/sass/style.scss
Normal file
@@ -0,0 +1,2 @@
|
||||
@import 'default/all';
|
||||
@import 'section/all';
|
||||
@@ -0,0 +1,3 @@
|
||||
<x-filament-panels::page>
|
||||
|
||||
</x-filament-panels::page>
|
||||
58
resources/views/web/layouts/app.blade.php
Normal file
58
resources/views/web/layouts/app.blade.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ app()->getLocale() }}">
|
||||
<head>
|
||||
<!-- Start Meta -->
|
||||
@include('web.layouts.meta-tags')
|
||||
|
||||
<!-- Title of Site -->
|
||||
<title>@isset($title) {{ "{$title} |" }} @endisset {{ $settings->name }}</title>
|
||||
|
||||
<!-- Favicons -->
|
||||
@include('web.layouts.favicons')
|
||||
|
||||
{{-- Styles --}}
|
||||
@include('web.layouts.styles')
|
||||
|
||||
{{-- Header css --}}
|
||||
@stack('header-css')
|
||||
</head>
|
||||
<body>
|
||||
{{-- Loader --}}
|
||||
@include('web.layouts.loader')
|
||||
|
||||
{{-- Custom cursor --}}
|
||||
@include('web.layouts.cursor')
|
||||
|
||||
{{-- Settings button --}}
|
||||
@include('web.layouts.settings-button')
|
||||
|
||||
{{-- Search input box --}}
|
||||
@include('web.layouts.navigation.search-box')
|
||||
|
||||
{{-- PC habmurger --}}
|
||||
@include('web.layouts.navigation.pc-hamburger')
|
||||
|
||||
{{-- Mobile menu --}}
|
||||
@include('web.layouts.navigation.mobile-menu')
|
||||
|
||||
{{-- Navigation Links --}}
|
||||
@include('web.layouts.navigation.header')
|
||||
|
||||
{{-- Page content --}}
|
||||
@yield('content')
|
||||
|
||||
{{-- Footer --}}
|
||||
@include('web.layouts.footer')
|
||||
|
||||
{{-- Copy right --}}
|
||||
@include('web.layouts.copy-right')
|
||||
|
||||
{{-- Scroll to top button --}}
|
||||
@include('web.layouts.scroll-top-button')
|
||||
|
||||
{{-- Footer js --}}
|
||||
@include('web.layouts.footer-js')
|
||||
|
||||
@stack('footer-js')
|
||||
</body>
|
||||
</html>
|
||||
23
resources/views/web/layouts/copy-right.blade.php
Normal file
23
resources/views/web/layouts/copy-right.blade.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<!-- Copyright Area Start -->
|
||||
<div class="copyright__area four">
|
||||
<div class="container">
|
||||
<div class="row al-center">
|
||||
<div class="col-md-7">
|
||||
<div class="copyright__area-content md-t-center md-mb-10">
|
||||
<p>{{ $settings->copyright_text }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<div class="copyright__area-social t-right md-t-center">
|
||||
<ul>
|
||||
<li><a href="https://{{ $socialMedia->facebook_url }}" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->twitter_url }}" target="_blank"><i class="fa-brands fa-x-twitter"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->instagram_url }}" target="_blank"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->linkedin_url }}" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Copyright Area End -->
|
||||
4
resources/views/web/layouts/cursor.blade.php
Normal file
4
resources/views/web/layouts/cursor.blade.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<div class="cursor">
|
||||
<div class="hide"><div id="cursor-ball"></div></div>
|
||||
<div id="cursor-text"></div>
|
||||
</div>
|
||||
6
resources/views/web/layouts/favicons.blade.php
Normal file
6
resources/views/web/layouts/favicons.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
|
||||
<link rel="shortcut icon" href="/favicon/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
|
||||
<meta name="apple-mobile-web-app-title" content="Gujurly" />
|
||||
<link rel="manifest" href="/favicon/site.webmanifest" />
|
||||
28
resources/views/web/layouts/footer-js.blade.php
Normal file
28
resources/views/web/layouts/footer-js.blade.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<!-- Main JS -->
|
||||
<script src="/web/assets/js/jquery-3.6.0.min.js"></script>
|
||||
<!-- Bootstrap JS -->
|
||||
<script src="/web/assets/js/bootstrap.min.js"></script>
|
||||
<!-- Counter up -->
|
||||
<script src="/web/assets/js/jquery.counterup.min.js"></script>
|
||||
<!-- Popper JS -->
|
||||
<script src="/web/assets/js/popper.min.js"></script>
|
||||
<!-- Progressbar JS -->
|
||||
<script src="/web/assets/js/progressbar.min.js"></script>
|
||||
<!-- Magnific JS -->
|
||||
<script src="/web/assets/js/jquery.magnific-popup.min.js"></script>
|
||||
<!-- Swiper JS -->
|
||||
<script src="/web/assets/js/swiper-bundle.min.js"></script>
|
||||
<!-- Waypoints JS -->
|
||||
<script src="/web/assets/js/jquery.waypoints.min.js"></script>
|
||||
<!-- Isotope JS -->
|
||||
<script src="/web/assets/js/isotope.pkgd.min.js"></script>
|
||||
<!-- WOW Js -->
|
||||
<script src="/web/assets/js/wow.min.js"></script>
|
||||
<!-- Gsap Js -->
|
||||
<script src="/web/assets/js/gsap.js"></script>
|
||||
<!-- Scroll Trigger Js -->
|
||||
<script src="/web/assets/js/scroll-trigger.js"></script>
|
||||
<!-- Split Text Js -->
|
||||
<script src="/web/assets/js/split-text.js"></script>
|
||||
<!-- Custom JS -->
|
||||
<script src="/web/assets/js/custom.js"></script>
|
||||
57
resources/views/web/layouts/footer.blade.php
Normal file
57
resources/views/web/layouts/footer.blade.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<!-- Footer Area Start -->
|
||||
<div class="footer__four">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="footer__four-area">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-sm-6">
|
||||
<div class="footer__four-widget mr-40">
|
||||
<a href="/" class="logo align-items-center d-flex gap-2">
|
||||
<img src="/web/assets/img/logo-small.png" style="height: 35px;" alt="Gujurly Inžener logo">
|
||||
<span style="font-size: 2em;color: var(--text-heading-color);">Gujurly Inžener</span>
|
||||
</a>
|
||||
<h5>{{ $settings->footer_company_header }}</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-sm-6 sm-mt-30">
|
||||
<div class="footer__four-widget address">
|
||||
<h4>{{ __('Address') }}</h4>
|
||||
<div class="footer__four-widget-address">
|
||||
<h6><a href="https://www.google.com/maps">{{ $settings->company_address }}</a></h6>
|
||||
<h4><a href="tel:{{ $settings->company_phone }}">{{ $settings->company_phone }}</a></h4>
|
||||
<h4 class="mt-0"><a href="tel:{{ $settings->company_phone_2 }}">{{ $settings->company_phone_2 }}</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-sm-6 lg-mt-30">
|
||||
<div class="footer__four-widget ml-40 lg-ml-0">
|
||||
<h4>{{ __('Quick links') }}</h4>
|
||||
<div class="footer-widget-menu">
|
||||
<ul>
|
||||
<li><a href="{{ route('about-us.index') }}">{{ __('About Us') }}</a></li>
|
||||
<li><a href="{{ route('our-solutions.index') }}">{{ __('Our solutions') }}</a></li>
|
||||
<li><a href="{{ route('career.index') }}">{{ __('Career Opportunities') }}</a></li>
|
||||
<li><a href="{{ route('story.index') }}">{{ __('Success stories') }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-sm-6 lg-mt-30">
|
||||
<div class="footer__four-widget address">
|
||||
<h4>{{ __('Support') }}</h4>
|
||||
<div class="footer-widget-menu">
|
||||
<ul>
|
||||
<li><a href="{{ route('terms') }}">{{ __('Terms & Conditions') }}</a></li>
|
||||
<li><a href="{{ route('privacy') }}">{{ __('Privacy policy') }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Footer Area End -->
|
||||
9
resources/views/web/layouts/loader.blade.php
Normal file
9
resources/views/web/layouts/loader.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<!-- Preloader start -->
|
||||
<div class="theme-loader">
|
||||
<div class="spinner">
|
||||
<div class="spinner-bounce one"></div>
|
||||
<div class="spinner-bounce two"></div>
|
||||
<div class="spinner-bounce three"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Preloader end -->
|
||||
6
resources/views/web/layouts/meta-tags.blade.php
Normal file
6
resources/views/web/layouts/meta-tags.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="description" content="{{ $settings->description }}" />
|
||||
<meta name="keywords" content="{{ $settings->tagline }}">
|
||||
<meta name="author" content="Webulgam">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
73
resources/views/web/layouts/navigation/header.blade.php
Normal file
73
resources/views/web/layouts/navigation/header.blade.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<!-- Header Area Start -->
|
||||
<div class="header__four">
|
||||
<div class="custom_container">
|
||||
<div class="header__area-menubar">
|
||||
<div class="header__area-menubar-left one">
|
||||
<div class="bg-white header__area-menubar-left-logo p-1 rounded-3">
|
||||
{{-- class="align-items-center d-flex gap-2" --}}
|
||||
<a href="/">
|
||||
{{-- <img src="/favicon/favicon.svg" style="height: 55px;" alt="{{ $settings->name }} logo"> --}}
|
||||
<img src="/web/assets/img/logo-with-text-below.png" style="height: 55px;" alt="{{ $settings->name }} logo">
|
||||
{{-- <span class="text-white" style="font-size: 2em;">{{ $settings->name }}</span> --}}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-center">
|
||||
<div class="header__area-menubar-center-menu">
|
||||
<ul id="mobilemenu">
|
||||
<li><a href="/">{{ __('Home') }}</a></li>
|
||||
<li><a href="{{ route('about-us.index') }}">{{ __('About Us') }}</a></li>
|
||||
|
||||
<li class="menu-item-has-children"><a href="{{ route('our-solutions.index') }}">{{ __('Our solutions') }}</a>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="history.html">Company History</a></li>
|
||||
<li><a href="testimonial.html">Testimonials</a></li>
|
||||
<li><a href="pricing.html">Price Plans</a></li>
|
||||
<li><a href="faq.html">FAQ's</a></li>
|
||||
<li><a href="request-quote.html">Request Quote</a></li>
|
||||
<li><a href="404-error.html">404 Page</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item-has-children"><a href="#">{{ __('News & Stories') }}</a>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="{{ route('news.index') }}">{{ __('News') }}</a></li>
|
||||
<li><a href="{{ route('story.index') }}">{{ __('Success Stories') }}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item-has-children"><a href="#">{{ __('Careers') }}</a>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="{{ route('career.index') }}">{{ __('Career Opportunities') }}</a></li>
|
||||
<li><a href="{{ route('internship.index') }}">{{ __('Internships') }}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="{{ route('contact.index') }}">{{ __('Contact') }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right">
|
||||
{{-- <div class="header__area-menubar-right-search">
|
||||
<div class="search">
|
||||
<span class="header__area-menubar-right-search-icon open"><i class="fal fa-search"></i></span>
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="header__area-menubar-right-btn one">
|
||||
<div class="item_bounce">
|
||||
<a class="build_button" href="#">{{ __('Get Started') }}<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar">
|
||||
<div class="header__area-menubar-right-sidebar-icon">
|
||||
<i class="flaticon-menu-6"></i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-responsive-menu menu__bar">
|
||||
<i class="flaticon-menu-3"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Header Area End -->
|
||||
19
resources/views/web/layouts/navigation/mobile-menu.blade.php
Normal file
19
resources/views/web/layouts/navigation/mobile-menu.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<!-- Mobile Menu Start -->
|
||||
<div class="menu__bar-popup">
|
||||
<div class="menu__bar-popup-top">
|
||||
<div class="logo">
|
||||
<a href="/" class="align-items-center d-flex gap-2">
|
||||
<img src="/web/assets/img/logo-small.png" style="height: 35px;" alt="{{ $settings->name }} logo">
|
||||
<span class="text-white" style="font-size: 2em;">{{ $settings->name }}</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="close"><i class="fal fa-times"></i></div>
|
||||
</div>
|
||||
<div class="vertical-menu">
|
||||
<div class="vertical_menu">
|
||||
<!-- Here Menu Will Come Automatically Via Javascript / Same Menu as in Header -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="menu__bar-popup-overlay"></div>
|
||||
<!-- Mobile Menu End -->
|
||||
@@ -0,0 +1,52 @@
|
||||
<!-- Hamburger Start -->
|
||||
<div class="header__area-menubar-right-sidebar-popup">
|
||||
<div class="sidebar-close-btn"><i class="fal fa-times"></i></div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-logo">
|
||||
<a href="/" class="align-items-center d-flex gap-2">
|
||||
<img src="/web/assets/img/logo-small.png" style="height: 35px;" alt="{{ $settings->name }} logo">
|
||||
<span class="text-white" style="font-size: 2em;">{{ $settings->name }}</span>
|
||||
</a>
|
||||
</div>
|
||||
<p>{{ $settings->description }}</p>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact">
|
||||
<h4 class="mb-30">{{ __('Address') }}</h4>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item">
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-icon">
|
||||
<i class="flaticon-phone"></i>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-content">
|
||||
<span>{{ __('Phone') }}:</span>
|
||||
<h6><a href="tel:{{ $settings->company_phone }}">{{ $settings->company_phone }}</a></h6>
|
||||
<h6><a href="tel:{{ $settings->company_phone_2 }}">{{ $settings->company_phone_2 }}</a></h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item">
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-icon">
|
||||
<i class="flaticon-email-3"></i>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-content">
|
||||
<span>{{ __('Email Address') }}:</span>
|
||||
<h6><a href="mailto:{{ $settings->company_email }}">{{ $settings->company_email }}</a></h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item">
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-icon">
|
||||
<i class="flaticon-location-1"></i>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-contact-item-content">
|
||||
<span>{{ __('Location') }}:</span>
|
||||
<h6><a href="https://google.com/maps" target="_blank">{{ $settings->company_address }}</a></h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header__area-menubar-right-sidebar-popup-social">
|
||||
<ul>
|
||||
<li><a href="https://{{ $socialMedia->facebook_url }}" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->twitter_url }}" target="_blank"><i class="fa-brands fa-x-twitter"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->instagram_url }}" target="_blank"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="https://{{ $socialMedia->linkedin_url }}" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-overlay"></div>
|
||||
<!-- Hamburger End -->
|
||||
@@ -0,0 +1,9 @@
|
||||
<!-- Search Box Start -->
|
||||
<div class="header__area-menubar-right-search-box">
|
||||
<form>
|
||||
<input type="search" placeholder="{{ __('Search Here') }}.....">
|
||||
<button type="submit"><i class="fal fa-search"></i></button>
|
||||
</form>
|
||||
<span class="header__area-menubar-right-search-box-icon"><i class="fal fa-times"></i></span>
|
||||
</div>
|
||||
<!-- Search Box End -->
|
||||
5
resources/views/web/layouts/scroll-top-button.blade.php
Normal file
5
resources/views/web/layouts/scroll-top-button.blade.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<!-- Scroll Btn Start -->
|
||||
<div class="scroll-up scroll-one">
|
||||
<svg class="scroll-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102"><path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" /> </svg>
|
||||
</div>
|
||||
<!-- Scroll Btn End -->
|
||||
17
resources/views/web/layouts/settings-button.blade.php
Normal file
17
resources/views/web/layouts/settings-button.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<!-- Dark Light Start -->
|
||||
<div class="switch__tab">
|
||||
<div class="switch__tab-icon">
|
||||
<div class="switch__tab-open"><i class="fa-sharp fa-light fa-gear"></i></div>
|
||||
<div class="switch__tab-close"><i class="fal fa-times"></i></div>
|
||||
</div>
|
||||
<div class="switch__tab-area">
|
||||
<div class="switch__tab-area-item">
|
||||
<h5>{{ __('Mode') }}</h5>
|
||||
<div class="switch__tab-area-item-button type-dark-mode">
|
||||
<button class="active" data-mode="light">{{ __('light') }}</button>
|
||||
<button data-mode="dark-mode">{{ __('dark') }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Dark Light End -->
|
||||
14
resources/views/web/layouts/styles.blade.php
Normal file
14
resources/views/web/layouts/styles.blade.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="/web/assets/css/bootstrap.min.css">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="/web/assets/css/fontawesome.css">
|
||||
<!-- Flaticon -->
|
||||
<link rel="stylesheet" href="/web/assets/font/flaticon_flexitype.css">
|
||||
<!-- Animate CSS -->
|
||||
<link rel="stylesheet" href="/web/assets/css/animate.css">
|
||||
<!-- Swiper -->
|
||||
<link rel="stylesheet" href="/web/assets/css/swiper-bundle.min.css">
|
||||
<!-- Magnific -->
|
||||
<link rel="stylesheet" href="/web/assets/css/magnific-popup.css">
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="/web/assets/css/style.css">
|
||||
853
resources/views/web/pages/about/index.blade.php
Normal file
853
resources/views/web/pages/about/index.blade.php
Normal file
File diff suppressed because one or more lines are too long
464
resources/views/web/pages/home/index.blade.php
Normal file
464
resources/views/web/pages/home/index.blade.php
Normal file
@@ -0,0 +1,464 @@
|
||||
@extends('web.layouts.app')
|
||||
|
||||
@section('content')
|
||||
<!-- Banner Area Start -->
|
||||
<div class="banner__four">
|
||||
{{-- BG video --}}
|
||||
<div class="bg-video">
|
||||
<video autoplay muted loop id="myVideo"><source src="{{ $homepage->bg_video }}" type="video/mp4"></video>
|
||||
</div>
|
||||
|
||||
{{-- Hero --}}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="banner__four-content">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">{{ $homepage->hero_badge_text }}</span>
|
||||
<div class="title_split_anim">
|
||||
<h1>{{ $homepage->hero_header }}</h1>
|
||||
<h2>{{ $homepage->hero_sub_header }}</h2>
|
||||
</div>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button" href="{{ $homepage->hero_link_button_url }}">{{ $homepage->hero_link_button_text }}<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
<a href="#"><img class="h_rotate" src="/web/assets/img/shape/content.png" alt="image"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="banner__four-brand">
|
||||
<div class="title">
|
||||
<h4>{{ __('Our Trusted Partners') }}</h4>
|
||||
</div>
|
||||
<div class="scroll__slider">
|
||||
<div class="text-slide">
|
||||
<div class="sliders text_scroll">
|
||||
<ul>
|
||||
@foreach($brands as $brand)
|
||||
<li><img src="{{ $brand->imageUrl() }}" style="max-height: 30px;" alt="image"></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sliders text_scroll">
|
||||
<ul>
|
||||
@foreach($brands as $brand)
|
||||
<li><img src="{{ $brand->imageUrl() }}" style="max-height: 30px;" alt="image"></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Banner Area End -->
|
||||
|
||||
<!-- About Area Start -->
|
||||
<div class="about__four section-padding">
|
||||
<div class="container">
|
||||
<div class="row al-center">
|
||||
<div class="col-lg-3 lg-mb-25">
|
||||
<div class="about__four-left wow img_top_animation">
|
||||
<img src="/web/assets/img/about/about-5.jpg" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-9">
|
||||
<div class="about__four-title">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">About Our Company</span>
|
||||
<h2 class="title_split_anim mb-20">Leading Construction Innovation With Digital Consulting</h2>
|
||||
<p class="wow fadeInUp" data-wow-delay=".4s">We focus on optimizing efficiency, managing risks, and delivering innovative solutions tailored to meet unique project needs and enhance productivity.</p>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button mt-25" href="history.html">Our Story<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-30">
|
||||
<div class="col-lg-8">
|
||||
<div class="about__four-counter">
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-sm-6 wow fadeInUp" data-wow-delay=".4s">
|
||||
<div class="about__four-counter-item">
|
||||
<div class="box">
|
||||
<h2><span class="counter">678</span>+</h2>
|
||||
<span>Complete Projects</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-6 wow fadeInUp" data-wow-delay=".7s">
|
||||
<div class="about__four-counter-item borders t-center md-t-left">
|
||||
<div class="box">
|
||||
<h2><span class="counter">120</span>+</h2>
|
||||
<span>Team Members</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-6 wow fadeInUp" data-wow-delay="1s">
|
||||
<div class="about__four-counter-item t-right md-t-left">
|
||||
<div class="box">
|
||||
<h2><span class="counter">635</span>+</h2>
|
||||
<span>Client Reviews</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 lg-mt-25">
|
||||
<div class="about__four-right t-right wow img_right_animation">
|
||||
<img src="/web/assets/img/about/about-6.jpg" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- About Area End -->
|
||||
|
||||
<!-- Services Area Start -->
|
||||
<div class="services__four section-padding pt-0">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-5 col-lg-6 lg-mb-25">
|
||||
<div class="services__four-title section-padding pb-0">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">Our Services</span>
|
||||
<h2 class="title_split_anim">Provide Quality Services</h2>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button mt-40" href="services.html">more Services<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-7 col-lg-6">
|
||||
<div class="services__four-image wow img_top_animation">
|
||||
<img src="/web/assets/img/page/services.jpg" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-70 wow fadeInUp" data-wow-delay=".5s">
|
||||
<div class="col-xl-12">
|
||||
<div class="swiper services_four_slide data_cursor" data-cursor-text="Drag">
|
||||
<div class="swiper-wrapper">
|
||||
<div class="swiper-slide">
|
||||
<div class="services__one-item">
|
||||
<i class="flaticon-it-department"></i>
|
||||
<h4><a href="#">Flooring Installation</a></h4>
|
||||
<a class="more_btn" href="#">Read More<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="services__one-item">
|
||||
<i class="flaticon-project"></i>
|
||||
<h4><a href="#">Building Architecture</a></h4>
|
||||
<a class="more_btn" href="#">Read More<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="services__one-item">
|
||||
<i class="flaticon-design-thinking"></i>
|
||||
<h4><a href="#">Interior Design</a></h4>
|
||||
<a class="more_btn" href="#">Read More<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="services__one-item">
|
||||
<i class="flaticon-data"></i>
|
||||
<h4><a href="#">House Renovation</a></h4>
|
||||
<a class="more_btn" href="#">Read More<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Services Area End -->
|
||||
<!-- Success Area Start -->
|
||||
<div class="success__area section-padding">
|
||||
<div class="container">
|
||||
<div class="row al-center">
|
||||
<div class="col-lg-6 lg-mb-25">
|
||||
<div class="success__area-title mr-70 xl-mr-0">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">Construction Advices</span>
|
||||
<h2 class="title_split_anim mb-20">Building Success With Expert Advisory Services</h2>
|
||||
<p class="wow fadeInUp" data-wow-delay=".4s">With a focus on innovation and sustainability, we help you navigate complex challenges, ensuring</p>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button mt-25" href="contact.html">Get Advices<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="success__area-right">
|
||||
<img class="lg_img_full wow img_top_animation" src="/web/assets/img/page/skill.jpg" alt="image">
|
||||
<div class="success__area-right-skill mt-40 wow fadeInUp" data-wow-delay=".5s">
|
||||
<div class="skill__area-item">
|
||||
<div class="skill__area-item-content">
|
||||
<h6>Building Construction</h6>
|
||||
<span class="skill__area-item-count"><span class="counter">89</span>%</span>
|
||||
</div>
|
||||
<div class="skill__area-item-inner">
|
||||
<div class="skill__area-item-bar" data-width="89"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="skill__area-item">
|
||||
<div class="skill__area-item-content">
|
||||
<h6>Interiors Design</h6>
|
||||
<span class="skill__area-item-count"><span class="counter">70</span>%</span>
|
||||
</div>
|
||||
<div class="skill__area-item-inner">
|
||||
<div class="skill__area-item-bar" data-width="70"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Success Area End -->
|
||||
<!-- Portfolio Area Start -->
|
||||
<div class="portfolio__four">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="portfolio__four-area">
|
||||
<div class="portfolio__four-area-item">
|
||||
<img src="/web/assets/img/portfolio/portfolio-6.jpg" alt="image">
|
||||
<div class="portfolio__four-area-item-area">
|
||||
<div class="portfolio__one-item-content">
|
||||
<span>Hospitality</span>
|
||||
<h4><a href="#" class="text-white">Seaside Resort Expansion</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio__four-area-item">
|
||||
<img src="/web/assets/img/portfolio/portfolio-2.jpg" alt="image">
|
||||
<div class="portfolio__four-area-item-area">
|
||||
<div class="portfolio__one-item-content">
|
||||
<span>Retail</span>
|
||||
<h4><a href="#" class="text-white">Urban Mall Development</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio__four-area-item">
|
||||
<img src="/web/assets/img/portfolio/portfolio-4.jpg" alt="image">
|
||||
<div class="portfolio__four-area-item-area">
|
||||
<div class="portfolio__one-item-content">
|
||||
<span>Residential</span>
|
||||
<h4><a href="#" class="text-white">Luxury Home Renovation</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio__four-area-item">
|
||||
<img src="/web/assets/img/portfolio/portfolio-8.jpg" alt="image">
|
||||
<div class="portfolio__four-area-item-area">
|
||||
<div class="portfolio__one-item-content">
|
||||
<span>Architecture</span>
|
||||
<h4><a href="#" class="text-white">Modern Architecture</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container mt-60">
|
||||
<div class="row al-center">
|
||||
<div class="col-xl-5 col-md-7 md-mb-25 lg-t-center title_split_anim">
|
||||
<h3>Get Expert Construction Advice and a Free Quote</h3>
|
||||
</div>
|
||||
<div class="col-xl-7 col-md-5 t-right lg-t-center">
|
||||
<div class="item_bounce">
|
||||
<a class="build_button" href="request-quote.html">Start a Journey<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Portfolio Area End -->
|
||||
<!-- Industry Area Start -->
|
||||
<div class="industry__four section-padding">
|
||||
<div class="container">
|
||||
<div class="row al-center">
|
||||
<div class="col-lg-6 lg-mb-30">
|
||||
<div class="industry__four-left">
|
||||
<img class="lg_img_full wow img_top_animation" src="/web/assets/img/page/image-2.jpg" alt="image">
|
||||
<div class="row mt-40">
|
||||
<div class="col-md-6 md-mb-25 wow fadeInUp" data-wow-delay=".4s">
|
||||
<div class="industry__four-left-item borders pr-10 lg-pr-0">
|
||||
<img src="/web/assets/img/icon/icon-3.svg" alt="image">
|
||||
<h5>Custom Designs</h5>
|
||||
<p>Tailored building solutions that reflect your vision style</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 wow fadeInUp" data-wow-delay=".8s">
|
||||
<div class="industry__four-left-item pl-20 xl-pl-0">
|
||||
<img src="/web/assets/img/icon/icon-2.svg" alt="image">
|
||||
<h5>Interior Plans</h5>
|
||||
<p>Creating aesthetically pleasing functional interior spaces</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="industry__four-right ml-45 xl-ml-0">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">Industry Certifications</span>
|
||||
<h2 class="title_split_anim mb-20">We Drive Client Success with Creative Building Designs</h2>
|
||||
<p class="wow fadeInUp" data-wow-delay=".4s">At BuildGo, we pride ourselves on transforming our clients' visions into reality. Our innovative and client-focused designs ensure that every project stands out.</p>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button mt-25" href="contact.html">Contact Us<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Industry Area End -->
|
||||
<!-- Text Slide Area Start -->
|
||||
<div class="text__slide section-padding">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 lg-mb-30">
|
||||
<div class="text__slide-title mt-35 lg-mt-0">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">Construction design</span>
|
||||
<h2 class="title_split_anim">Digital Consulting The Key to Smarter Building</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="text__slide-right">
|
||||
<img class="wow img_left_animation" src="/web/assets/img/page/cta.jpg" alt="image">
|
||||
<div class="text__slide-right-counter item_bounce" style="background-image: url('/web/assets/img/shape/content-1.png');">
|
||||
<h2><span class="counter">29</span>+</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="scroll__slider">
|
||||
<div class="text-slide">
|
||||
<div class="sliders text_scroll">
|
||||
<ul>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Residential</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Architecture</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Community</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Healthcare</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Seaside Resort</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Modern</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sliders text_scroll">
|
||||
<ul>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Residential</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Architecture</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Community</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Healthcare</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Seaside Resort</a></li>
|
||||
<li><img src="/web/assets/img/icon/star-dark.svg" alt="icon"><a href="portfolio-details">Modern</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Text Slide Area End -->
|
||||
<!-- Blog Area Start -->
|
||||
<div class="blog__four section-padding-two">
|
||||
<div class="container">
|
||||
<div class="row mb-30">
|
||||
<div class="col-xl-12">
|
||||
<div class="blog__four-title t-center">
|
||||
<span class="subtitle wow fadeInLeft" data-wow-delay=".4s">News & Blog</span>
|
||||
<h2 class="title_split_anim">Update News & Blogs</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-md-6 mt-25 wow fadeInUp" data-wow-delay=".4s">
|
||||
<div class="blog__four-item">
|
||||
<div class="blog__four-item-image">
|
||||
<a href="blog-details.html"><img src="/web/assets/img/blog/blog-1.jpg" alt="image"></a>
|
||||
<div class="blog__four-item-image-date">
|
||||
<h5>22</h5>
|
||||
<h6>Dec</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blog__four-item-content">
|
||||
<div class="meta">
|
||||
<ul>
|
||||
<li><a href="#"><i class="far fa-user"></i>By-Admin</a></li>
|
||||
<li><a href="#"><i class="far fa-comment-dots"></i>Comments (3)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h4><a href="blog-details.html">How Weather Can Impact a Construction Project</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-md-6 mt-25 wow fadeInUp" data-wow-delay=".7s">
|
||||
<div class="blog__four-item">
|
||||
<div class="blog__four-item-image">
|
||||
<a href="blog-details.html"><img src="/web/assets/img/blog/blog-2.jpg" alt="image"></a>
|
||||
<div class="blog__four-item-image-date">
|
||||
<h5>19</h5>
|
||||
<h6>Dec</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blog__four-item-content">
|
||||
<div class="meta">
|
||||
<ul>
|
||||
<li><a href="#"><i class="far fa-user"></i>By-Admin</a></li>
|
||||
<li><a href="#"><i class="far fa-comment-dots"></i>Comments (3)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h4><a href="blog-details.html">How to Choose the Perfect Construction Company</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-md-6 mt-25 wow fadeInUp" data-wow-delay="1s">
|
||||
<div class="blog__four-item">
|
||||
<div class="blog__four-item-image">
|
||||
<a href="blog-details.html"><img src="/web/assets/img/blog/blog-3.jpg" alt="image"></a>
|
||||
<div class="blog__four-item-image-date">
|
||||
<h5>14</h5>
|
||||
<h6>Dec</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blog__four-item-content">
|
||||
<div class="meta">
|
||||
<ul>
|
||||
<li><a href="#"><i class="far fa-user"></i>By-Admin</a></li>
|
||||
<li><a href="#"><i class="far fa-comment-dots"></i>Comments (3)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h4><a href="blog-details.html">Top Mistakes to Avoid During Home Renovation</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Blog Area End -->
|
||||
|
||||
<!-- Cta Area Start -->
|
||||
<div class="cta__four">
|
||||
<div class="container">
|
||||
<div class="row jc-center">
|
||||
<div class="col-xl-12">
|
||||
<div class="cta__four-area t-center" style="background-image: url('/web/assets/img/page/subscribe.jpg');">
|
||||
<div class="cta__four-area-content">
|
||||
<h2 class="title_split_anim">Join Our Community and Access Exclusive Insights Today</h2>
|
||||
<div class="item_bounce">
|
||||
<a class="build_button mt-40" href="request-quote.html">Free Consultation<i class="flaticon-right-up"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Cta Area End -->
|
||||
@stop
|
||||
277
resources/views/welcome.blade.php
Normal file
277
resources/views/welcome.blade.php
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user