move index
21
.htaccess
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
<IfModule mod_negotiation.c>
|
||||||
|
Options -MultiViews -Indexes
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
RewriteEngine On
|
||||||
|
|
||||||
|
# Handle Authorization Header
|
||||||
|
RewriteCond %{HTTP:Authorization} .
|
||||||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||||
|
|
||||||
|
# Redirect Trailing Slashes If Not A Folder...
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_URI} (.+)/$
|
||||||
|
RewriteRule ^ %1 [L,R=301]
|
||||||
|
|
||||||
|
# Send Requests To Front Controller...
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteRule ^ index.php [L]
|
||||||
|
</IfModule>
|
10038
css/bootstrap.css
vendored
Normal file
4
css/font-awesome.min.css
vendored
Normal file
111
css/responsive.css
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
@media (max-width: 1300px) {
|
||||||
|
.footer_container {
|
||||||
|
border-radius: 250px 0 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1120px) {}
|
||||||
|
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
.hero_area {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav {
|
||||||
|
margin: 0;
|
||||||
|
margin-left: auto;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav {
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav .nav-item .nav-link {
|
||||||
|
padding: 5px 25px;
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section {
|
||||||
|
padding: 75px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .img-box {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .row>div:nth-child(1) {
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .row>div:nth-child(2) {
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.hero_area {
|
||||||
|
border-radius: 0 0 250px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section {
|
||||||
|
border-radius: 150px 0 150px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .img-box {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .row {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .map_container {
|
||||||
|
margin-left: 0;
|
||||||
|
margin-bottom: 45px;
|
||||||
|
height: 375px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .row>div:nth-child(3) {
|
||||||
|
margin-bottom: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .row>div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_links {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 576px) {}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {}
|
||||||
|
|
||||||
|
@media (max-width: 420px) {}
|
||||||
|
|
||||||
|
@media (max-width: 376px) {}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.container {
|
||||||
|
max-width: 1170px;
|
||||||
|
}
|
||||||
|
}
|
875
css/style.css
Normal file
@ -0,0 +1,875 @@
|
|||||||
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
|
||||||
|
body {
|
||||||
|
font-family: "Poppins", sans-serif;
|
||||||
|
color: #0c0c0c;
|
||||||
|
background-color: #ffffff;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding {
|
||||||
|
padding: 90px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_margin {
|
||||||
|
margin: 90px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2 {
|
||||||
|
padding: 75px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2-top {
|
||||||
|
padding-top: 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2-bottom {
|
||||||
|
padding-bottom: 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding-top {
|
||||||
|
padding-top: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding-bottom {
|
||||||
|
padding-bottom: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading_container {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-box-align: start;
|
||||||
|
-ms-flex-align: start;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading_container h2 {
|
||||||
|
position: relative;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading_container h2 span {
|
||||||
|
color: #7335b7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading_container.heading_center {
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
a:hover,
|
||||||
|
a:focus {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
a:focus {
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn,
|
||||||
|
.btn:focus {
|
||||||
|
outline: none !important;
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*header section*/
|
||||||
|
.hero_area {
|
||||||
|
position: relative;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #7335b7;
|
||||||
|
border-radius: 0 0 350px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub_page .hero_area {
|
||||||
|
min-height: auto;
|
||||||
|
border-radius: 0 0 45px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_section {
|
||||||
|
padding: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_section .container-fluid {
|
||||||
|
padding-right: 25px;
|
||||||
|
padding-left: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand span {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav .nav-item .nav-link {
|
||||||
|
padding: 5px 25px;
|
||||||
|
color: #ffffff;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler {
|
||||||
|
padding: 0;
|
||||||
|
width: 37px;
|
||||||
|
height: 42px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler span {
|
||||||
|
display: block;
|
||||||
|
width: 35px;
|
||||||
|
height: 4px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
margin: 7px 0;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #ffffff;
|
||||||
|
top: -10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler span::after {
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
|
||||||
|
-webkit-transform: rotate(45deg);
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
|
||||||
|
-webkit-transform: rotate(90deg);
|
||||||
|
transform: rotate(90deg);
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
|
||||||
|
-webkit-transform: rotate(45deg);
|
||||||
|
transform: rotate(45deg);
|
||||||
|
margin: 0;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
|
||||||
|
-webkit-transform: rotate(-45deg);
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
margin: 0;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
|
||||||
|
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
|
||||||
|
-webkit-transform: none;
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container a {
|
||||||
|
color: #000000;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container a span {
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container a:hover {
|
||||||
|
color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container .quote_btn {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 5px 25px;
|
||||||
|
background-color: #f8842b;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container .quote_btn:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*end header section*/
|
||||||
|
/* slider section */
|
||||||
|
.slider_section {
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 45px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .row {
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section #customCarousel1 {
|
||||||
|
width: 100%;
|
||||||
|
position: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box {
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box h1 {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box .btn-box {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 -5px;
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box .btn-box a {
|
||||||
|
margin: 5px;
|
||||||
|
text-align: center;
|
||||||
|
width: 185px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box .btn-box .btn1 {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 15px;
|
||||||
|
background-color: #5a2a8f;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #5a2a8f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .detail-box .btn-box .btn1:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .img-box img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .carousel-indicators {
|
||||||
|
position: unset;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .carousel-indicators li {
|
||||||
|
background-color: #ffffff;
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 100%;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slider_section .carousel-indicators li.active {
|
||||||
|
width: 23px;
|
||||||
|
height: 23px;
|
||||||
|
background-color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .heading_container {
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box {
|
||||||
|
margin-top: 25px;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
height: 310px; /* Set a fixed height for the boxes */
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box::before {
|
||||||
|
content: "";
|
||||||
|
width: 275px;
|
||||||
|
height: 275px;
|
||||||
|
position: absolute;
|
||||||
|
right: -137.5px;
|
||||||
|
bottom: -137.5px;
|
||||||
|
background-color: #faf8fd;
|
||||||
|
z-index: -1;
|
||||||
|
border-radius: 100%;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box .img-box {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 125px;
|
||||||
|
border-radius: 15px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box .img-box img {
|
||||||
|
width: 75px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box .detail-box {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box .detail-box h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box .detail-box a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box:hover::before {
|
||||||
|
-webkit-transform: scale(5);
|
||||||
|
transform: scale(5);
|
||||||
|
background-color: #7335b7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .box:hover img {
|
||||||
|
-webkit-filter: invert(1);
|
||||||
|
filter: invert(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .btn-box {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .btn-box a {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 45px;
|
||||||
|
background-color: #7335b7;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #7335b7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service_section .btn-box a:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section {
|
||||||
|
background-color: #7335b7;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 250px 0 250px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .row {
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .img-box {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .img-box img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .detail-box p {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .detail-box a {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 45px;
|
||||||
|
background-color: #f8842b;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #f8842b;
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about_section .detail-box a:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .heading_container {
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .heading_container h2::before {
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translateX(-50%);
|
||||||
|
transform: translateX(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box {
|
||||||
|
margin-top: 45px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
|
||||||
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .img-box {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .img-box img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .detail-box {
|
||||||
|
padding: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .detail-box h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .detail-box p {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.case_section .box .detail-box a {
|
||||||
|
color: #7335b7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
margin: 45px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .img-box {
|
||||||
|
width: 125px;
|
||||||
|
height: 125px;
|
||||||
|
min-width: 125px;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: -62.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .img-box img {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .client_info .client_name h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .client_info .client_name h6 {
|
||||||
|
margin-bottom: 0;
|
||||||
|
color: #7335b7;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 15px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .client_info i {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box p {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .box .detail-box {
|
||||||
|
background-color: #ffffff;
|
||||||
|
background-color: #7335b7;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 85px 45px 15px 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .carousel-indicators {
|
||||||
|
position: unset;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .carousel-indicators li {
|
||||||
|
background-color: #7335b7;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 100%;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_section .carousel-indicators li.active {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section form {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
height: 50px;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
padding-left: 15px;
|
||||||
|
background-color: transparent;
|
||||||
|
outline: none;
|
||||||
|
color: #000000;
|
||||||
|
border: 1px solid #a5a5a5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input::-webkit-input-placeholder {
|
||||||
|
color: #1c1b1b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input:-ms-input-placeholder {
|
||||||
|
color: #1c1b1b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input::-ms-input-placeholder {
|
||||||
|
color: #1c1b1b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input::placeholder {
|
||||||
|
color: #1c1b1b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section input.message-box {
|
||||||
|
height: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section button {
|
||||||
|
font-family: "Poppins", sans-serif;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 65px;
|
||||||
|
background-color: #7335b7;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #7335b7;
|
||||||
|
color: #fff;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section button:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .map_container {
|
||||||
|
height: 100%;
|
||||||
|
min-height: 325px;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-left: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .map_container .map {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact_section .map_container .map #googleMap {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_container {
|
||||||
|
background-color: #7335b7;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 350px 0 0 0;
|
||||||
|
padding-top: 145px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* info section */
|
||||||
|
.info_section h4 {
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_contact .contact_link_box {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_contact .contact_link_box a {
|
||||||
|
margin: 5px 0;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_contact .contact_link_box a i {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_contact .contact_link_box a:hover {
|
||||||
|
color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_social {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_social a {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 100%;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_social a:hover {
|
||||||
|
color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_links {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-ms-flex-wrap: wrap;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_links a {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section .info_links a:hover {
|
||||||
|
color: #f8842b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid #ffffff;
|
||||||
|
background-color: transparent;
|
||||||
|
width: 100%;
|
||||||
|
height: 45px;
|
||||||
|
color: #ffffff;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input::-webkit-input-placeholder {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input:-ms-input-placeholder {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input::-ms-input-placeholder {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form input::placeholder {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form button {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 55px;
|
||||||
|
background-color: #f8842b;
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: 0;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid #f8842b;
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_section form button:hover {
|
||||||
|
color: #ffffff;
|
||||||
|
-webkit-transform: translateY(-3px);
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end info section */
|
||||||
|
/* footer section*/
|
||||||
|
.footer_section {
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_section p {
|
||||||
|
padding: 25px 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_section p a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=style.css.map */
|
9
css/style.css.map
Normal file
763
css/style.scss
Normal file
@ -0,0 +1,763 @@
|
|||||||
|
$white: #ffffff;
|
||||||
|
$black: #000000;
|
||||||
|
$primary1: #7335b7;
|
||||||
|
$primary2: #f8842b;
|
||||||
|
$textCol: #1f1f1f;
|
||||||
|
|
||||||
|
// import fonts
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
|
||||||
|
|
||||||
|
@mixin main-font {
|
||||||
|
font-family: "Poppins", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin hero_btn($col1, $col2, $pad1, $pad2, $bRadius) {
|
||||||
|
display: inline-block;
|
||||||
|
padding: $pad1 $pad2;
|
||||||
|
background-color: $col1;
|
||||||
|
color: $col2;
|
||||||
|
border-radius: $bRadius;
|
||||||
|
transition: all 0.3s;
|
||||||
|
border: 1px solid $col1;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $col2;
|
||||||
|
transform: translateY(-3px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin upperBold {
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
@include main-font;
|
||||||
|
color: #0c0c0c;
|
||||||
|
background-color: #ffffff;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding {
|
||||||
|
padding: 90px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_margin {
|
||||||
|
margin: 90px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2 {
|
||||||
|
padding: 75px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2-top {
|
||||||
|
padding-top: 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding2-bottom {
|
||||||
|
padding-bottom: 75px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding-top {
|
||||||
|
padding-top: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout_padding-bottom {
|
||||||
|
padding-bottom: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading_container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
position: relative;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: $primary1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.heading_center {
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
a:hover,
|
||||||
|
a:focus {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
a:focus {
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn,
|
||||||
|
.btn:focus {
|
||||||
|
outline: none !important;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*header section*/
|
||||||
|
.hero_area {
|
||||||
|
position: relative;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: $primary1;
|
||||||
|
border-radius: 0 0 350px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub_page {
|
||||||
|
.hero_area {
|
||||||
|
min-height: auto;
|
||||||
|
border-radius: 0 0 45px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_section {
|
||||||
|
padding: 15px 0;
|
||||||
|
|
||||||
|
.container-fluid {
|
||||||
|
padding-right: 25px;
|
||||||
|
padding-left: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
span {
|
||||||
|
font-weight: bold;
|
||||||
|
color: $white;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.navbar-nav {
|
||||||
|
margin: auto;
|
||||||
|
|
||||||
|
.nav-item {
|
||||||
|
.nav-link {
|
||||||
|
padding: 5px 25px;
|
||||||
|
color: $white;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&.active {
|
||||||
|
.nav-link {
|
||||||
|
color: $black;
|
||||||
|
background-color: $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom_nav-container .navbar-toggler {
|
||||||
|
padding: 0;
|
||||||
|
width: 37px;
|
||||||
|
height: 42px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
|
||||||
|
span {
|
||||||
|
display: block;
|
||||||
|
width: 35px;
|
||||||
|
height: 4px;
|
||||||
|
background-color: $white;
|
||||||
|
margin: 7px 0;
|
||||||
|
transition: all 0.3s;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: $white;
|
||||||
|
top: -10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&[aria-expanded="true"] {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
|
||||||
|
span {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
transform: rotate(90deg);
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.s-1 {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
margin: 0;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.s-2 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.s-3 {
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
margin: 0;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&[aria-expanded="false"] {
|
||||||
|
|
||||||
|
.s-1,
|
||||||
|
.s-2,
|
||||||
|
.s-3 {
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $black;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
span {
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote_btn {
|
||||||
|
@include hero_btn($primary2, $white, 5px, 25px, 5px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*end header section*/
|
||||||
|
|
||||||
|
/* slider section */
|
||||||
|
.slider_section {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 45px 0;
|
||||||
|
|
||||||
|
.row {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#customCarousel1 {
|
||||||
|
width: 100%;
|
||||||
|
position: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-box {
|
||||||
|
text-align: center;
|
||||||
|
color: $white;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {}
|
||||||
|
|
||||||
|
.btn-box {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 -5px;
|
||||||
|
margin-top: 45px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
margin: 5px;
|
||||||
|
text-align: center;
|
||||||
|
width: 185px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn1 {
|
||||||
|
@include hero_btn(darken($color: $primary1, $amount: 10),
|
||||||
|
$white,
|
||||||
|
12px,
|
||||||
|
15px,
|
||||||
|
5px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-box {
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-indicators {
|
||||||
|
position: unset;
|
||||||
|
margin: 0;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 45px;
|
||||||
|
|
||||||
|
li {
|
||||||
|
background-color: $white;
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 100%;
|
||||||
|
opacity: 1;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
width: 23px;
|
||||||
|
height: 23px;
|
||||||
|
background-color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end slider section
|
||||||
|
|
||||||
|
// service section
|
||||||
|
|
||||||
|
.service_section {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.heading_container {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
margin-top: 25px;
|
||||||
|
// background: darken($color: $primary1, $amount: 10);
|
||||||
|
// color: $white;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 0 5px 0 rgba($color: #000000, $alpha: 0.25);
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: all 0.3s;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
width: 275px;
|
||||||
|
height: 275px;
|
||||||
|
position: absolute;
|
||||||
|
right: -137.5px;
|
||||||
|
bottom: -137.5px;
|
||||||
|
background-color: lighten($color: $primary1, $amount: 52);
|
||||||
|
z-index: -1;
|
||||||
|
border-radius: 100%;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-box {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 125px;
|
||||||
|
border-radius: 15px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 75px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-box {
|
||||||
|
margin-top: 15px;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&::before {
|
||||||
|
transform: scale(5);
|
||||||
|
background-color: $primary1;
|
||||||
|
}
|
||||||
|
|
||||||
|
color: $white;
|
||||||
|
|
||||||
|
img {
|
||||||
|
filter: invert(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-box {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 45px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
@include hero_btn($primary1, $white, 10px, 45px, 5px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end service section
|
||||||
|
|
||||||
|
// about section
|
||||||
|
.about_section {
|
||||||
|
background-color: $primary1;
|
||||||
|
color: $white;
|
||||||
|
border-radius: 250px 0 250px 0;
|
||||||
|
|
||||||
|
.row {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-box {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-box {
|
||||||
|
p {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
@include hero_btn($primary2, $white, 10px, 45px, 5px);
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end about section
|
||||||
|
|
||||||
|
// case section
|
||||||
|
.case_section {
|
||||||
|
.heading_container {
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
&::before {
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
margin-top: 45px;
|
||||||
|
background-color: $white;
|
||||||
|
box-shadow: 0 0 10px 0 rgba($color: #000000, $alpha: 0.15);
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.img-box {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-box {
|
||||||
|
padding: 25px;
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $primary1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end case section
|
||||||
|
|
||||||
|
// client section
|
||||||
|
|
||||||
|
.client_section {
|
||||||
|
.box {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
margin: 45px 0;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.img-box {
|
||||||
|
width: 125px;
|
||||||
|
height: 125px;
|
||||||
|
min-width: 125px;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: -62.5px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.client_info {
|
||||||
|
.client_name {
|
||||||
|
h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
margin-bottom: 0;
|
||||||
|
color: $primary1;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 15px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-box {
|
||||||
|
background-color: $white;
|
||||||
|
background-color: $primary1;
|
||||||
|
color: $white;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 85px 45px 15px 45px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-indicators {
|
||||||
|
position: unset;
|
||||||
|
margin: 0;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
li {
|
||||||
|
background-color: $primary1;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 100%;
|
||||||
|
opacity: 1;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end client section
|
||||||
|
|
||||||
|
// contact section
|
||||||
|
.contact_section {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
height: 50px;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
padding-left: 15px;
|
||||||
|
background-color: transparent;
|
||||||
|
outline: none;
|
||||||
|
color: $black;
|
||||||
|
border: 1px solid #a5a5a5;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: #1c1b1b;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.message-box {
|
||||||
|
height: 120px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
@include main-font();
|
||||||
|
@include hero_btn($primary1, $white, 10px, 65px, 3px);
|
||||||
|
color: #fff;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.map_container {
|
||||||
|
height: 100%;
|
||||||
|
min-height: 325px;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-left: 45px;
|
||||||
|
|
||||||
|
.map {
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
#googleMap {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end contact section
|
||||||
|
|
||||||
|
.footer_container {
|
||||||
|
background-color: $primary1;
|
||||||
|
color: $white;
|
||||||
|
border-radius: 350px 0 0 0;
|
||||||
|
padding-top: 145px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* info section */
|
||||||
|
.info_section {
|
||||||
|
h4 {
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_contact {
|
||||||
|
.contact_link_box {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
a {
|
||||||
|
margin: 5px 0;
|
||||||
|
color: $white;
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_social {
|
||||||
|
display: flex;
|
||||||
|
margin-top: 20px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
color: $white;
|
||||||
|
border-radius: 100%;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 24px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.info_links {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
color: $white;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $primary2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
input {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid $white;
|
||||||
|
background-color: transparent;
|
||||||
|
width: 100%;
|
||||||
|
height: 45px;
|
||||||
|
color: $white;
|
||||||
|
outline: none;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
@include hero_btn($primary2, $white, 10px, 55px, 0);
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end info section */
|
||||||
|
|
||||||
|
/* footer section*/
|
||||||
|
|
||||||
|
.footer_section {
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
p {
|
||||||
|
padding: 25px 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end footer section
|
0
favicon.ico
Normal file
BIN
fonts/fontawesome-webfont.ttf
Normal file
BIN
fonts/fontawesome-webfont.woff
Normal file
BIN
fonts/fontawesome-webfont.woff2
Normal file
BIN
images/about-img.jpg
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
images/about-img.png
Normal file
After Width: | Height: | Size: 184 KiB |
BIN
images/case-1.jpg
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
images/case-2.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
images/client.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
images/contact-img.png
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
images/s1.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
images/s2.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
images/s3.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
images/s4.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
images/slider-bg.jpg
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
images/slider-img.png
Normal file
After Width: | Height: | Size: 82 KiB |
55
index.php
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Contracts\Http\Kernel;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Check If The Application Is Under Maintenance
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If the application is in maintenance / demo mode via the "down" command
|
||||||
|
| we will load this file so that any pre-rendered content can be shown
|
||||||
|
| instead of starting the framework, which could cause an exception.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (file_exists($maintenance = __DIR__.'/storage/framework/maintenance.php')) {
|
||||||
|
require $maintenance;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Register The Auto Loader
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Composer provides a convenient, automatically generated class loader for
|
||||||
|
| this application. We just need to utilize it! We'll simply require it
|
||||||
|
| into the script here so we don't need to manually load our classes.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
require __DIR__.'/vendor/autoload.php';
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Run The Application
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Once we have the application, we can handle the incoming request using
|
||||||
|
| the application's HTTP kernel. Then, we will send the response back
|
||||||
|
| to this client's browser, allowing them to enjoy our application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||||
|
|
||||||
|
$kernel = $app->make(Kernel::class);
|
||||||
|
|
||||||
|
$response = $kernel->handle(
|
||||||
|
$request = Request::capture()
|
||||||
|
)->send();
|
||||||
|
|
||||||
|
$kernel->terminate($request, $response);
|
4443
js/bootstrap.js
vendored
Normal file
18
js/custom.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// to get current year
|
||||||
|
function getYear() {
|
||||||
|
var currentDate = new Date();
|
||||||
|
var currentYear = currentDate.getFullYear();
|
||||||
|
document.querySelector("#displayYear").innerHTML = currentYear;
|
||||||
|
}
|
||||||
|
|
||||||
|
getYear();
|
||||||
|
|
||||||
|
/** google_map js **/
|
||||||
|
|
||||||
|
function myMap() {
|
||||||
|
var mapProp = {
|
||||||
|
center: new google.maps.LatLng(40.712775, -74.005973),
|
||||||
|
zoom: 18,
|
||||||
|
};
|
||||||
|
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
|
||||||
|
}
|
2
js/jquery-3.4.1.min.js
vendored
Normal file
@ -19,12 +19,12 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
|
||||||
|
|
||||||
<!-- font awesome style -->
|
<!-- font awesome style -->
|
||||||
<link href="css/font-awesome.min.css" rel="stylesheet" />
|
<link href="/css/font-awesome.min.css" rel="stylesheet" />
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
<!-- Custom styles for this template -->
|
||||||
<link href="css/style.css" rel="stylesheet" />
|
<link href="/css/style.css" rel="stylesheet" />
|
||||||
<!-- responsive style -->
|
<!-- responsive style -->
|
||||||
<link href="css/responsive.css" rel="stylesheet" />
|
<link href="/css/responsive.css" rel="stylesheet" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@ -52,8 +52,8 @@
|
|||||||
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
|
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
|
||||||
</script>
|
</script>
|
||||||
<!-- bootstrap js -->
|
<!-- bootstrap js -->
|
||||||
<script src="js/bootstrap.js"></script>
|
<script src="/js/bootstrap.js"></script>
|
||||||
<script src="js/custom.js"></script>
|
<script src="/js/custom.js"></script>
|
||||||
<!-- Google Map -->
|
<!-- Google Map -->
|
||||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap">
|
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap">
|
||||||
</script>
|
</script>
|
||||||
|
2
robots.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow:
|