changes
changes
This commit is contained in:
4
css/bootstrap.min.css
vendored
4
css/bootstrap.min.css
vendored
@@ -313,7 +313,7 @@ address {
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-left: 2rem
|
||||
padding-left: 3rem
|
||||
}
|
||||
|
||||
dl,
|
||||
@@ -779,7 +779,7 @@ progress {
|
||||
.container-sm,
|
||||
.container-xl,
|
||||
.container-xxl {
|
||||
--bs-gutter-x: 1.5rem;
|
||||
--bs-gutter-x: 6rem;
|
||||
--bs-gutter-y: 0;
|
||||
width: 100%;
|
||||
padding-right: calc(var(--bs-gutter-x) * .5);
|
||||
|
155
css/main.css
155
css/main.css
@@ -1602,13 +1602,157 @@ span {
|
||||
}
|
||||
|
||||
.feature-benefit-items {
|
||||
margin-top: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 100%; /* Ensure it fills the container height */
|
||||
min-height: 300px; /* Adjust the height as per your preference */
|
||||
padding: 20px; /* Optional for spacing */
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.our-services {
|
||||
background: linear-gradient(to bottom, #ffffff, #ffffff);
|
||||
padding: 50px 20px;
|
||||
font-family: "Lexend", sans-serif;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
font-size: 36px;
|
||||
color: #222;
|
||||
margin-bottom: 30px;
|
||||
text-transform: uppercase;
|
||||
position: relative;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.services-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.service-item {
|
||||
background: #ffffff;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 9;
|
||||
background-color: var(--white);
|
||||
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.service-item:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 40px;
|
||||
color: #0056b3;
|
||||
margin-bottom: 15px;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.service-item:hover .service-icon {
|
||||
color: #ff6600;
|
||||
}
|
||||
|
||||
.service-item h3 {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
text-transform: uppercase;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.service-item p {
|
||||
font-size: 16px;
|
||||
color: #a6a1a1;
|
||||
text-align: justify;
|
||||
line-height: 1.6;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.service-item:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(255, 102, 0, 0.1);
|
||||
z-index: -1;
|
||||
transition: opacity 0.3s ease;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.service-item:hover:after {
|
||||
opacity: 1;
|
||||
}
|
||||
.why-nepal {
|
||||
background: linear-gradient(to bottom, #fefefe, #f4f4f4);
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
font-size: 36px;
|
||||
color: #222;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 20px;
|
||||
font-family: 'Lexend', sans-serif;
|
||||
}
|
||||
|
||||
.section-title p {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
margin-bottom: 40px;
|
||||
font-family: 'Lexend', sans-serif;
|
||||
}
|
||||
|
||||
.why-nepal-item {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.why-nepal-item:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.why-nepal-item .icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin: 0 auto 15px;
|
||||
}
|
||||
|
||||
.why-nepal-item .icon img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.why-nepal-item h4 {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
font-family: 'Lexend', sans-serif;
|
||||
}
|
||||
|
||||
.why-nepal-item p {
|
||||
font-size: 14px;
|
||||
color: #555;
|
||||
font-family: 'Lexend', sans-serif;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.feature-benefit-items .icon-box-shape {
|
||||
position: absolute;
|
||||
@@ -1639,6 +1783,7 @@ span {
|
||||
}
|
||||
.feature-benefit-items .feature-content p {
|
||||
margin: 0 0 20px 0;
|
||||
text-align: justify;
|
||||
}
|
||||
.feature-benefit-items .feature-content .icon {
|
||||
width: 98px;
|
||||
@@ -2703,7 +2848,7 @@ span {
|
||||
background-color: transparent;
|
||||
}
|
||||
.header-top-section.style-two::before {
|
||||
background-color: #0c142e;
|
||||
background-color: #1f1e1e;
|
||||
clip-path: none;
|
||||
width: 100%;
|
||||
left: 260px;
|
||||
|
Reference in New Issue
Block a user