Commit 36ddaa18 by rajshah

Merge branch 'dev' of gitlab.makuracreations.xyz:rajshah/makura-2025 into dev

parents 52cb9fad b941d99b
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -78,11 +78,55 @@ ...@@ -78,11 +78,55 @@
}); });
/** MAKURA LATEST FAQ EXPAND COLLAPSE ENDS HERE */ /** MAKURA LATEST FAQ EXPAND COLLAPSE ENDS HERE */
/** STICKY TAB AT MASTER PORTFOLIO START HERE */ /** MOBILE OFFCANVAS TOC START HERE */
$(function () { $(function () {
$(".sticky-tab"); $(".blog-side-bar h6").on("click", function () {
$(this).addClass("remove");
$(".category-list").addClass("active");
});
$(".category-list a").on("click", function () {
$(".blog-side-bar h6").removeClass("remove");
$(".category-list").removeClass("active");
});
$(document).on("click", function (e) {
if (!$(e.target).closest(".blog-side-bar").length) {
$(".blog-side-bar h6").removeClass("remove");
$(".category-list").removeClass("active");
}
});
$(window).on("scroll", function () {
$(".blog-side-bar h6").removeClass("remove");
$(".category-list").removeClass("active");
});
const tocObserver = new IntersectionObserver(
function (entries) {
entries.forEach((entry) => {
if (entry.isIntersecting) {
$(".blog-side-bar h6").show();
} else {
$(".blog-side-bar h6").hide();
}
});
},
{
threshold: 0.1,
},
);
const sections = [
document.querySelector(".BLOGDETAIL-LIST-ITEM-SECTION"),
document.querySelector(".BLOGLISTING-LIST-ITEM-SECTION"),
];
sections.length &&
sections.forEach((section) => {
if (section) tocObserver.observe(section);
});
}); });
/** STICKY TAB AT MASTER PORTFOLIO ENDS HERE */ /** MOBILE OFFCANVAS TOC ENDS HERE */
/** GALLERY LIGHT BOX AND DYNAMIC SLIDER START HERE */ /** GALLERY LIGHT BOX AND DYNAMIC SLIDER START HERE */
$(function () { $(function () {
...@@ -97,13 +141,14 @@ ...@@ -97,13 +141,14 @@
slideBy: 2, slideBy: 2,
autoplay: true, autoplay: true,
autoplayHoverPause: true, autoplayHoverPause: true,
stagePadding: 50,
responsive: { responsive: {
0: { items: 1.2, slideBy: 1 }, 0: { items: 1, slideBy: 1 },
575: { items: 2.1, slideBy: 2 }, 575: { items: 2, slideBy: 2 },
767: { items: 3.2 }, 767: { items: 3 },
991: { items: 4.2 }, 991: { items: 4 },
1199: { items: 5.2 }, 1199: { items: 5 },
1399: { items: 6.2 }, 1399: { items: 6 },
}, },
}); });
......
<?php if(get_field('enable_section')):?> <?php if(get_field('enable_section')):?>
<section class="container-fluid py-80 ABOUT MEET-OUR-TEAM-SECTION"> <section class="container-fluid py-80 ABOUT MEET-OUR-TEAM-SECTION">
<div class="container"> <div class="container">
<div class="row">
<div class="col-xl-7 col-lg-6 col-md-8 text-center col-12 m-auto pb-80 title-wrapper">
<h2><?php the_field('title');?></h2>
<?php the_field('description');?>
</div>
<?php if($members = get_field('members')):?>
<div class="about-team">
<div class="row"> <div class="row">
<div class="col-lg-5 col-md-5 text-center col-12 m-auto pb-80 title-wrapper"> <?php foreach($members as $member):?>
<h2><?php the_field('title');?></h2> <div class="col-sm-6 col-md-4 col-lg-3 mb-3 team-card">
<?php the_field('description');?> <div href="meet-our-team" class="card">
<?php echo get_the_post_thumbnail($member);?>
<div class="info text-center">
<h5><?php echo get_the_title($member);?></h5>
<span><?php echo get_field('designation',$member);?></span>
</div>
</div> </div>
<?php if($members = get_field('members')):?> </div>
<div class="about-team"> <?php endforeach;?>
<div class="row">
<?php foreach($members as $member):?>
<div class="col-sm-6 col-md-4 col-lg-3 mb-3 team-card">
<div href="meet-our-team" class="card">
<?php echo get_the_post_thumbnail($member);?>
<div class="info text-center">
<h5><?php echo get_the_title($member);?></h5>
<span><?php echo get_field('designation',$member);?></span>
</div>
</div>
</div>
<?php endforeach;?>
</div>
<?php if ($link = get_field('link')) : $link_target = $link['target'] ? $link['target'] : '_self';?>
<a href="<?php echo $link['url']; ?>" target="<?php echo esc_attr( $link_target ); ?>"
class="btn d-flex m-auto mt-60 align-items-center start-project btn-start-project-white"
style="width: fit-content; margin: auto;"><?php echo $link['title']; ?>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4 13L16.17 13L10.58 18.59L12 20L20 12L12 4L10.59 5.41L16.17 11L4 11L4 13Z" fill="white">
</path>
</svg>
</a>
<?php endif;?>
</div>
<?php endif;?>
</div> </div>
<?php if ($link = get_field('link')) : $link_target = $link['target'] ? $link['target'] : '_self';?>
<a href="<?php echo $link['url']; ?>" target="<?php echo esc_attr( $link_target ); ?>"
class="btn d-flex m-auto mt-60 align-items-center start-project btn-start-project-white"
style="width: fit-content; margin: auto;"><?php echo $link['title']; ?>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4 13L16.17 13L10.58 18.59L12 20L20 12L12 4L10.59 5.41L16.17 11L4 11L4 13Z" fill="white">
</path>
</svg>
</a>
<?php endif;?>
</div>
<?php endif;?>
</div> </div>
</div>
</section> </section>
<?php endif;?> <?php endif;?>
\ No newline at end of file
<?php if(get_field('enable_section')):?> <?php if(get_field('enable_section')):?>
<section class="container-fluid py-80 SERVICE HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION"> <section class="container-fluid py-80 SERVICE HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="title-wrapper"> <div class="title-wrapper">
<h3><?php the_field('title');?></h3> <h3><?php the_field('title');?></h3>
<?php the_field('description');?> <?php the_field('description');?>
</div> </div>
</div>
<?php if(have_rows('content')): while(have_rows('content')): the_row();?>
<div class="row">
<div class="col-lg-6 m-auto left-text-wrapper">
<div class="text-wrapper">
<h2><?php the_sub_field('title');?></h2>
<?php the_sub_field('description');?>
</div>
<div class="technology-used">
<h3><?php the_sub_field('technology_title');?></h3>
<?php if($images = get_sub_field('technology_images')):?>
<ul class="d-flex list-unstyled flex-wrap">
<?php foreach( $images as $image_id ): ?>
<li>
<?php echo wp_get_attachment_image( $image_id, 'full' ); ?>
</li>
<?php endforeach;?>
</ul>
<?php endif;?>
</div> </div>
<?php if(have_rows('content')): while(have_rows('content')): the_row();?> </div>
<div class="row"> <div class="col-lg-6 m-auto right-image-wrapper">
<div class="col-lg-6 m-auto left-text-wrapper"> <div class="image-wrapper">
<div class="text-wrapper"> <?php if($image=get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
<h2><?php the_sub_field('title');?></h2>
<?php the_sub_field('description');?>
</div>
<div class="technology-used">
<h3><?php the_sub_field('technology_title');?></h3>
<?php if($images = get_sub_field('technology_images')):?>
<ul class="d-flex list-unstyled">
<?php foreach( $images as $image_id ): ?>
<li>
<?php echo wp_get_attachment_image( $image_id, 'full' ); ?>
</li>
<?php endforeach;?>
</ul>
<?php endif;?>
</div>
</div>
<div class="col-lg-6 m-auto right-image-wrapper">
<div class="image-wrapper">
<?php if($image=get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
</div>
</div>
</div> </div>
<?php endwhile; endif;?> </div>
</div> </div>
<?php endwhile; endif;?>
</div>
</section> </section>
<?php endif;?> <?php endif;?>
\ No newline at end of file
<?php if(get_field('enable_section')):?> <?php if(get_field('enable_section')):?>
<section class="container-fluid py-80 SERVICE HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION"> <section class="container-fluid py-80 SERVICE HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="title-wrapper"> <div class="title-wrapper">
<h3><?php the_field('title');?></h3> <h3><?php the_field('title');?></h3>
<?php the_field('description');?> <?php the_field('description');?>
</div> </div>
</div>
<?php if(have_rows('content')): while(have_rows('content')): the_row();?>
<div class="row">
<div class="col-lg-6 m-auto left-text-wrapper">
<div class="text-wrapper">
<h2><?php the_sub_field('title');?></h2>
<?php the_sub_field('description');?>
</div>
<div class="technology-used">
<h3><?php the_sub_field('technology_title');?></h3>
<?php if($images = get_sub_field('technology_images')):?>
<ul class="d-flex list-unstyled flex-wrap">
<?php foreach( $images as $image_id ): ?>
<li>
<?php echo wp_get_attachment_image( $image_id, 'full' ); ?>
</li>
<?php endforeach;?>
</ul>
<?php endif;?>
</div> </div>
<?php if(have_rows('content')): while(have_rows('content')): the_row();?> </div>
<div class="row"> <div class="col-lg-6 m-auto right-image-wrapper">
<div class="col-lg-6 m-auto left-text-wrapper"> <div class="image-wrapper">
<div class="text-wrapper"> <?php if($image=get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
<h2><?php the_sub_field('title');?></h2>
<?php the_sub_field('description');?>
</div>
<div class="technology-used">
<h3><?php the_sub_field('technology_title');?></h3>
<?php if($images = get_sub_field('technology_images')):?>
<ul class="d-flex list-unstyled">
<?php foreach( $images as $image_id ): ?>
<li>
<?php echo wp_get_attachment_image( $image_id, 'full' ); ?>
</li>
<?php endforeach;?>
</ul>
<?php endif;?>
</div>
</div>
<div class="col-lg-6 m-auto right-image-wrapper">
<div class="image-wrapper">
<?php if($image=get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
</div>
</div>
</div> </div>
<?php endwhile; endif;?> </div>
</div> </div>
<?php endwhile; endif;?>
</div>
</section> </section>
<?php endif;?> <?php endif;?>
\ No newline at end of file
<?php if(get_field('enable_section')):?> <?php if(get_field('enable_section')):?>
<section class="my-60 WORKS-ON-WORK-SECTION"> <section class="my-60 WORKS-ON-WORK-SECTION">
<div class="container"> <div class="container">
<div class="row">
<div class="main-wrapper">
<div class="top-title-wrapper">
<h2><?php the_field('title');?></h2>
<?php the_field('description');?>
</div>
</div>
<?php if(have_rows('steps')): ?>
<div class="inner-list-wrapper">
<div class="row"> <div class="row">
<div class="main-wrapper"> <?php while(have_rows('steps')): the_row();?>
<div class="top-title-wrapper"> <div class="text-center mx-auto col-lg-2 col-sm-6 mb-2">
<h2><?php the_field('title');?></h2> <div class="m-auto icon-wrapper">
<?php the_field('description');?> <?php if($image = get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
</div>
</div>
<?php if(have_rows('steps')): ?>
<div class="inner-list-wrapper">
<div class="row">
<?php while(have_rows('steps')): the_row();?>
<div class="text-center mx-auto col-lg-2 col-6 mb-2">
<div class="m-auto icon-wrapper">
<?php if($image = get_sub_field('image')): echo wp_get_attachment_image($image,'full'); endif;?>
</div>
<h5><?php the_sub_field('title');?></h5>
<?php the_sub_field('description');?>
</div>
<?php endwhile;?>
</div>
</div> </div>
<?php endif;?> <h5><?php the_sub_field('title');?></h5>
<?php the_sub_field('description');?>
</div>
<?php endwhile;?>
</div> </div>
</div>
<?php endif;?>
</div> </div>
</div>
</section> </section>
<?php endif;?> <?php endif;?>
\ No newline at end of file
...@@ -1025,6 +1025,7 @@ ul { ...@@ -1025,6 +1025,7 @@ ul {
.blog-side-bar { .blog-side-bar {
display: block; display: block;
z-index: 2;
&.show { &.show {
transform: unset; transform: unset;
...@@ -1039,19 +1040,67 @@ ul { ...@@ -1039,19 +1040,67 @@ ul {
} }
@media (max-width: 1023.98px) { @media (max-width: 1023.98px) {
position: fixed; // position: fixed;
display: none; // // display: none;
top: 0; // top: 0;
width: 100%; // width: 100%;
left: 0; // left: 0;
padding: 2.875rem; // padding: 2.875rem;
overflow-y: scroll; // overflow-y: scroll;
background-color: #fff; // background-color: #fff;
height: 100vh; // height: 100vh;
z-index: 1111; // z-index: 1111;
-webkit-transition: all 0.3s ease; // -webkit-transition: all 0.3s ease;
transition: all 0.5s ease; // transition: all 0.5s ease;
transform: translateY(100%); // transform: translateY(100%);
h6,
.category-list {
position: fixed;
top: 50vh;
left: 0;
z-index: 2;
}
h6 {
box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
border-radius: 4px 4px 0 0;
padding: 8px 16px;
transform: rotate(90deg);
transform-origin: left bottom;
background-color: $primary;
color: $white !important;
font-size: 1rem !important;
word-spacing: 4px;
&.remove {
opacity: 0;
visibility: hidden;
transform: translateX(-100%);
}
}
.category-list {
border-radius: 8px;
padding: 16px;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transform: translateX(-100%);
max-height: 240px;
overflow: auto !important;
background-color: $white;
max-width: 75%;
ul {
overflow: visible !important;
}
&.active {
opacity: 1;
visibility: visible;
transform: translateX(0);
}
}
.blog-filter-bar-close { .blog-filter-bar-close {
display: block; display: block;
...@@ -1068,7 +1117,8 @@ ul { ...@@ -1068,7 +1117,8 @@ ul {
transform: scale(1.1); transform: scale(1.1);
} }
h3 { h3,
h6 {
color: $primary; color: $primary;
} }
} }
......
...@@ -277,6 +277,19 @@ ...@@ -277,6 +277,19 @@
} }
} }
} }
.breadcrumb-background-dark {
+ section {
margin-top: -2px;
}
}
.general-breadcrumb {
.breadcrumb-item {
&::before {
content: "";
background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.79425 5.64963L9.44083 5.00205L9.43891 5.00012L8.78656 4.34481L6.9873 2.53739L4.72042 0.258301L2.44199 2.54899L0.640807 4.3564L0.00192476 5.00012L0 5.00205L0.64658 5.64963L2.44584 7.45898L4.72042 9.74193L6.99307 7.45898L8.79425 5.64963Z' fill='%23121526'/%3E%3C/svg%3E%0A");
}
}
}
// 1.9: Form Group // 1.9: Form Group
.form-group { .form-group {
...@@ -495,6 +508,10 @@ ...@@ -495,6 +508,10 @@
.recent-card-wrapper { .recent-card-wrapper {
margin-bottom: 4rem !important; margin-bottom: 4rem !important;
// display: none; // display: none;
svg {
transition: all 0.3s ease-in-out;
}
} }
.load-more-content { .load-more-content {
&.hide { &.hide {
...@@ -521,7 +538,8 @@ ...@@ -521,7 +538,8 @@
font-weight: 600; font-weight: 600;
line-height: 24px; line-height: 24px;
letter-spacing: -0.4px; letter-spacing: -0.4px;
&.active { &.active,
&:hover {
color: #005aff !important; color: #005aff !important;
} }
} }
...@@ -589,16 +607,27 @@ ...@@ -589,16 +607,27 @@
} }
} }
.recent-card-wrapper { .recent-card-wrapper {
// transition: all 0.3s ease-in-out;
// border-radius: 0 0 8px 8px;
&:hover { &:hover {
// box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.1);
.bottom-text { .bottom-text {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6,
p {
color: $primary; color: $primary;
} }
svg {
transform: translate(2px, -2px);
path {
stroke: $primary;
}
}
} }
} }
img { img {
...@@ -806,7 +835,7 @@ ...@@ -806,7 +835,7 @@
padding: 1.125rem 1rem; padding: 1.125rem 1rem;
color: #000; color: #000;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 16px;
font-weight: 400; font-weight: 400;
letter-spacing: -0.3px; letter-spacing: -0.3px;
resize: none; resize: none;
...@@ -1082,6 +1111,11 @@ ...@@ -1082,6 +1111,11 @@
} }
} }
} }
.sent-quote-btn-wrapper {
.action-button {
margin-right: 1rem !important;
}
}
} }
// error message contact form 7 // error message contact form 7
......
//section-footer //section-footer
.upper-footer { .upper-footer {
position: relative; position: relative;
min-height: 29.75rem; min-height: 29.75rem;
@media (max-width: 1200px) { @media (max-width: 1200px) {
min-height: 35rem; min-height: 35rem;
} }
@media (max-width: 991px) { @media (max-width: 991px) {
min-height: 33rem; min-height: 33rem;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
min-height: 20rem; min-height: 20rem;
} }
@media (max-width: 576px) { @media (max-width: 576px) {
min-height: 20rem; min-height: 20rem;
} }
.inner-text-wrapper { .inner-text-wrapper {
.inner-wrapper { .inner-wrapper {
position: relative; position: relative;
h2 { h2 {
margin-bottom: 4.0625rem; margin-bottom: 4.0625rem;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
font-size: 1.5rem !important; font-size: 1.5rem !important;
} }
&:before { &:before {
content: ""; content: "";
background-image: url("https://makuracreations.com/wp-content/themes/makura/assets/img/footer-left-arrow.png"); background-image: url("https://makuracreations.com/wp-content/themes/makura/assets/img/footer-left-arrow.png");
height: 200px; height: 200px;
width: 200px; width: 200px;
background-size: contain; background-size: contain;
background-repeat: no-repeat; background-repeat: no-repeat;
position: absolute; position: absolute;
left: -27%; left: -27%;
@media (max-width: 1023.98px) { @media (max-width: 1023.98px) {
height: 150px; height: 150px;
width: 150px; width: 150px;
} }
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
height: 130px; height: 130px;
width: 130px; width: 130px;
left: -46%; left: -46%;
} }
@media (max-width: 424.98px) { @media (max-width: 424.98px) {
display: none; display: none;
} }
} }
} }
} }
a { a {
position: relative; position: relative;
width: 15.75rem; width: 15.75rem;
display: block; display: block;
margin: 0 auto; margin: 0 auto;
&::before { &::before {
content: ""; content: "";
background-image: url("https://makuracreations.com/wp-content/themes/makura/assets/img/start-project.png"); background-image: url("https://makuracreations.com/wp-content/themes/makura/assets/img/start-project.png");
background-size: contain; background-size: contain;
background-repeat: no-repeat; background-repeat: no-repeat;
position: absolute; position: absolute;
display: block; display: block;
height: 70px; height: 70px;
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
top: -50%; top: -50%;
left: 0; left: 0;
} }
} }
} }
.left-img { .left-img {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
img { img {
height: 100%; height: 100%;
width: 100%; width: 100%;
object-fit: contain; object-fit: contain;
@media (max-width: 1023.98px) { @media (max-width: 1023.98px) {
height: 100%; height: 100%;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
height: 7rem; height: 7rem;
width: 7rem; width: 7rem;
object-fit: contain; object-fit: contain;
} }
} }
} }
.right-img { .right-img {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
right: 0; right: 0;
img { img {
height: 100%; height: 100%;
width: 100%; width: 100%;
object-fit: contain; object-fit: contain;
@media (max-width: 1023.98px) { @media (max-width: 1023.98px) {
height: 100%; height: 100%;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
height: 7rem; height: 7rem;
width: 7rem; width: 7rem;
object-fit: contain; object-fit: contain;
} }
} }
} }
} }
.section-footer { .section-footer {
.row { .row {
@media (max-width: 991px) { @media (max-width: 991px) {
justify-content: center; justify-content: center;
margin: auto; margin: auto;
text-align: center; text-align: center;
.col-lg-5 { .col-lg-5 {
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
ul { ul {
justify-content: center !important; justify-content: center !important;
margin-top: 1rem; margin-top: 1rem;
} }
} }
} }
.lower-footer { .lower-footer {
padding: 0 0 2rem 0; padding: 0 0 2rem 0;
.nav-item { .nav-item {
.font-16 { .font-16 {
@media (max-width: 991px) { @media (max-width: 991px) {
font-size: 0.75rem !important; font-size: 0.75rem !important;
} }
} }
} }
.top-ul { .top-ul {
justify-content: center; justify-content: center;
margin: 0; margin: 0;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
flex-direction: column; flex-direction: column;
li { li {
padding-right: 0 !important; padding-right: 0 !important;
margin: 0 auto; margin: 0 auto;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
} }
li { li {
padding-right: 1rem; padding-right: 1rem;
a { a {
color: rgba(255, 255, 255, 0.56); color: rgba(255, 255, 255, 0.56);
transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
padding: 0 20px; padding: 0 20px;
&:hover { &:hover {
color: white; color: white;
text-decoration: underline; text-decoration: underline;
} }
} }
&:last-of-type { &:last-of-type {
padding-right: 0; padding-right: 0;
} }
} }
} }
} }
.social-links { .social-links {
margin-bottom: 2rem; margin-bottom: 2rem;
border-bottom: 2px solid #000; border-bottom: 2px solid #000;
padding-bottom: 2rem; padding-bottom: 2rem;
ul { ul {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 0; margin-bottom: 0;
@media (max-width: 425px) { @media (max-width: 425px) {
li { li {
a { a {
padding: 0 1rem !important; padding: 0 1rem !important;
} }
} }
} }
li { li {
@media screen and (max-width: 1024.98px) { @media screen and (max-width: 1024.98px) {
margin: 0; margin: 0;
text-align: center; text-align: center;
} }
a { a {
color: rgba(255, 255, 255, 0.56); color: rgba(255, 255, 255, 0.56);
padding: 0 2rem; padding: 0 2rem;
transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
svg { svg {
&:hover { &:hover {
path { path {
fill: #868fce; fill: #868fce;
} }
} }
path { path {
transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;
} }
} }
} }
} }
} }
} }
span { span {
color: rgba(255, 255, 255, 0.56) !important; color: rgba(255, 255, 255, 0.56) !important;
} }
.footer-bottom-right-content { .footer-bottom-right-content {
li { li {
&:first-child { &:first-child {
margin-right: 2rem; margin-right: 2rem;
} }
a { a {
color: rgba(255, 255, 255, 0.56); color: rgba(255, 255, 255, 0.56);
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
line-height: 180%; line-height: 180%;
letter-spacing: -0.4px; letter-spacing: -0.4px;
} &:hover {
} text-decoration: underline;
} }
}
}
}
} }
//section-footer //section-footer
html {
&:has(body.modal-open) {
overflow: hidden;
max-height: 100vh;
}
body.modal-open {
max-height: 100vh;
overflow: hidden;
}
}
footer { footer {
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
.btn-primary,
.btn-start-project-white {
position: relative;
z-index: 1;
overflow: hidden;
&::before {
content: "";
position: absolute;
inset: 0;
transform: translateX(-150%);
opacity: 0;
visibility: hidden;
background-color: $background-dark;
transition: all 0.25s ease-in-out;
z-index: -1;
}
&:hover {
transform: translateY(0);
border-color: $background-dark;
&::before {
transform: translateX(0);
opacity: 1;
visibility: visible;
}
}
}
.makura-new { .makura-new {
h6 { h6 {
font-size: 18px !important; font-size: 18px !important;
...@@ -42,33 +83,6 @@ footer { ...@@ -42,33 +83,6 @@ footer {
text-underline-offset: 2px; text-underline-offset: 2px;
} }
.btn-primary {
position: relative;
z-index: 1;
overflow: hidden;
&::before {
content: "";
position: absolute;
inset: 0;
transform: translateX(-150%);
opacity: 0;
visibility: hidden;
background-color: $background-dark;
transition: all 0.25s ease-in-out;
z-index: -1;
}
&:hover {
transform: translateY(0);
&::before {
transform: translateX(0);
opacity: 1;
visibility: visible;
}
}
}
.sm-text { .sm-text {
font-size: 1.125rem !important; font-size: 1.125rem !important;
line-height: 22px; line-height: 22px;
......
//TOP-BANNER-SECTION //TOP-BANNER-SECTION
.TOP-BANNER-SECTION { .TOP-BANNER-SECTION {
&.background-dark { &.background-dark {
background: #005aff !important; background: #005aff !important;
} }
.btn-start-project,
.btn-start-project { .btn-start-project {
background-color: #121526; background-color: #121526;
}
.left-text-wrapper { &:hover {
&::before { color: $primary !important;
display: none; border-color: $white;
} &::before {
p { background-color: $white;
margin: 1.5rem 0 0 0; }
} }
} }
.nav-pills { .left-text-wrapper {
padding: 1.5rem 0; &::before {
@media (max-width: 767.98px) { display: none;
padding: 1.5rem; }
} p {
border-top: 1px solid #58595a; margin: 1.5rem 0 0 0;
border-bottom: 1px solid #58595a; }
margin-bottom: 0 !important; }
li { .nav-pills {
margin-right: 2.75rem; padding: 1.5rem 0;
&:last-child { @media (max-width: 767.98px) {
margin-right: 0; padding: 1.5rem;
} }
} border-top: 1px solid #58595a;
button { border-bottom: 1px solid #58595a;
padding: 0; margin-bottom: 0 !important;
background-color: unset !important; li {
color: #f9f8f4 !important; margin-right: 2.75rem;
font-family: $body-font; &:last-child {
font-size: 1rem; margin-right: 0;
font-weight: 600; }
line-height: 24px; }
letter-spacing: -0.4px; button {
&.active { padding: 0;
color: #000000 !important; background-color: unset !important;
} color: #f9f8f4 !important;
} font-family: $body-font;
} font-size: 1rem;
font-weight: 600;
line-height: 24px;
letter-spacing: -0.4px;
&.active {
color: #000000 !important;
}
}
}
} }
//TOP-BANNER-SECTION //TOP-BANNER-SECTION
//ABOUTPAGE //ABOUTPAGE
.ABOUTPAGE-COUTER { .ABOUTPAGE-COUTER {
.card-wrapper { .card-wrapper {
.experience, .experience,
.client, .client,
.experts { .experts {
padding: 1.9375rem 4.25rem; padding: 1.9375rem 4.25rem;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
height: 158px; height: 158px;
margin: 0 auto; margin: 0 auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
span { span {
font-weight: 600; font-weight: 600;
font-size: 44px; font-size: 44px;
} }
p { p {
font-weight: 500; font-weight: 500;
} }
} }
} }
} }
//ABOUTPAGE //ABOUTPAGE
//ABOUT-TOP-AFTER-COUNTER-SECTION //ABOUT-TOP-AFTER-COUNTER-SECTION
.ABOUT-TOP-AFTER-COUNTER-SECTION { .ABOUT-TOP-AFTER-COUNTER-SECTION {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
font-size: 2rem !important; font-size: 2rem !important;
} }
p { p {
font-size: 1.125rem !important; font-size: 1.125rem !important;
} }
.right-image-wrapper { .right-image-wrapper {
.image-wrapper { .image-wrapper {
img { img {
height: 20rem !important; height: 20rem !important;
width: 20rem !important; width: 20rem !important;
display: flex !important; display: flex !important;
margin: auto !important; margin: auto !important;
} }
} }
} }
} }
.left-text-wrapper { .left-text-wrapper {
span { span {
font-weight: 600; font-weight: 600;
font-size: 14px; font-size: 14px;
color: #005aff; color: #005aff;
} }
.text-wrapper { .text-wrapper {
h2 { h2 {
font-size: 2.75rem; font-size: 2.75rem;
margin-top: 1.25rem; margin-top: 1.25rem;
} }
p { p {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
} }
} }
} }
.right-image-wrapper { .right-image-wrapper {
.image-wrapper { .image-wrapper {
img { img {
height: 25rem; height: 25rem;
width: 25rem; width: 25rem;
object-fit: contain; object-fit: contain;
} }
} }
} }
} }
//ABOUT-TOP-AFTER-COUNTER-SECTION //ABOUT-TOP-AFTER-COUNTER-SECTION
//MISSION-VISION-SECTION //MISSION-VISION-SECTION
.MISSION-VISION-SECTION { .MISSION-VISION-SECTION {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
font-weight: 600; font-weight: 600;
font-size: 2.5rem; font-size: 2.5rem;
margin-bottom: 5.75rem; margin-bottom: 5.75rem;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
font-size: 2rem !important; font-size: 2rem !important;
margin-bottom: 2rem; margin-bottom: 2rem;
} }
} }
.row { .row {
padding-bottom: 7rem; padding-bottom: 7rem;
&:nth-child(odd) { &:nth-child(odd) {
flex-direction: row-reverse; flex-direction: row-reverse;
.left-text-wrapper { .left-text-wrapper {
.text-wrapper { .text-wrapper {
padding-right: 0; padding-right: 0;
} }
} }
} }
&:nth-last-of-type() { &:nth-last-of-type() {
padding-bottom: 0; padding-bottom: 0;
} }
.left-text-wrapper { .left-text-wrapper {
.text-wrapper { .text-wrapper {
padding-right: 1.25rem; padding-right: 1.25rem;
h2 { h2 {
font-size: 2.75rem; font-size: 2.75rem;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
p { p {
margin-bottom: 1.75rem; margin-bottom: 1.75rem;
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
font-size: 1.125rem !important; font-size: 1.125rem !important;
} }
} }
} }
} }
.right-image-wrapper { .right-image-wrapper {
.image-wrapper { .image-wrapper {
img { img {
max-height: 25rem; max-height: 25rem;
width: 100%; width: 100%;
object-fit: contain; object-fit: contain;
mix-blend-mode: darken; mix-blend-mode: darken;
} }
} }
} }
} }
} }
//MISSION-VISION-SECTION //MISSION-VISION-SECTION
//technologies-use-innovating //technologies-use-innovating
.technologies-use-innovating { .technologies-use-innovating {
.title { .title {
color: #121526; color: #121526;
font-family: $body-font; font-family: $body-font;
font-size: 1.5rem; font-size: 1.5rem;
font-weight: 600; font-weight: 600;
letter-spacing: -0.6px; letter-spacing: -0.6px;
} }
} }
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
font-size: 1.125rem; font-size: 1.125rem;
display: flex; display: flex;
position: relative; position: relative;
z-index: 1;
flex-direction: column; flex-direction: column;
padding-left: 18px; padding-left: 18px;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
......
// woocommerce css // woocommerce css
@media (max-width: 600px) { @media (max-width: 600px) {
.whats-app-icon-wrapper { .whats-app-icon-wrapper {
right: 2% !important; right: 2% !important;
} }
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.whats-app-icon-wrapper { .whats-app-icon-wrapper {
padding: 0 !important; padding: 0 !important;
} }
.whats-app-icon-wrapper svg { .whats-app-icon-wrapper svg {
width: 50px; width: 50px;
height: 50px; height: 50px;
} }
} }
.whats-app-icon-wrapper { .whats-app-icon-wrapper {
position: fixed; position: fixed;
bottom: 80px; bottom: 80px;
right: 20px; right: 2%;
padding: 10px; max-width: 51px;
border-radius: 5px; // padding: 10px;
text-decoration: none; border-radius: 5px;
z-index: 10; text-decoration: none;
z-index: 10;
a {
display: block;
svg {
max-width: 100%;
}
}
} }
.whats-app-icon-wrapper:hover .tooltip-wrapper { .whats-app-icon-wrapper:hover .tooltip-wrapper {
opacity: 1; opacity: 1;
} }
.whats-app-icon-wrapper .tooltip-wrapper { .whats-app-icon-wrapper .tooltip-wrapper {
top: 23%; top: 23%;
left: -8rem; left: -8rem;
background-color: #34c759; background-color: #34c759;
border-radius: 8px; border-radius: 8px;
pointer-events: none; pointer-events: none;
opacity: 0; opacity: 0;
transition: 0.6s ease-in-out; transition: 0.6s ease-in-out;
} }
.whats-app-icon-wrapper .tooltip-wrapper p { .whats-app-icon-wrapper .tooltip-wrapper p {
margin: 0; margin: 0;
padding: 10px; padding: 10px;
color: #fff; color: #fff;
} }
@-moz-document url-prefix() { @-moz-document url-prefix() {
.owl-item { .owl-item {
margin-right: 12px !important; margin-right: 12px !important;
} }
} }
/* technology-carousel-wrapper */ /* technology-carousel-wrapper */
.technology-carousel-wrapper .owl-stage { .technology-carousel-wrapper .owl-stage {
justify-content: center; justify-content: center;
margin: auto; margin: auto;
} }
body { body {
zoom: 90%; zoom: 90%;
} }
.modal-backdrop.show { .modal-backdrop.show {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none !important; -webkit-appearance: none !important;
margin: 0 !important; margin: 0 !important;
} }
input[type="number"] { input[type="number"] {
-moz-appearance: textfield !important; -moz-appearance: textfield !important;
} }
.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors { .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
display: none !important; display: none !important;
} }
// woocommerce css // woocommerce css
.HOME { .HOME {
&.home2 { &.home2 {
background-image: url("https://makuracreations.com/images/showcase-bg.jpg"); background-image: url("https://makuracreations.com/images/showcase-bg.jpg");
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
} }
&.TOP-BANNER-SECTION { &.TOP-BANNER-SECTION {
.left-text { .left-text {
.left-text-wrapper { .left-text-wrapper {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
} }
img { img {
height: 100%; height: 100%;
width: 100%; width: 100%;
} }
} }
&.TOP-CAROUSEL-SECTION { &.TOP-CAROUSEL-SECTION {
.row { .row {
margin-bottom: 0 !important; margin-bottom: 0 !important;
} }
} }
} }
.project-diagram { .project-diagram {
.top-row { .top-row {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
display: block !important; display: block !important;
} }
.inner-top-wrapper { .inner-top-wrapper {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
display: block !important; display: block !important;
text-align: center; text-align: center;
img { img {
margin-bottom: 1.375rem; margin-bottom: 1.375rem;
} }
} }
.svg-wrapper1 { .svg-wrapper1 {
left: -7rem; left: -7rem;
top: 1.875rem; top: 1.875rem;
transform: rotate(335deg); transform: rotate(335deg);
@media (min-width: 1369.98px) and (max-width: 1920px) { @media (min-width: 1369.98px) and (max-width: 1920px) {
top: 2.875rem; top: 2.875rem;
} }
@media (max-width: 1024px) { @media (max-width: 1024px) {
display: none; display: none;
} }
} }
img { img {
height: 9.25rem; height: 9.25rem;
width: 10.375rem; width: 10.375rem;
object-fit: contain; object-fit: contain;
margin-right: 1.25rem; margin-right: 1.25rem;
} }
} }
} }
.bottom-row { .bottom-row {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
display: block !important; display: block !important;
text-align: center; text-align: center;
} }
.inner-wrapper { .inner-wrapper {
.svg-wrapper2 { .svg-wrapper2 {
left: -20rem; left: -20rem;
transform: rotate(250deg); transform: rotate(250deg);
top: -7rem; top: -7rem;
@media (min-width: 1369.98px) and (max-width: 1920px) { @media (min-width: 1369.98px) and (max-width: 1920px) {
top: -8rem; top: -8rem;
svg { svg {
height: 305px; height: 305px;
width: 329px; width: 329px;
} }
} }
@media (max-width: 1024px) { @media (max-width: 1024px) {
display: none; display: none;
} }
} }
.svg-wrapper3 { .svg-wrapper3 {
top: -128px; top: -128px;
left: 5rem; left: 5rem;
transform: rotate(358deg); transform: rotate(358deg);
@media (min-width: 1369.98px) and (max-width: 1920px) { @media (min-width: 1369.98px) and (max-width: 1920px) {
svg { svg {
height: 159px; height: 159px;
width: 139px; width: 139px;
path { path {
stroke-width: 2; stroke-width: 2;
} }
} }
} }
@media (max-width: 1024px) { @media (max-width: 1024px) {
display: none; display: none;
} }
} }
.svg-wrapper4 { .svg-wrapper4 {
top: -6rem; top: -6rem;
transform: rotate(258deg); transform: rotate(258deg);
left: -23rem; left: -23rem;
@media (min-width: 1369.98px) and (max-width: 1920px) { @media (min-width: 1369.98px) and (max-width: 1920px) {
top: -8rem; top: -8rem;
transform: rotate(258deg); transform: rotate(258deg);
left: -24rem; left: -24rem;
svg { svg {
height: 270px; height: 270px;
width: 500px; width: 500px;
} }
} }
@media (max-width: 1024px) { @media (max-width: 1024px) {
display: none; display: none;
} }
} }
img { img {
height: 9.25rem; height: 9.25rem;
width: 10.375rem; width: 10.375rem;
object-fit: contain; object-fit: contain;
margin-bottom: 1.375rem; margin-bottom: 1.375rem;
} }
} }
} }
} }
.analysis-section { .analysis-section {
@media (max-width: 991px) { @media (max-width: 991px) {
.row { .row {
flex-direction: column-reverse; flex-direction: column-reverse;
} }
} }
&.background-dark { &.background-dark {
background-color: #005aff !important; background-color: #005aff !important;
} }
.col-lg-7 { .col-lg-7 {
position: relative; position: relative;
} }
img { img {
width: 100%; width: 100%;
height: 23rem; height: 23rem;
object-fit: contain; object-fit: contain;
pointer-events: none; pointer-events: none;
position: absolute; position: absolute;
bottom: 0; bottom: 0;
// padding: 0rem 5rem; // padding: 0rem 5rem;
@media (max-width: 768px) { @media (max-width: 768px) {
margin-left: 0; margin-left: 0;
} }
@media (max-width: 991px) { @media (max-width: 991px) {
position: relative; position: relative;
height: 100%; height: 100%;
} }
} }
.right-content-wrapper { .right-content-wrapper {
span { span {
color: #005aff; color: #005aff;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 600; font-weight: 600;
letter-spacing: -0.3px; letter-spacing: -0.3px;
margin-bottom: 0.375rem; margin-bottom: 0.375rem;
} }
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
color: $white; color: $white;
font-family: $body-font; font-family: $body-font;
font-size: 2.75rem; font-size: 2.75rem;
font-weight: 600; font-weight: 600;
line-height: 60px; line-height: 60px;
letter-spacing: -1.4px; letter-spacing: -1.4px;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
p { p {
color: $white !important; color: $white !important;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
line-height: 28px; line-height: 28px;
letter-spacing: -0.5px; letter-spacing: -0.5px;
} }
a { a {
width: fit-content; width: fit-content;
background: white; background: white;
color: #000 !important; color: #000 !important;
}
} &:hover {
color: $white !important;
// &::before {
// background-color: $primary;
// }
}
}
}
} }
.TOP-BANNER-SECTION { .TOP-BANNER-SECTION {
.left-text { .left-text {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
margin-bottom: 3.75rem; margin-bottom: 3.75rem;
} }
.left-text-wrapper { .left-text-wrapper {
&::before { &::before {
content: ""; content: "";
// background-image: url(../../assets/img/home-back.png); // background-image: url(../../assets/img/home-back.png);
background-image: url(../../assets/img/home-back2.png); background-image: url(../../assets/img/home-back2.png);
display: block; display: block;
background-size: contain; background-size: contain;
background-repeat: no-repeat; background-repeat: no-repeat;
width: 220px; width: 220px;
height: 220.12px; height: 220.12px;
left: -63px; left: -63px;
top: -90px; top: -90px;
position: absolute; position: absolute;
@media (max-width: 1100.9px) { @media (max-width: 1100.9px) {
width: 220px; width: 220px;
height: 220.12px; height: 220.12px;
left: -46px; left: -46px;
top: -56px; top: -56px;
} }
@media (max-width: 767.9px) { @media (max-width: 767.9px) {
width: 198px; width: 198px;
height: 119.12px; height: 119.12px;
left: -15px; left: -15px;
top: 0; top: 0;
} }
} }
} }
} }
.img-wrapper { .img-wrapper {
img { img {
max-height: 500px; max-height: 500px;
object-fit: contain; object-fit: contain;
} }
} }
} }
.TOP-CAROUSEL-SECTION { .TOP-CAROUSEL-SECTION {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
.title-wrapper { .title-wrapper {
padding-bottom: 1rem; padding-bottom: 1rem;
} }
.partners-carousel { .partners-carousel {
.item { .item {
img { img {
object-fit: contain; object-fit: contain;
height: 150px; height: 150px;
} }
} }
} }
.client-carouselwrapper { .client-carouselwrapper {
.owl-stage { .owl-stage {
display: flex; display: flex;
align-items: center; align-items: center;
} }
img { img {
width: auto; width: auto;
height: auto; height: auto;
object-fit: contain; object-fit: contain;
} }
.owl-carousel.owl-drag .owl-item { .owl-carousel.owl-drag .owl-item {
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
} }
.experience-card, .experience-card,
.clients-served, .clients-served,
.working-experts { .working-experts {
padding: 1.9375rem 0; padding: 1.9375rem 0;
position: relative; position: relative;
&::before { &::before {
content: ""; content: "";
background-image: url("../../assets/img/makurajalo.svg"); background-image: url("../../assets/img/makurajalo.svg");
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: contain; background-size: contain;
position: absolute; position: absolute;
right: -23%; right: -23%;
width: 15.4276rem; width: 15.4276rem;
height: 15.4616rem; height: 15.4616rem;
transform: rotate(112.957deg); transform: rotate(112.957deg);
opacity: 0.3; opacity: 0.3;
} }
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
color: $white; color: $white;
font-family: $body-font; font-family: $body-font;
font-size: 2.75rem; font-size: 2.75rem;
font-weight: 600; font-weight: 600;
margin-bottom: 0.375rem; margin-bottom: 0.375rem;
} }
} }
} }
// HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION // HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION
.HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION { .HOMEPAGE-TOP-AFTER-CAROUSEL-SECTION {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
font-size: 1.875rem !important; font-size: 1.875rem !important;
} }
} }
&.SERVICE { &.SERVICE {
.left-text-wrapper { .left-text-wrapper {
.text-wrapper { .text-wrapper {
h2 { h2 {
color: #121526 !important; color: #121526 !important;
font-family: $body-font !important; font-family: $body-font !important;
font-size: 1.5rem !important; font-size: 1.5rem !important;
font-weight: 600 !important; font-weight: 600 !important;
letter-spacing: -0.6px !important; letter-spacing: -0.6px !important;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
} }
} }
} }
.row { .row {
margin-bottom: 6rem; margin-bottom: 6rem;
&:last-child {
margin-bottom: 0; &:has(.title-wrapper) {
} margin-bottom: 0;
&:nth-child(even) { }
flex-direction: row-reverse;
padding-bottom: 0; .title-wrapper {
@media (max-width: 767.98px) { margin-bottom: 3rem;
flex-direction: column-reverse; }
}
.left-text-wrapper { &:last-child {
.text-wrapper { margin-bottom: 0;
padding-right: 0; }
} &:nth-child(even) {
} flex-direction: row-reverse;
} padding-bottom: 0;
@media (max-width: 767.98px) {
&:nth-last-of-type() { flex-direction: column-reverse;
padding-bottom: 0; }
} .left-text-wrapper {
.text-wrapper {
.left-text-wrapper { padding-right: 0;
.text-wrapper { }
padding-right: 1.25rem; }
}
h2 {
color: #121526; &:nth-last-of-type() {
font-family: $body-font; padding-bottom: 0;
font-size: 2.5rem; }
font-weight: 600;
line-height: 43px; .left-text-wrapper {
letter-spacing: -1.4px; .text-wrapper {
margin-bottom: 1.5rem; padding-right: 1.25rem;
}
h2 {
p { color: #121526;
color: #58595a; font-family: $body-font;
font-family: $body-font; font-size: 2.5rem;
font-size: 1.125rem; font-weight: 600;
font-weight: 400; line-height: 43px;
line-height: 28px; letter-spacing: -1.4px;
letter-spacing: -0.5px; margin-bottom: 1.5rem;
margin-bottom: 1.75rem; }
}
} p {
.technology-used { color: #58595a;
h1, font-family: $body-font;
h2, font-size: 1.125rem;
h3, font-weight: 400;
h4, line-height: 28px;
h5, letter-spacing: -0.5px;
h6 { margin-bottom: 1.75rem;
color: #121526; }
font-family: $body-font; }
font-size: 1.125rem; .technology-used {
font-weight: 600; h1,
line-height: 32px; h2,
letter-spacing: -0.6px; h3,
margin-bottom: 1rem; h4,
} h5,
ul { h6 {
li { color: #121526;
margin-right: 1.25rem; font-family: $body-font;
img { font-size: 1.125rem;
width: auto; font-weight: 600;
height: 2.4375rem; line-height: 32px;
object-fit: contain; letter-spacing: -0.6px;
} margin-bottom: 1rem;
&:last-child { }
margin-right: 0; ul {
} row-gap: 12px;
} li {
} margin-right: 1.25rem;
} img {
} width: auto;
height: 2.4375rem;
.right-image-wrapper { object-fit: contain;
.image-wrapper { }
img { &:last-child {
max-height: 25rem; margin-right: 0;
width: 100%; }
height: 100%; }
object-fit: contain; }
@media (max-width: 991.98px) { }
margin-bottom: 2rem; }
height: auto;
width: 20rem; .right-image-wrapper {
object-fit: contain; .image-wrapper {
display: flex; img {
margin: auto; max-height: 25rem;
} width: 100%;
} height: 100%;
} object-fit: contain;
} @media (max-width: 991.98px) {
} margin-bottom: 2rem;
height: auto;
&.reversed { width: 20rem;
.row { object-fit: contain;
flex-direction: row-reverse; display: flex;
} margin: auto;
} }
}
}
}
}
&.reversed {
.row {
flex-direction: row-reverse;
}
}
} }
//HOME WHAT-WE-DO-SECTION //HOME WHAT-WE-DO-SECTION
.WHAT-WE-DO-SECTION { .WHAT-WE-DO-SECTION {
.top-title { .top-title {
margin-bottom: 3.75rem; margin-bottom: 3.75rem;
h2 { h2 {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
font-size: 2.75rem; font-size: 2.75rem;
font-weight: 600; font-weight: 600;
} }
p { p {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
} }
} }
.card-wrapper { .card-wrapper {
border: 1px solid #c0c0c0; border: 1px solid #c0c0c0;
transition: 0.3s ease; transition: 0.3s ease;
height: 100%; height: 100%;
&:hover { &:hover {
border: 1px solid #005aff; border: 1px solid #005aff;
// background: #121526; // background: #121526;
background: #005aff; background: #005aff;
li { li {
color: $white; color: $white;
border: 1px solid $white !important; border: 1px solid $white !important;
} }
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
color: $white; color: $white;
} }
a, a,
p, p,
.tag { .tag {
color: $white; color: $white;
} }
.tag { .tag {
border: 1px solid $white !important; border: 1px solid $white !important;
} }
} }
img { img {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
width: 75px; width: 75px;
height: 60px; height: 60px;
object-fit: cover; object-fit: cover;
} }
h4 { h4 {
font-size: 2rem; font-size: 2rem;
font-weight: 600; font-weight: 600;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
padding-right: 2.5rem; padding-right: 2.5rem;
} }
} }
} }
.tags-wrapper { .tags-wrapper {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center; align-items: center;
margin-right: 0.75rem; margin-right: 0.75rem;
font-size: 0.8125rem; font-size: 0.8125rem;
font-weight: 500; font-weight: 500;
height: auto; height: auto;
white-space: nowrap; white-space: nowrap;
ul { ul {
list-style-type: none; list-style-type: none;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
li { li {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
padding: 0.375rem 1.25rem; padding: 0.375rem 1.25rem;
margin-right: 0.75rem; margin-right: 0.75rem;
margin-bottom: 0.75rem; margin-bottom: 0.75rem;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
padding: 0.375rem 1.25rem; padding: 0.375rem 1.25rem;
margin-right: 0.75rem; margin-right: 0.75rem;
margin-bottom: 0.75rem; margin-bottom: 0.75rem;
color: #121526; color: #121526;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 600; font-weight: 600;
} }
} }
.tag { .tag {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
padding: 0.375rem 1.25rem; padding: 0.375rem 1.25rem;
margin-right: 0.75rem; margin-right: 0.75rem;
margin-bottom: 0.75rem; margin-bottom: 0.75rem;
color: #121526; color: #121526;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 600; font-weight: 600;
} }
} }
//NOT-LISTED-SECTION //NOT-LISTED-SECTION
.NOT-LISTED-SECTION { .NOT-LISTED-SECTION {
P { P {
text-align: justify; text-align: justify;
margin: 0; margin: 0;
} }
.contact { .contact {
display: flex; display: flex;
align-items: center; align-items: center;
margin-left: auto; margin-left: auto;
} }
} }
//NOT-LISTED-SECTION //NOT-LISTED-SECTION
//MEET-OUR-TEAM-SECTION //MEET-OUR-TEAM-SECTION
.MEET-OUR-TEAM-SECTION { .MEET-OUR-TEAM-SECTION {
.title-wrapper { .title-wrapper {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
font-size: 2rem !important; font-size: 2rem !important;
text-align: left; text-align: left;
} }
} }
p { p {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
font-size: 1.125rem !important; font-size: 1.125rem !important;
text-align: left; text-align: left;
} }
} }
} }
.meet-team-wrapper { .meet-team-wrapper {
.team-card { .team-card {
.card { .card {
border: 1px solid #fff; border: 1px solid #fff;
transition: 0.5s ease; transition: 0.5s ease;
justify-content: center; justify-content: center;
img { img {
width: 16.4375rem; width: 16.4375rem;
height: 16.375rem; height: 16.375rem;
object-fit: contain; object-fit: contain;
margin: auto; margin: auto;
padding-top: 1.25rem; padding-top: 1.25rem;
} }
} }
.inner-card { .inner-card {
border: none; border: none;
transition: unset; transition: unset;
.img-wrapper { .img-wrapper {
margin-bottom: 20px; margin-bottom: 20px;
min-height: 12.5rem; min-height: 12.5rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
.backgroundimg { .backgroundimg {
position: absolute; position: absolute;
img { img {
height: 198px; height: 198px;
width: 234px; width: 234px;
// position: absolute; // position: absolute;
object-fit: contain; object-fit: contain;
} }
} }
} }
} }
&:hover { &:hover {
.card { .card {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
} }
.info { .info {
background-color: $primary; background-color: $primary;
color: #fff; color: #fff;
h5 { h5 {
color: #fff; color: #fff;
} }
span { span {
color: $white; color: $white;
} }
} }
} }
.info { .info {
padding: 1.5rem 0; padding: 1.5rem 0;
transition: 0.5s ease; transition: 0.5s ease;
h5 { h5 {
transition: 0.5s ease; transition: 0.5s ease;
} }
span { span {
color: #58595a; color: #58595a;
text-align: center; text-align: center;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
line-height: 28px; line-height: 28px;
letter-spacing: -0.5px; letter-spacing: -0.5px;
} }
} }
} }
} }
.about-team { .about-team {
.btn-start-project-white { .btn-start-project-white {
margin-top: 3rem !important; margin-top: 3rem !important;
} }
.team-card { .team-card {
.card { .card {
border: 1px solid #fff; border: 1px solid #fff;
transition: 0.5s ease; transition: 0.5s ease;
justify-content: center; justify-content: center;
img { img {
width: 16.4375rem; width: 16.4375rem;
height: 16.375rem; height: 16.375rem;
object-fit: contain; object-fit: contain;
margin: auto; margin: auto;
padding-top: 1.25rem; padding-top: 1.25rem;
} }
} }
.inner-card { .inner-card {
border: none; border: none;
transition: unset; transition: unset;
.img-wrapper { .img-wrapper {
margin-bottom: 20px; margin-bottom: 20px;
min-height: 12.5rem; min-height: 12.5rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
.backgroundimg { .backgroundimg {
position: absolute; position: absolute;
img { img {
height: 198px; height: 198px;
width: 234px; width: 234px;
// position: absolute; // position: absolute;
object-fit: contain; object-fit: contain;
} }
} }
} }
} }
&:hover { &:hover {
.card { .card {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
} }
.info { .info {
background-color: $primary; background-color: $primary;
color: #fff; color: #fff;
h5 { h5 {
color: #fff; color: #fff;
} }
span { span {
color: $white; color: $white;
} }
} }
} }
.info { .info {
padding: 1.5rem 0; padding: 1.5rem 0;
transition: 0.5s ease; transition: 0.5s ease;
h5 { h5 {
transition: 0.5s ease; transition: 0.5s ease;
} }
span { span {
color: #58595a; color: #58595a;
text-align: center; text-align: center;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
line-height: 28px; line-height: 28px;
letter-spacing: -0.5px; letter-spacing: -0.5px;
} }
} }
} }
} }
} }
//MEET-OUR-TEAM-SECTION //MEET-OUR-TEAM-SECTION
// OUR-CUSTOMERS-SAY-SECTION // OUR-CUSTOMERS-SAY-SECTION
.OUR-CUSTOMERS-SAY-SECTION { .OUR-CUSTOMERS-SAY-SECTION {
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
font-size: 1.875rem !important; font-size: 1.875rem !important;
} }
} }
&.single-what-customers-say { &.single-what-customers-say {
.customer-feedback-portfolio { .customer-feedback-portfolio {
.feedback-wrapper { .feedback-wrapper {
p { p {
height: unset; height: unset;
} }
.author-info { .author-info {
img { img {
width: auto; width: auto;
} }
} }
} }
} }
} }
&.background-dark { &.background-dark {
background: #005aff !important; background: #005aff !important;
} }
.top-title { .top-title {
h2 { h2 {
font-size: 2.75rem; font-size: 2.75rem;
font-weight: 600; font-weight: 600;
} }
} }
.customer-feedback, .customer-feedback,
.customer-feedback-course-detail { .customer-feedback-course-detail {
.feedback-wrapper { .feedback-wrapper {
height: auto; height: auto;
border: 2px solid rgba(0, 0, 0, 0.1); border: 2px solid rgba(0, 0, 0, 0.1);
background-color: $white; background-color: $white;
transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;
img { img {
background-color: $white; background-color: $white;
} }
&:hover { &:hover {
background-color: #121526; background-color: #121526;
p, p,
span { span {
color: $white !important; color: $white !important;
} }
svg { svg {
path { path {
fill: $white; fill: $white;
} }
} }
hr { hr {
border: 2px solid $white !important; border: 2px solid $white !important;
opacity: 1; opacity: 1;
} }
.author-info { .author-info {
.detail { .detail {
span { span {
color: $white !important; color: $white !important;
} }
} }
} }
.detail { .detail {
div { div {
color: $white !important; color: $white !important;
} }
} }
} }
.inner-content { .inner-content {
height: 17rem; height: 17rem;
overflow: hidden; overflow: hidden;
} }
svg { svg {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
p { p {
height: 12.875rem; height: 12.875rem;
overflow-y: scroll; overflow-y: scroll;
color: #121526 !important; color: #121526 !important;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
line-height: 24px; line-height: 24px;
letter-spacing: -0.4px; letter-spacing: -0.4px;
padding-right: 0.75rem; padding-right: 0.75rem;
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 2px; width: 2px;
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: $primary; background-color: $primary;
} }
} }
hr { hr {
margin: 3rem 0 !important; margin: 3rem 0 !important;
border: 2px solid rgba(0, 0, 0, 0.55) !important; border: 2px solid rgba(0, 0, 0, 0.55) !important;
} }
.author-info { .author-info {
img { img {
height: 3.75rem; height: 3.75rem;
width: 3.75rem; width: 3.75rem;
object-fit: contain; object-fit: contain;
margin-right: 1.125rem; margin-right: 1.125rem;
border-radius: 50%; border-radius: 50%;
} }
.detail { .detail {
div { div {
color: #121526; color: #121526;
font-family: $body-font; font-family: $body-font;
font-size: 1.25rem; font-size: 1.25rem;
font-weight: 600; font-weight: 600;
line-height: 30px; line-height: 30px;
margin-bottom: 0.125rem; margin-bottom: 0.125rem;
} }
span { span {
color: #58595a !important; color: #58595a !important;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 600; font-weight: 600;
line-height: 24px; line-height: 24px;
} }
} }
} }
} }
.owl-dots { .owl-dots {
display: block; display: block;
margin-top: 1rem !important; margin-top: 1rem !important;
.owl-dot { .owl-dot {
span { span {
border-radius: 0; border-radius: 0;
background-color: #fff; background-color: #fff;
} }
&.active { &.active {
span { span {
background-color: #121526; background-color: #121526;
} }
} }
} }
} }
} }
.customer-feedback-portfolio { .customer-feedback-portfolio {
.feedback-wrapper { .feedback-wrapper {
border: 2px solid rgba(0, 0, 0, 0.1); border: 2px solid rgba(0, 0, 0, 0.1);
background-color: $white; background-color: $white;
svg { svg {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
p { p {
height: 12.875rem; height: 12.875rem;
overflow-y: scroll; overflow-y: scroll;
color: #121526 !important; color: #121526 !important;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 500; font-weight: 500;
line-height: 24px; line-height: 24px;
letter-spacing: -0.4px; letter-spacing: -0.4px;
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 2px; width: 2px;
display: none; display: none;
} }
&:hover { &:hover {
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: block; display: block;
} }
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: $primary; background-color: $primary;
} }
span { span {
max-height: 12.875rem; max-height: 12.875rem;
overflow-y: scroll; overflow-y: scroll;
color: #121526 !important; color: #121526 !important;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 500; font-weight: 500;
line-height: 24px; line-height: 24px;
letter-spacing: -0.4px; letter-spacing: -0.4px;
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 2px; width: 2px;
display: none; display: none;
} }
&:hover { &:hover {
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: block; display: block;
} }
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: $primary; background-color: $primary;
} }
} }
} }
.detail { .detail {
div { div {
color: #005aff !important; color: #005aff !important;
font-family: $body-font !important; font-family: $body-font !important;
font-size: 1.25rem !important; font-size: 1.25rem !important;
font-weight: 600 !important; font-weight: 600 !important;
line-height: 30px !important; line-height: 30px !important;
margin-bottom: 0.125rem; margin-bottom: 0.125rem;
} }
span { span {
color: #121526 !important; color: #121526 !important;
font-family: $body-font !important; font-family: $body-font !important;
font-size: 1rem !important; font-size: 1rem !important;
font-weight: 600 !important; font-weight: 600 !important;
line-height: 24px !important; line-height: 24px !important;
} }
} }
hr { hr {
margin: 3rem 0 !important; margin: 3rem 0 !important;
border: 1px solid rgba(0, 0, 0, 0.2) !important; border: 1px solid rgba(0, 0, 0, 0.2) !important;
} }
.author-info { .author-info {
img { img {
height: 3.75rem; height: 3.75rem;
width: 3.75rem; width: 3.75rem;
object-fit: contain; object-fit: contain;
margin-right: 1.125rem; margin-right: 1.125rem;
} }
.detail { .detail {
div { div {
color: #121526; color: #121526;
font-family: $body-font; font-family: $body-font;
font-size: 1.25rem; font-size: 1.25rem;
font-weight: 600; font-weight: 600;
line-height: 30px; line-height: 30px;
} }
span { span {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 600; font-weight: 600;
line-height: 24px; line-height: 24px;
} }
} }
} }
} }
.owl-dots { .owl-dots {
display: block; display: block;
margin-top: 1.75rem !important; margin-top: 1.75rem !important;
.owl-dot { .owl-dot {
span { span {
border-radius: 0; border-radius: 0;
background-color: #58595a; background-color: #58595a;
} }
&.active { &.active {
span { span {
background-color: #121526; background-color: #121526;
} }
} }
} }
} }
} }
} }
//OUR-CUSTOMERS-SAY-SECTION //OUR-CUSTOMERS-SAY-SECTION
@-moz-document url-prefix() { @-moz-document url-prefix() {
.owl-item { .owl-item {
margin-right: 12px !important; margin-right: 12px !important;
} }
} }
//BLOG-SECTION //BLOG-SECTION
.BLOG-SECTION { .BLOG-SECTION {
.blog-carousel { .blog-carousel {
.item { .item {
max-height: 31.0625rem; max-height: 31.0625rem;
&:hover { &:hover {
.blog-image-wrapper { .blog-image-wrapper {
img { img {
transform: scale(1.08); transform: scale(1.08);
} }
} }
} }
a { a {
&:hover { &:hover {
.text-wrapper { .text-wrapper {
h1, h1,
h2, h2,
h3, h3,
h4, h4,
h5, h5,
h6 { h6 {
color: $primary; color: $primary;
} }
} }
.bottom-section { .bottom-section {
p { p {
color: $primary; color: $primary;
} }
} }
} }
.blog-image-wrapper { .blog-image-wrapper {
overflow: hidden; overflow: hidden;
height: 17.1875rem; height: 17.1875rem;
img { img {
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
transition: 0.5s ease-in-out; transition: 0.5s ease-in-out;
height: 100%; height: 100%;
width: 100%; width: 100%;
object-fit: cover; object-fit: cover;
overflow: hidden; overflow: hidden;
} }
} }
.bottom-section { .bottom-section {
p { p {
color: #58595a; color: #58595a;
font-family: "Sora", sans-serif; font-family: "Sora", sans-serif;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 500; font-weight: 500;
line-height: 30px; line-height: 30px;
letter-spacing: -0.6px; letter-spacing: -0.6px;
text-decoration-line: underline; text-decoration-line: underline;
margin: 0; margin: 0;
} }
} }
.text-wrapper { .text-wrapper {
padding: 1.25rem 0; padding: 1.25rem 0;
h6 { h6 {
margin-bottom: 1.3125rem; margin-bottom: 1.3125rem;
color: #333; color: #333;
font-family: $body-font; font-family: $body-font;
font-size: 1.375rem; font-size: 1.375rem;
font-weight: 600; font-weight: 600;
line-height: 28px; line-height: 28px;
letter-spacing: -0.5px; letter-spacing: -0.5px;
} }
p { p {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
color: #666; color: #666;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
line-height: 20px; line-height: 20px;
} }
span { span {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
line-height: 150%; line-height: 150%;
} }
} }
} }
} }
} }
button { button {
width: 13.125rem; width: 13.125rem;
margin: 1.25rem auto; margin: 1.25rem auto;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
} }
.btn { .btn {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin: auto; margin: auto;
width: fit-content; width: fit-content;
@media (max-width: 1400px) { @media (max-width: 1400px) {
margin-top: 3rem; margin-top: 3rem;
} }
} }
} }
//BLOG-SECTION //BLOG-SECTION
//FAQS-SECTION //FAQS-SECTION
.FAQS-SECTION { .FAQS-SECTION {
span { span {
font-weight: 600; font-weight: 600;
font-size: 14px; font-size: 14px;
color: #005aff; color: #005aff;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
.accordion-wrapper { .accordion-wrapper {
.accordion { .accordion {
position: sticky; position: sticky;
top: 18%; top: 18%;
} }
} }
.left-section { .left-section {
.image-wrapper { .image-wrapper {
img { img {
height: 24rem; height: 24rem;
width: 100%; width: 100%;
object-fit: contain; object-fit: contain;
} }
} }
h2 { h2 {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
p { p {
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
letter-spacing: -0.5px; letter-spacing: -0.5px;
span { span {
color: #58595a !important; color: #58595a !important;
} }
} }
} }
} }
.accordion-wrapper { .accordion-wrapper {
margin-left: auto; margin-left: auto;
.accordion { .accordion {
margin-bottom: 2.1875rem; margin-bottom: 2.1875rem;
.accordion-body { .accordion-body {
p { p {
color: #58595a; color: #58595a;
font-family: $body-font; font-family: $body-font;
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
letter-spacing: -0.5px; letter-spacing: -0.5px;
} }
} }
.accordion-item { .accordion-item {
&.classColor { &.classColor {
.accordion-header { .accordion-header {
button { button {
color: #005aff; color: #005aff;
} }
} }
} }
.accordion-button { .accordion-button {
&::after { &::after {
background-image: url(../../assets/img/close-icon.png); background-image: url(../../assets/img/close-icon.png);
height: 1rem; height: 1rem;
width: 1rem; width: 1rem;
background-size: contain; background-size: contain;
display: block; display: block;
background-repeat: no-repeat; background-repeat: no-repeat;
margin-left: 2.5rem; margin-left: 2.5rem;
} }
&.collapsed { &.collapsed {
&::after { &::after {
background-image: url(../../assets/img/open-icon.png); background-image: url(../../assets/img/open-icon.png);
height: 1rem; height: 1rem;
width: 1rem; width: 1rem;
background-size: contain; background-size: contain;
display: block; display: block;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
} }
} }
} }
} }
} }
//FAQS-SECTION //FAQS-SECTION
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
line-height: 32px; line-height: 32px;
font-weight: 600; font-weight: 600;
letter-spacing: -0.5px; letter-spacing: -0.5px;
color: $white;
svg { svg {
max-width: 16px; max-width: 16px;
...@@ -348,6 +349,11 @@ ...@@ -348,6 +349,11 @@
width: 100%; width: 100%;
object-fit: contain; object-fit: contain;
} }
.item {
width: 48px;
height: 48px;
}
} }
//TECHNOLOGY-USED-SECTION //TECHNOLOGY-USED-SECTION
......
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
} }
} }
} }
.WORKS-ON-WORK-SECTION {
.row {
--bs-gutter-y: 20px;
}
}
} }
@media (max-width: 767.98px) { @media (max-width: 767.98px) {
...@@ -98,18 +104,37 @@ ...@@ -98,18 +104,37 @@
.HOME.TOP-BANNER-SECTION img { .HOME.TOP-BANNER-SECTION img {
height: auto; height: auto;
width: 20rem; // width: 20rem;
object-fit: contain; object-fit: contain;
display: flex; display: flex;
margin: auto; margin: auto;
} }
.modal-steps-wrapper {
.step-text {
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 25px !important;
}
}
}
.TOP-BANNER-SECTION { .TOP-BANNER-SECTION {
padding: 0 0 1rem 0 !important; padding: 0 0 1rem 0 !important;
.nav-pills { .nav-pills {
padding: 1.5rem 1.5rem 0 1.5rem; padding: 1.5rem 1.5rem 0 1.5rem;
flex-wrap: nowrap;
overflow: auto;
li { li {
margin-bottom: 1rem; margin-bottom: 1rem;
a,
button {
text-wrap: nowrap;
}
} }
} }
&.py-80 { &.py-80 {
...@@ -620,7 +645,7 @@ ...@@ -620,7 +645,7 @@
.customer-feedback .feedback-wrapper p { .customer-feedback .feedback-wrapper p {
max-height: unset; max-height: unset;
overflow: unset; // overflow: unset;
line-height: unset; line-height: unset;
} }
} }
...@@ -768,8 +793,8 @@ ...@@ -768,8 +793,8 @@
.CONTACT { .CONTACT {
&.TOP-BANNER-SECTION { &.TOP-BANNER-SECTION {
.image-wrapper img { .image-wrapper img {
height: 10rem; height: 18rem;
width: 10rem; width: 75%;
margin-bottom: 2rem; margin-bottom: 2rem;
} }
.left-text-wrapper { .left-text-wrapper {
......
.block-gallery { .block-gallery {
.section-title { .section-title {
display: flex; &:has(.title) {
align-items: center; display: flex;
justify-content: space-between; align-items: center;
justify-content: space-between;
}
.slider-controller { .slider-controller {
gap: 12px; gap: 12px;
...@@ -28,4 +30,8 @@ ...@@ -28,4 +30,8 @@
} }
} }
} }
.owl-stage {
padding-left: 0 !important;
}
} }
...@@ -5,11 +5,13 @@ ...@@ -5,11 +5,13 @@
z-index: 9; z-index: 9;
.st-content { .st-content {
overflow: auto;
ul { ul {
li { li {
a { a {
display: inline-block; display: inline-block;
padding: 8px 16px; padding: 8px 16px;
text-wrap: nowrap;
} }
&:hover, &:hover,
......
...@@ -4,51 +4,52 @@ get_header(); ...@@ -4,51 +4,52 @@ get_header();
?> ?>
<!-- BREADCRUMB --> <!-- BREADCRUMB -->
<div class="container-fluid py-40"> <div class="container-fluid py-40 general-breadcrumb">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<nav aria-label="breadcrumb"> <nav aria-label="breadcrumb ">
<ol class="breadcrumb"> <ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<?php echo get_home_url('/'); ?>">Home</a></li> <li class="breadcrumb-item"><a href="<?php echo get_home_url('/'); ?>">Home</a></li>
<li class="breadcrumb-item active" aria-current="page"><a href="#"><?php echo the_title(); ?></a> <li class="breadcrumb-item active" aria-current="page"><a href="#"><?php echo the_title(); ?></a>
</li> </li>
</ol> </ol>
</nav> </nav>
</div>
</div> </div>
</div>
</div> </div>
<!-- BREADCRUMB --> <!-- BREADCRUMB -->
<section class="terms-and-conditions-wrapper"> <section class="terms-and-conditions-wrapper">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-lg-3"> <div class="col-lg-3">
<div class="terms-sidebar-wrapper"> <div class="terms-sidebar-wrapper">
<ul> <ul>
<?php <?php
if( have_rows('general_sidebar_links') ): if( have_rows('general_sidebar_links') ):
while( have_rows('general_sidebar_links') ) : the_row(); while( have_rows('general_sidebar_links') ) : the_row();
?> ?>
<li class="active"><a href="<?php echo esc_attr( get_sub_field('links') ); ?>"><?php echo get_sub_field('title'); ?></a></li> <li class="active"><a
<?php href="<?php echo esc_attr( get_sub_field('links') ); ?>"><?php echo get_sub_field('title'); ?></a></li>
<?php
endwhile; endwhile;
endif; endif;
?> ?>
</ul> </ul>
</div> </div>
</div> </div>
<div class="col-lg-9"> <div class="col-lg-9">
<div class="right-top-content-wrapper"> <div class="right-top-content-wrapper">
<h1><?php echo get_the_title(); ?></h1> <h1><?php echo get_the_title(); ?></h1>
<div class="updated-date">Last Updated: <?php echo get_the_date('d F Y'); ?></div> <div class="updated-date">Last Updated: <?php echo get_the_date('d F Y'); ?></div>
<p><?php the_excerpt(); ?></p> <p><?php the_excerpt(); ?></p>
</div> </div>
<div class="point-frame-wrapper"> <div class="point-frame-wrapper">
<?php the_content(); ?> <?php the_content(); ?>
</div>
</div>
</div> </div>
</div>
</div> </div>
</div>
</section> </section>
<?php get_footer(); ?> <?php get_footer(); ?>
\ No newline at end of file
...@@ -2,37 +2,48 @@ ...@@ -2,37 +2,48 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<?php wp_head(); ?> <?php wp_head(); ?>
<meta name="google-site-verification" content="DPEItwBusmmpY1RLo_YnoM9jRctsvqfM0AJNpkGiKwc" /> <meta name="google-site-verification" content="DPEItwBusmmpY1RLo_YnoM9jRctsvqfM0AJNpkGiKwc" />
<!-- Google Tag Manager --> <!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': <script>
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], (function(w, d, s, l, i) {
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= w[l] = w[l] || [];
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); w[l].push({
})(window,document,'script','dataLayer','GTM-T7SF2XRJ');</script> 'gtm.start': new Date().getTime(),
<!-- End Google Tag Manager --> event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-T7SF2XRJ');
</script>
<!-- End Google Tag Manager -->
</head> </head>
<body> <body>
<!-- Google Tag Manager (noscript) --> <!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T7SF2XRJ" <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T7SF2XRJ" height="0" width="0"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --> <!-- End Google Tag Manager (noscript) -->
<nav class="navbar navbar-expand-lg navbar-light top-nav p-0" id="myTopnav"> <nav class="navbar navbar-expand-lg navbar-light top-nav p-0" id="myTopnav">
<div class="container"> <div class="container">
<div class="row align-items-center position-relative nav-wrapper justify-content-between w-100"> <div class="row align-items-center position-relative nav-wrapper justify-content-between w-100">
<div class="col-5 col-lg-1 d-flex align-items-center nav-left"> <div class="col-5 col-lg-1 d-flex align-items-center nav-left">
<div class="logo d-flex align-items-center"> <div class="logo d-flex align-items-center">
<?php echo get_custom_logo(); ?> <?php echo get_custom_logo(); ?>
</div> </div>
</div> </div>
<div class="col-6 col-lg-10 d-flex align-items-center justify-content-end nav-right"> <div class="col-6 col-lg-10 d-flex align-items-center justify-content-end nav-right">
<?php <?php
wp_nav_menu( array( wp_nav_menu( array(
'theme_location' => 'menu-web', 'theme_location' => 'menu-web',
'depth' => 9, 'depth' => 9,
...@@ -44,25 +55,27 @@ ...@@ -44,25 +55,27 @@
</div>%3$s</ul>' </div>%3$s</ul>'
)); ));
?> ?>
<div class="book-button"> <div class="book-button">
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal" <a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"
class="btn btn-primary btn-padding hover-up btn-start-project font-14 fw-500 btn-padding btn-submit">Start class="btn btn-primary btn-padding hover-up btn-start-project font-14 fw-500 btn-padding btn-submit">Start
your project your project
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd"
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 13L16.17 13L10.58 18.59L12 20L20 12L12 4L10.59 5.41L16.17 11L4 11L4 13Z" fill="white"></path>
d="M4 13L16.17 13L10.58 18.59L12 20L20 12L12 4L10.59 5.41L16.17 11L4 11L4 13Z" </svg>
fill="white"></path> <span class="bg-hover" style="left: 108px; top: 62.1562px;"></span>
</svg> </a>
<span class="bg-hover" style="left: 108px; top: 62.1562px;"></span> </div>
</a> </div>
</div> <div class="col-1 menu-toggler">
</div> <div class="toggler-icon">
<div class="col-1 menu-toggler"> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="32" width="32"
<div class="toggler-icon"> xmlns="http://www.w3.org/2000/svg">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="32" width="32" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0z"></path><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path></svg> <path fill="none" d="M0 0h24v24H0z"></path>
</div> <path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path>
</div> </svg>
</div> </div>
</div> </div>
</nav> </div>
\ No newline at end of file </div>
</nav>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment