2769 lines
50 KiB
CSS
2769 lines
50 KiB
CSS
*,
|
|
::before,
|
|
::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
list-style: none;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
/* scroll-snap-type: y mandatory; */
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: "Manrope", serif;
|
|
overflow-x: hidden;
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
|
|
:root {
|
|
--black: #000000;
|
|
--light-black: #050505;
|
|
--orange: #E5195E;
|
|
--light-orange: #d1afbb;
|
|
--white: #ffffff;
|
|
--white-light: #F8F8F8;
|
|
--white-other: #FEFEFE;
|
|
--white-mix: #CECECE;
|
|
--border: #FF72A285;
|
|
--gray: #4C4C4C;
|
|
--gray-light: #ffffff3d;
|
|
--other-gray: #858585;
|
|
--blue: #1B6DC1;
|
|
--light-blue: #2F2F2F;
|
|
--extra-gray: #E6E6E6;
|
|
/* --box-shadow: 0px 3px 10px 0px rgb(232 21 93 / 25%); */
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
span,
|
|
strong,
|
|
a,
|
|
button,
|
|
div {
|
|
font-family: "Manrope", serif;
|
|
}
|
|
|
|
a,
|
|
a:focus,
|
|
a:focus-visible,
|
|
button,
|
|
button:focus,
|
|
button:focus-visible,
|
|
button.nav-link,
|
|
button.nav-link.active,
|
|
button.nav-link:hover,
|
|
button.nav-link:focus,
|
|
button:focus,
|
|
button.nav-link:focus-visible,
|
|
button:focus-visible,
|
|
button.nav-link.active {
|
|
color: var(--black);
|
|
border: 0;
|
|
border-color: none;
|
|
/* padding: 0; */
|
|
outline: none;
|
|
box-shadow: none;
|
|
/* font-size: 14px; */
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
border: none;
|
|
background: none;
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
/* ::-webkit-scrollbar {
|
|
width: .5rem;
|
|
height: .1rem;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: var(--light-orange);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: var(--orange);
|
|
border-radius: 5rem;
|
|
-webkit-border-radius: 5rem;
|
|
-moz-border-radius: 5rem;
|
|
-ms-border-radius: 5rem;
|
|
-o-border-radius: 5rem;
|
|
} */
|
|
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.bg__gray {
|
|
background: var(--white-light);
|
|
}
|
|
|
|
.black_heading {
|
|
color: var(--light-black);
|
|
font-size: 30px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 100%;
|
|
letter-spacing: 0.3px;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.h3_heading {
|
|
font-size: 22px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 120%;
|
|
letter-spacing: 0.25px;
|
|
margin-bottom: 18px;
|
|
color: var(--light-black);
|
|
}
|
|
|
|
.gray_para {
|
|
color: var(--gray);
|
|
font-size: 18px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
#pre_loader {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: var(--white);
|
|
z-index: 999999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#pre_loader img {
|
|
width: 99px;
|
|
height: 99px;
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
min-height: 94px;
|
|
position: absolute;
|
|
top: 35px;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 9999;
|
|
background-color: var(--black);
|
|
padding: 0px 30px;
|
|
}
|
|
|
|
.header.sticky {
|
|
/* background-color: var(--black); */
|
|
position: fixed;
|
|
animation: slideDown 0.8s ease-out;
|
|
-webkit-animation: slideDown 0.8s ease-out;
|
|
top: 0;
|
|
}
|
|
|
|
|
|
@keyframes slideDown {
|
|
from {
|
|
transform: translateY(-100%);
|
|
-webkit-transform: translateY(-100%);
|
|
-moz-transform: translateY(-100%);
|
|
-ms-transform: translateY(-100%);
|
|
-o-transform: translateY(-100%);
|
|
}
|
|
|
|
to {
|
|
transform: translateY(0);
|
|
-webkit-transform: translateY(0);
|
|
-moz-transform: translateY(0);
|
|
-ms-transform: translateY(0);
|
|
-o-transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.header .head_inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
|
|
.head_inner:after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 2%;
|
|
bottom: 0;
|
|
width: 96%;
|
|
height: 1px;
|
|
background-color: #626262;
|
|
}
|
|
|
|
.header.sticky .head_inner:after {
|
|
content: none;
|
|
}
|
|
|
|
|
|
.header .head_logo {
|
|
position: relative;
|
|
}
|
|
|
|
|
|
.header .head_logo img {
|
|
width: 65px;
|
|
height: 65px;
|
|
}
|
|
|
|
.header .nav_bar ul {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 22px;
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
.header .nav_bar .drop_down>.nav_link {
|
|
padding: 5px;
|
|
color: var(--white);
|
|
transition: .3s;
|
|
font-weight: normal;
|
|
position: relative;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.header .nav_bar .drop_down>.nav_link:hover,
|
|
.header .nav_bar .drop_down.active>.nav_link {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.header .nav_bar .drop_down.active>.nav_link {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.header .nav_bar .drop_down>.nav_link::after {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 1px;
|
|
border-radius: 10px;
|
|
background: var(--orange);
|
|
bottom: 0px;
|
|
left: 50%;
|
|
content: '';
|
|
transform: translateX(-50%);
|
|
transition: all .3s;
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
-ms-border-radius: 10px;
|
|
-o-border-radius: 10px;
|
|
}
|
|
|
|
.header .nav_bar .drop_down>.nav_link:hover:after,
|
|
.header .nav_bar .drop_down.active>.nav_link::after {
|
|
width: 98%;
|
|
}
|
|
|
|
img.arrow_up {
|
|
width: 25px;
|
|
height: 25px;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
|
|
.nav_link svg {
|
|
transform: rotate(0deg);
|
|
transition: transform 0.3s ease, color 0.3s ease, fill 0.3s ease;
|
|
width: 10px;
|
|
height: 11px;
|
|
margin-left: 2px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.drop_down.active .nav_link svg {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.nav_link svg path {
|
|
fill: #ababab;
|
|
transition: fill 0.2s ease;
|
|
}
|
|
|
|
.drop_down.active .nav_link svg path {
|
|
fill: #E5195E;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us {
|
|
background: var(--orange);
|
|
color: var(--white);
|
|
padding: 7px 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
transition: all 0.3s;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.lg-contact{
|
|
min-width: 220px;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us:hover {
|
|
box-shadow: 6px 6px 0px 0px var(--white);
|
|
margin: 0 6px 6px 0;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us:hover img {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
|
|
.header .nav_bar .dropdown_content {
|
|
position: absolute;
|
|
top: calc(100% + 0px);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translateY(-10px);
|
|
-webkit-transform: translateY(-10px);
|
|
-moz-transform: translateY(-10px);
|
|
-ms-transform: translateY(-10px);
|
|
-o-transform: translateY(-10px);
|
|
transition: opacity .3s ease-in-out, transform .3s ease-in-out;
|
|
-webkit-transition: opacity .3s ease-in-out, transform .3s ease-in-out;
|
|
-moz-transition: opacity .3s ease-in-out, transform .3s ease-in-out;
|
|
-ms-transition: opacity .3s ease-in-out, transform .3s ease-in-out;
|
|
-o-transition: opacity .3s ease-in-out, transform .3s ease-in-out;
|
|
}
|
|
|
|
.head_inner .nav_bar .drop_down.active>.nav_link+.dropdown_content {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
-webkit-transform: translateY(0);
|
|
-moz-transform: translateY(0);
|
|
-ms-transform: translateY(0);
|
|
-o-transform: translateY(0);
|
|
pointer-events: auto;
|
|
transform: translateX(-50px);
|
|
}
|
|
|
|
.grid_btns {
|
|
gap: 40px;
|
|
padding: 20px;
|
|
position: relative;
|
|
transition: top .2s;
|
|
-webkit-transition: top .2s;
|
|
-moz-transition: top .2s;
|
|
-ms-transition: top .2s;
|
|
-o-transition: top .2s;
|
|
top: 0px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
background: #1F1F1F;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
|
|
.grid_btns .buttons_width {
|
|
width: 50%;
|
|
align-items: baseline;
|
|
gap: 5px;
|
|
height: 100%;
|
|
overflow: auto;
|
|
flex-direction: row !important;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.grid_btns .buttons_width::-webkit-scrollbar {
|
|
width: .3rem;
|
|
height: .1rem;
|
|
}
|
|
|
|
.grid_btns .buttons_width::-webkit-scrollbar-track {
|
|
background-color: var(--light-orange);
|
|
}
|
|
|
|
.grid_btns .buttons_width::-webkit-scrollbar-thumb {
|
|
background-color: var(--orange);
|
|
border-radius: 5rem;
|
|
-webkit-border-radius: 5rem;
|
|
-moz-border-radius: 5rem;
|
|
-ms-border-radius: 5rem;
|
|
-o-border-radius: 5rem;
|
|
}
|
|
|
|
|
|
.grid_btns .common_text {
|
|
position: relative;
|
|
padding-bottom: 5px;
|
|
overflow: hidden;
|
|
color: var(--black);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.grid_btns .tab-content .tab-pane .common_text::after {
|
|
content: '';
|
|
position: absolute;
|
|
border: 0;
|
|
/*border-bottom: 2px solid var(--orange);
|
|
*/
|
|
width: 100%;
|
|
opacity: 1;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 2px;
|
|
background: var(--orange);
|
|
transition: width 1.2s ease;
|
|
-webkit-transition: width 1.2s ease;
|
|
-moz-transition: width 1.2s ease;
|
|
-ms-transition: width 1.2s ease;
|
|
-o-transition: width 1.2s ease;
|
|
}
|
|
|
|
.grid_btns .tab-content .tab-pane.active .common_text.common_text_hide::after {
|
|
animation: width_increase 1s alternate;
|
|
-webkit-animation: width_increase 1s alternate;
|
|
}
|
|
|
|
@keyframes width_increase {
|
|
0% {
|
|
width: 0%;
|
|
}
|
|
|
|
100% {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.grid_btns .mob_app_dev a {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.header .mob_app_dev .setting_hover {
|
|
position: relative;
|
|
/* width: 38px;
|
|
height: 38px; */
|
|
background: #f3f3f3;
|
|
border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
-ms-border-radius: 50%;
|
|
-o-border-radius: 50%;
|
|
transition: all .2s;
|
|
-webkit-transition: all .2s;
|
|
-moz-transition: all .2s;
|
|
-ms-transition: all .2s;
|
|
-o-transition: all .2s;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 7px;
|
|
}
|
|
|
|
.header .mob_app_dev .setting_hover svg {
|
|
width: 22px;
|
|
height: 22px;
|
|
transition: all .2s;
|
|
-webkit-transition: all .2s;
|
|
-moz-transition: all .2s;
|
|
-ms-transition: all .2s;
|
|
-o-transition: all .2s;
|
|
|
|
}
|
|
|
|
|
|
.grid_btns button,
|
|
.grid_btns a {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.grid_btns button:hover,
|
|
.grid_btns a:hover {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.grid_btns .nav-link {
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
color: #fff;
|
|
text-align: left;
|
|
font-weight: normal;
|
|
font-size: 15px;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
|
|
.grid_btns .nav-link:hover {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.grid_btns .nav-link.active {
|
|
color: var(--orange);
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
}
|
|
|
|
|
|
.single_line_drop .grid_btns .buttons_width {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.single_line_drop .grid_btns .nav-link.active a,
|
|
.single_line_drop .grid_btns .nav-link:hover a {
|
|
color: var(--white);
|
|
}
|
|
|
|
.cross_btn {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 20px;
|
|
background: var(--orange);
|
|
color: var(--white);
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
display: grid;
|
|
place-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ham_burger,
|
|
.overlay,
|
|
.ham_cross {
|
|
display: none;
|
|
}
|
|
|
|
.nav_cross {
|
|
display: none;
|
|
}
|
|
|
|
|
|
.lets_talk a,
|
|
.lets_talk button {
|
|
font-size: 17px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: normal;
|
|
/* text-transform: capitalize; */
|
|
background-color: var(--orange);
|
|
padding: 10px 25px;
|
|
color: var(--white);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
text-decoration: none;
|
|
transition: all .5s;
|
|
-webkit-transition: all .5s;
|
|
-moz-transition: all .5s;
|
|
-ms-transition: all .5s;
|
|
-o-transition: all .5s;
|
|
position: relative;
|
|
}
|
|
|
|
.lets_talk a::before,
|
|
.lets_talk button::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 7px;
|
|
right: -7px;
|
|
border-top: 1px solid var(--white);
|
|
width: 0;
|
|
height: 100%;
|
|
transition: all .5s;
|
|
-webkit-transition: all .5s;
|
|
-moz-transition: all .5s;
|
|
-ms-transition: all .5s;
|
|
-o-transition: all .5s;
|
|
}
|
|
|
|
.lets_talk a::after,
|
|
.lets_talk button::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -7px;
|
|
left: 7px;
|
|
border-top: 1px solid var(--white);
|
|
width: 0;
|
|
transition: all .5s;
|
|
-webkit-transition: all .5s;
|
|
-moz-transition: all .5s;
|
|
-ms-transition: all .5s;
|
|
-o-transition: all .5s;
|
|
}
|
|
|
|
.lets_talk a span,
|
|
.lets_talk button span {
|
|
content: '';
|
|
position: absolute;
|
|
}
|
|
|
|
.lets_talk a span.one,
|
|
.lets_talk button span.one {
|
|
width: 1px;
|
|
height: 0px;
|
|
bottom: -7px;
|
|
background: var(--white);
|
|
left: 7px;
|
|
transition: all .5s;
|
|
}
|
|
|
|
.lets_talk a span.two,
|
|
.lets_talk button span.two {
|
|
width: 1px;
|
|
height: 0;
|
|
bottom: -7px;
|
|
background: var(--white);
|
|
right: -7px;
|
|
transition: all .5s;
|
|
}
|
|
|
|
|
|
.lets_talk a:hover:before,
|
|
.lets_talk button:hover:before {
|
|
width: 7px;
|
|
}
|
|
|
|
.lets_talk a:hover:after,
|
|
.lets_talk button:hover:after {
|
|
width: 100%;
|
|
}
|
|
|
|
.lets_talk a:hover span.one,
|
|
.lets_talk button:hover span.one {
|
|
height: 7px;
|
|
}
|
|
|
|
.lets_talk a:hover span.two,
|
|
.lets_talk button:hover span.two {
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.lets_talk a img,
|
|
.lets_talk button img {
|
|
margin-left: 5px;
|
|
transition: all .3s;
|
|
-webkit-transition: all .3s;
|
|
-moz-transition: all .3s;
|
|
-ms-transition: all .3s;
|
|
-o-transition: all .3s;
|
|
}
|
|
|
|
.lets_talk a:hover img,
|
|
.lets_talk button:hover img {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.section {
|
|
padding: 50px 0;
|
|
}
|
|
|
|
|
|
.develop_boxes {
|
|
display: grid;
|
|
grid-template-columns: repeat(9, 1fr);
|
|
/* grid-template-rows: repeat(2, 1fr); */
|
|
gap: 30px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
|
|
.develop_boxes .inner_box_1 {
|
|
grid-column: 1/7;
|
|
grid-row: 1/2;
|
|
}
|
|
|
|
.develop_boxes .inner_box_2 {
|
|
grid-column: 7/10;
|
|
grid-row: 1/2;
|
|
}
|
|
|
|
.develop_boxes .inner_box_3 {
|
|
grid-column: 1/4;
|
|
grid-row: 2/2;
|
|
}
|
|
|
|
.develop_boxes .inner_box_4 {
|
|
grid-column: 4/7;
|
|
grid-row: 2/2;
|
|
}
|
|
|
|
.develop_boxes .inner_box_5 {
|
|
grid-column: 7/10;
|
|
grid-row: 2/2;
|
|
}
|
|
|
|
.what_do_we_section {
|
|
/* background: var(--white-other); */
|
|
}
|
|
|
|
.what_do_we_section h2 {
|
|
text-align: center;
|
|
line-height: normal;
|
|
}
|
|
|
|
.what_do_we_section .other_para {
|
|
margin-bottom: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.develop_boxes .inner_box {
|
|
/* background: var(--white); */
|
|
background: #1B1B1B;
|
|
box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.12);
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all .5s;
|
|
-webkit-transition: all .5s;
|
|
-moz-transition: all .5s;
|
|
-ms-transition: all .5s;
|
|
-o-transition: all .5s;
|
|
}
|
|
|
|
.develop_boxes .inner_box_2 img ,
|
|
.develop_boxes .inner_box_3 img ,
|
|
.develop_boxes .inner_box_4 img ,
|
|
.develop_boxes .inner_box_5 img {
|
|
width: 45px;
|
|
height: 38px;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.develop_boxes .mini-head {
|
|
line-height: 26px;
|
|
}
|
|
.develop_boxes .inner_box img.mobile_app_img {
|
|
position: absolute;
|
|
width: 290px;
|
|
height: 290px;
|
|
bottom: -35px;
|
|
right: -65px;
|
|
}
|
|
|
|
|
|
|
|
.develop_boxes .inner_box .gray_para {
|
|
font-size: 17px;
|
|
color: #33333399;
|
|
}
|
|
|
|
.develop_boxes .inner_box.first_inner_box .gray_para {
|
|
width: 66%;
|
|
}
|
|
|
|
.develop_boxes .inner_box .lets_talk {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.develop_boxes .inner_box .lets_talk a::before,
|
|
.develop_boxes .inner_box .lets_talk a::after {
|
|
border-top-color: var(--orange);
|
|
}
|
|
|
|
.develop_boxes .inner_box .lets_talk a span.one,
|
|
.develop_boxes .inner_box .lets_talk a span.two {
|
|
background: var(--orange);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.develop_boxes .other_img:hover:after {
|
|
width: 100%;
|
|
}
|
|
|
|
.develop_boxes .other_img::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 6px;
|
|
background: #fff;
|
|
bottom: 0;
|
|
left: 0;
|
|
transition: all .8s;
|
|
border-radius: 0 0 10px;
|
|
}
|
|
|
|
.develop_boxes .other_img {
|
|
position: relative;
|
|
}
|
|
|
|
.develop_boxes .other_img svg {
|
|
width: 45px;
|
|
height: 38px;
|
|
margin: 5px 0 20px;
|
|
}
|
|
|
|
.develop_boxes .other_img svg .setting_rotate {
|
|
/* animation: rotate 1s linear infinite;
|
|
-webkit-animation: rotate 1.6s linear infinite; */
|
|
transform-origin: 24px 15px;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
-webkit-transform: rotate(360deg);
|
|
-moz-transform: rotate(360deg);
|
|
-ms-transform: rotate(360deg);
|
|
-o-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.view_all_red {
|
|
margin: 40px 0 20px;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.view_all_red a {
|
|
color: var(--orange);
|
|
font-size: 20px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 140%;
|
|
letter-spacing: 0.2px;
|
|
padding: 10px 20px;
|
|
text-transform: capitalize;
|
|
position: relative;
|
|
}
|
|
|
|
.view_all_red a span {
|
|
content: '';
|
|
position: absolute;
|
|
background: #fff;
|
|
transition: all .5s;
|
|
}
|
|
|
|
.view_all_red a span.top {
|
|
width: 0;
|
|
height: 1px;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.view_all_red a span.right {
|
|
width: 1px;
|
|
height: 0;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.view_all_red a span.bottom {
|
|
width: 0;
|
|
height: 1px;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.view_all_red a span.left {
|
|
width: 1px;
|
|
height: 0;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.view_all_red a:hover span.top,
|
|
.view_all_red a:hover span.bottom {
|
|
width: 100%;
|
|
}
|
|
|
|
.view_all_red a:hover span.right,
|
|
.view_all_red a:hover span.left {
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.why_wdipl_section {
|
|
background-image: url('../images/why_bg.webp');
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
background-size: cover;
|
|
object-fit: cover;
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.why_wdipl_section .container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
}
|
|
|
|
.why_wdipl_section .why_inner,
|
|
.why_wdipl_section .wdi_boxes {
|
|
width: 50%;
|
|
}
|
|
|
|
.why_wdipl_section .why_inner {
|
|
z-index: 1;
|
|
}
|
|
|
|
.why_wdipl_section h2 {
|
|
color: var(--white);
|
|
font-size: 35px;
|
|
padding-bottom: 25px;
|
|
position: relative;
|
|
line-height: 130%;
|
|
}
|
|
|
|
.why_wdipl_section h2::after {
|
|
position: absolute;
|
|
content: '';
|
|
width: 150px;
|
|
height: 100%;
|
|
border: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
border-bottom: 2px solid var(--white);
|
|
}
|
|
|
|
.why_wdipl_section .gray_para {
|
|
color: var(--white);
|
|
margin: 30px 0 50px;
|
|
}
|
|
|
|
.why_wdipl_section h2 .inn_red {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.why_wdipl_section .icon_img {
|
|
width: 66px;
|
|
height: 68px;
|
|
animation: movement 2s linear infinite alternate;
|
|
-webkit-animation: movement 2s linear infinite alternate;
|
|
}
|
|
|
|
@keyframes movement {
|
|
0% {
|
|
transform: scale(1) translateY(10px);
|
|
-webkit-transform: scale(1) translateY(10px);
|
|
-moz-transform: scale(1) translateY(10px);
|
|
-ms-transform: scale(1) translateY(10px);
|
|
-o-transform: scale(1) translateY(10px);
|
|
}
|
|
|
|
25% {
|
|
transform: scale(.9) translateY(0px);
|
|
-webkit-transform: scale(.9) translateY(0px);
|
|
-moz-transform: scale(.9) translateY(0px);
|
|
-ms-transform: scale(.9) translateY(0px);
|
|
-o-transform: scale(.9) translateY(0px);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(.7) translateY(5px);
|
|
-webkit-transform: scale(.7) translateY(5px);
|
|
-moz-transform: scale(.7) translateY(5px);
|
|
-ms-transform: scale(.7) translateY(5px);
|
|
-o-transform: scale(.7) translateY(5px);
|
|
}
|
|
|
|
75% {
|
|
transform: scale(.9) translateY(-5px);
|
|
-webkit-transform: scale(.9) translateY(-5px);
|
|
-moz-transform: scale(.9) translateY(-5px);
|
|
-ms-transform: scale(.9) translateY(-5px);
|
|
-o-transform: scale(.9) translateY(-5px);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1.2) translateY(-10px);
|
|
-webkit-transform: scale(1.2) translateY(-10px);
|
|
-moz-transform: scale(1.2) translateY(-10px);
|
|
-ms-transform: scale(1.2) translateY(-10px);
|
|
-o-transform: scale(1.2) translateY(-10px);
|
|
}
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
z-index: 1;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
height: 100%;
|
|
margin-right: -105px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: 140px;
|
|
height: 140px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text {
|
|
border: 1px solid var(--orange);
|
|
background: var(--gray-light);
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text .icon_inner {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 10px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text .icon_inner .red_count {
|
|
font-size: 32px;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
line-height: 130%;
|
|
letter-spacing: 0.352px;
|
|
color: var(--orange);
|
|
margin: 0;
|
|
display: flex;
|
|
animation: count 1s linear infinite alternate;
|
|
-webkit-animation: count 1s linear infinite alternate;
|
|
}
|
|
|
|
@keyframes count {
|
|
from {
|
|
color: var(--white);
|
|
}
|
|
|
|
to {
|
|
color: var(--orange);
|
|
}
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text .icon_inner .gray_para {
|
|
margin: 0;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
|
|
|
|
.h5_heading {
|
|
font-size: 18px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 140%;
|
|
letter-spacing: 0.18px;
|
|
text-transform: capitalize;
|
|
color: var(--black);
|
|
}
|
|
|
|
|
|
.footer1 {
|
|
background: #242424;
|
|
color: #fff;
|
|
/* height: 280px; */
|
|
display: flex;
|
|
padding: 35px 0;
|
|
}
|
|
|
|
.footer_grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 60px 40px;
|
|
}
|
|
|
|
.foot1 h2 {
|
|
/* text-align: center; */
|
|
font-size: 22px;
|
|
color: #E5195E;
|
|
text-transform: capitalize;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.foot1 {
|
|
/* padding: 20px; */
|
|
text-align: left;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
/* height: 180px; */
|
|
}
|
|
|
|
.foot1 h3 {
|
|
margin-top: 10px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.foot1 p {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
color: var(--extra-gray);
|
|
min-height: 100px;
|
|
}
|
|
|
|
.foot1 ul li a {
|
|
color: var(--white);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.foot1 ul li a:hover {
|
|
color: var(--orange);
|
|
text-decoration: underline;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.foot1 ul li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.foot1 ul {
|
|
padding: 0;
|
|
}
|
|
|
|
.footer2 {
|
|
background: #1A1A1A;
|
|
padding: 45px 0 20px;
|
|
}
|
|
|
|
.foot2 ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.foot2 a {
|
|
color: var(--extra-gray);
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
color: --extra-gray;
|
|
line-height: 2.5;
|
|
transition: all .2s;
|
|
-webkit-transition: all .2s;
|
|
-moz-transition: all .2s;
|
|
-ms-transition: all .2s;
|
|
-o-transition: all .2s;
|
|
}
|
|
|
|
.foot2 a:hover {
|
|
color: var(--orange);
|
|
font-weight: 500;
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.foot2 .social-btns a:hover {
|
|
padding: 10px 25px;
|
|
}
|
|
|
|
.foot2 h2 {
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.foot2.text-align-center {
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* align-items: center; */
|
|
/* justify-content: space-between; */
|
|
z-index: 1;
|
|
gap: 45px;
|
|
}
|
|
|
|
.foot2.foot_cluch {
|
|
margin-top: -40px;
|
|
}
|
|
|
|
.footer_contact_us {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 40px 35px;
|
|
border-radius: 5px;
|
|
background: #373737;
|
|
margin: 0 auto 50px;
|
|
width: 81%;
|
|
}
|
|
|
|
.footer_contact_us h3 {
|
|
color: var(--white);
|
|
margin: 0;
|
|
font-size: 30px;
|
|
line-height: 150%;
|
|
}
|
|
|
|
a.border-btn {
|
|
border: 1px solid #E5195E;
|
|
padding: 5px 25px;
|
|
margin-bottom: 25px;
|
|
color: #E5195E;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
}
|
|
|
|
a.border-btn {
|
|
border: 1px solid #E5195E;
|
|
padding: 0px 5px;
|
|
margin-bottom: 25px;
|
|
color: #E5195E;
|
|
background: transparent;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.foot2 .social-btns a.border-btn {
|
|
display: flex;
|
|
width: 75%;
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.social-icons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.social-icons a img {
|
|
height: 30px;
|
|
width: 30px;
|
|
transition: transform 1s;
|
|
}
|
|
|
|
.social-icons img:hover {
|
|
filter: brightness(0) invert(1);
|
|
-ms-transform: scale(1.3);
|
|
-webkit-transform: scale(1.3);
|
|
transform: scale(1.3);
|
|
-moz-transform: scale(1.3);
|
|
-o-transform: scale(1.3);
|
|
-webkit-filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.rating {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #FE3D2E;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.rating span {
|
|
color: #fff;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.clutch {
|
|
display: flex;
|
|
/* justify-content: space-evenly; */
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.clutch img {
|
|
width: 42px;
|
|
height: 42px;
|
|
}
|
|
|
|
.clutch img:nth-child(2) {
|
|
width: 35px;
|
|
height: 35px;
|
|
}
|
|
|
|
.rates h3 {
|
|
font-weight: 600;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
margin: 5px 0 0;
|
|
}
|
|
|
|
.social-btns {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* align-items: center; */
|
|
}
|
|
|
|
/* .foot2 {
|
|
margin-bottom: 60px;
|
|
} */
|
|
|
|
.social-btns h3 {
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
margin-bottom: 15px;
|
|
line-height: normal;
|
|
}
|
|
|
|
button.pdf.btn {
|
|
background: #E5195E;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
/* justify-content: space-between; */
|
|
border-radius: 0;
|
|
gap: 13px;
|
|
}
|
|
|
|
.pdf img {
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
|
|
.copyright {
|
|
margin-top: -40px;
|
|
}
|
|
|
|
.copyright p {
|
|
color: --extra-gray !important;
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
color: var(--extra-gray);
|
|
}
|
|
|
|
.copyright a {
|
|
font-weight: normal;
|
|
color: var(--extra-gray);
|
|
width: 100%;
|
|
display: flex;
|
|
text-decoration: underline;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.foot2 .social-btns a {
|
|
line-height: normal;
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.foot2 .social-btns a:hover {
|
|
color: var(--white);
|
|
}
|
|
|
|
.social-btns input {
|
|
margin: 10px 0;
|
|
color: var(--white);
|
|
border: 1px solid var(--white);
|
|
background: transparent;
|
|
padding: 10px;
|
|
border-radius: 0;
|
|
-webkit-border-radius: 0;
|
|
-moz-border-radius: 0;
|
|
-ms-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
}
|
|
|
|
.social-btns input::placeholder {
|
|
color: var(--extra-gray);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.copyright img {
|
|
width: 56px;
|
|
height: 57px;
|
|
}
|
|
|
|
.faqs_section {
|
|
text-align: center;
|
|
}
|
|
|
|
.faqs_dark_sec {
|
|
background-color: var(--light-black);
|
|
}
|
|
|
|
.faqs_section h2 {
|
|
margin-bottom: 45px;
|
|
}
|
|
|
|
.faqs_dark_sec h2 {
|
|
color: var(--white);
|
|
}
|
|
|
|
.faqs_section .inn_data {
|
|
border-bottom: 1px solid #E8155D;
|
|
padding-bottom: 5px;
|
|
margin-bottom: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
.faqs_section .inn_data:last-child {
|
|
border: none;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.faqs_section .inn_data h3 {
|
|
display: flex;
|
|
align-items: normal;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
padding-bottom: 20px;
|
|
padding-top: 20px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
text-transform: inherit;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.faqs_dark_sec .inn_data h3 {
|
|
color: var(--white);
|
|
}
|
|
|
|
.faqs_section .inn_data .gray_para {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.faqs_dark_sec .inn_data .gray_para {
|
|
color: #ACACAC;
|
|
}
|
|
|
|
.faqs_section .inn_data h3 i {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.faqs_section .inn_data .accordion_content {
|
|
display: none;
|
|
}
|
|
|
|
.faqs_section .inn_data .accordion_content.active {
|
|
display: block;
|
|
}
|
|
|
|
|
|
#progress_bar {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
right: 20px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background: var(--orange);
|
|
display: none;
|
|
place-items: center;
|
|
border-radius: 50%;
|
|
fill: var(--black);
|
|
font-weight: 500;
|
|
z-index: 1000;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#pro_value {
|
|
display: block;
|
|
width: calc(100% - 12px);
|
|
height: calc(100% - 12px);
|
|
background: var(--white);
|
|
border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
-ms-border-radius: 50%;
|
|
-o-border-radius: 50%;
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
|
|
.nav-tabs .nav-link:focus,
|
|
.nav-tabs .nav-link:hover {
|
|
outline: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
|
|
.request_the_price_sec h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
.request_the_price_sec .main_para {
|
|
margin-bottom: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.request_the_price_sec .inner_requst {
|
|
display: flex;
|
|
/* align-items: center; */
|
|
justify-content: space-between;
|
|
gap: 40px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.request_the_price_sec .box {
|
|
width: 50%;
|
|
background: var(--white-light);
|
|
border-radius: 10px;
|
|
padding: 25px;
|
|
}
|
|
|
|
.request_the_price_sec h3 {
|
|
font-size: 20px;
|
|
margin-bottom: 30px;
|
|
display: flex;
|
|
gap: 8px;
|
|
line-height: normal;
|
|
text-transform: inherit;
|
|
}
|
|
|
|
.request_the_price_sec ul {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.request_the_price_sec ul li {
|
|
display: flex;
|
|
gap: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.request_the_price_sec ul li input {
|
|
width: 25px;
|
|
height: 25px;
|
|
accent-color: var(--orange);
|
|
position: relative;
|
|
}
|
|
|
|
.request_the_price_sec ul li input::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
border: 1px solid var(--orange);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.request_the_price_sec .right_side ul li input::before {
|
|
border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
-moz-border-radius: 2px;
|
|
-ms-border-radius: 2px;
|
|
-o-border-radius: 2px;
|
|
}
|
|
|
|
|
|
.request_the_price_sec ul li label {
|
|
color: #292929;
|
|
font-size: 18px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
position: relative;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 2px;
|
|
top: 0;
|
|
left: 0;
|
|
background: #999;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper .rq_step {
|
|
position: relative;
|
|
width: 25%;
|
|
text-align: right;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper p {
|
|
margin-top: 20px;
|
|
font-size: 16px;
|
|
color: var(--black);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper .rq_step.active::before,
|
|
.request_the_price_sec .request_stepper .rq_step.completed::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: var(--white);
|
|
border: 4px solid var(--orange);
|
|
top: -9px;
|
|
left: 90%;
|
|
border-radius: 50%;
|
|
transform: translateX(-50%);
|
|
-webkit-transform: translateX(-50%);
|
|
-moz-transform: translateX(-50%);
|
|
-ms-transform: translateX(-50%);
|
|
-o-transform: translateX(-50%);
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
-ms-border-radius: 50%;
|
|
-o-border-radius: 50%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper .rq_step::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: var(--orange);
|
|
top: -3px;
|
|
left: 90%;
|
|
border-radius: 50%;
|
|
transform: translateX(-50%);
|
|
-webkit-transform: translateX(-50%);
|
|
-moz-transform: translateX(-50%);
|
|
-ms-transform: translateX(-50%);
|
|
-o-transform: translateX(-50%);
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
-ms-border-radius: 50%;
|
|
-o-border-radius: 50%;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper p::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: -1px;
|
|
width: 0%;
|
|
height: 4px;
|
|
background: var(--orange);
|
|
transition: all .3s;
|
|
-webkit-transition: all .3s;
|
|
-moz-transition: all .3s;
|
|
-ms-transition: all .3s;
|
|
-o-transition: all .3s;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper .completed p::before,
|
|
.request_the_price_sec .request_stepper .active p::before {
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
.why_choose_other_sec {
|
|
background-color: #0f0f0f;
|
|
background-image: inherit;
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.why_choose_other_sec h3 {
|
|
color: var(--white);
|
|
line-height: inherit;
|
|
font-size: 30px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.why_choose_other_sec h3 span {
|
|
color: var(--orange);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.why_choose_other_sec .container {
|
|
gap: 40px;
|
|
}
|
|
|
|
.why_choose_other_sec .lighting_hand {
|
|
width: 50%;
|
|
text-align: right;
|
|
}
|
|
|
|
.why_choose_other_sec .lighting_hand img {
|
|
width: 80%;
|
|
}
|
|
|
|
|
|
.are_you_still_sec {
|
|
background-color: var(--light-black);
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.are_you_still_sec.are_you_dl_sec {
|
|
background-image: url(../images/dark_light_star.webp);
|
|
background-size: cover;
|
|
object-fit: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: bottom;
|
|
}
|
|
|
|
.are_you_still_sec.are_you_dl_sec .submit_btn a {
|
|
width: inherit;
|
|
}
|
|
|
|
.are_you_still_sec h2 {
|
|
color: var(--white);
|
|
line-height: normal;
|
|
}
|
|
|
|
.are_you_still_sec p {
|
|
color: var(--white);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.are_you_still_sec .submit_btn {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
|
|
.request_the_price_sec .radio_btn_side {
|
|
margin: 40px 0;
|
|
background: var(--white-light);
|
|
border-radius: 10px;
|
|
padding: 25px;
|
|
}
|
|
|
|
.request_the_price_sec .radio_btn_side ul {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 35px;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 80%;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main p {
|
|
font-size: 18px;
|
|
margin: 0;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main input {
|
|
width: 40px;
|
|
text-align: center;
|
|
border: 0;
|
|
background: var(--white-light);
|
|
padding: 5px;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main button {
|
|
width: 30px;
|
|
height: 30px;
|
|
background: #E7E7E7;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main button:hover i {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.top_navigate_bar {
|
|
background: rgba(0, 0, 0, 0.42);
|
|
backdrop-filter: blur(10px);
|
|
padding: 15px 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
top: calc(0% + 94px);
|
|
}
|
|
|
|
.top_navigate_bar ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.top_navigate_bar ul a {
|
|
color: var(--white);
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: normal;
|
|
}
|
|
|
|
.top_navigate_bar ul a:hover,
|
|
.top_navigate_bar ul a.active {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.top_navigate_bar.other_class {
|
|
position: fixed;
|
|
display: block;
|
|
animation: slideDown 0.8s ease-out;
|
|
-webkit-animation: slideDown 0.8s ease-out;
|
|
z-index: 9998;
|
|
}
|
|
|
|
.top_navigate_bar {
|
|
background: #323232cc;
|
|
backdrop-filter: blur(10px);
|
|
padding: 10px 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
top: calc(0% + 94px);
|
|
/* top: calc(0%); */
|
|
display: none;
|
|
}
|
|
|
|
|
|
.footer1.light_footer1 {
|
|
background: var(--white);
|
|
color: var(--black);
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.footer1.light_footer1 .foot1 {
|
|
padding: 0;
|
|
}
|
|
|
|
.footer1.light_footer1 .foot1 p {
|
|
color: var(--light-black);
|
|
}
|
|
|
|
.footer1.light_footer1 .foot1 a {
|
|
color: var(--orange);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer1.light_footer1 .foot1 a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footer1.light_footer1 .foot1 img {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.why_choose_other_sec.why_wdipl_section h2 {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.why_choose_other_sec.why_wdipl_section h2::after {
|
|
display: none;
|
|
}
|
|
|
|
|
|
|
|
.home-form {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.home-form .form-group {
|
|
position: relative;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.home-form .form-group input,
|
|
.home-form .form-group select,
|
|
.home-form .form-group textarea {
|
|
width: 100%;
|
|
outline: none;
|
|
background: none;
|
|
resize: none;
|
|
}
|
|
|
|
.home-form .form-group label {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 14px;
|
|
transform: translateY(-50%);
|
|
font-size: 16px;
|
|
color: #fff;
|
|
pointer-events: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.home-form .form-group input:focus+label,
|
|
.home-form .form-group input:not(:placeholder-shown)+label,
|
|
.home-form .form-group select:focus+label,
|
|
.home-form .form-group select:not([value=""])+label,
|
|
.home-form .form-group textarea:focus+label,
|
|
.home-form .form-group textarea:not(:placeholder-shown)+label {
|
|
top: -10px;
|
|
font-size: 16px;
|
|
color: #E5195E;
|
|
}
|
|
|
|
|
|
|
|
|
|
/* for all social containers*/
|
|
.socialContainer {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
transition-duration: 1s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
.socialContainer:hover .socialSvg {
|
|
animation: slide-in-top 0.3s both;
|
|
}
|
|
|
|
@keyframes slide-in-top {
|
|
0% {
|
|
transform: translateY(-50px);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.portfolio-item {
|
|
height: 300px;
|
|
position: relative;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
margin-bottom: 20px;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-image: url('http://media4.popsugar-assets.com/files/2014/08/08/878/n/1922507/caef16ec354ca23b_thumb_temp_cover_file32304521407524949.xxxlarge/i/Funny-Cat-GIFs.jpg');
|
|
}
|
|
|
|
|
|
|
|
/* for new footer start */
|
|
|
|
.foot2 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 40px;
|
|
}
|
|
|
|
.foot2 .col-one {
|
|
min-height: 190px;
|
|
}
|
|
|
|
.privacy-row {
|
|
display: grid;
|
|
font-size: 13px;
|
|
color: var(--extra-gray);
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.privacy-row p {
|
|
width: 100%;
|
|
font-weight: 400;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.privacy-row .social-btns {
|
|
gap: 15px;
|
|
}
|
|
|
|
.co-policy {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
color: var(--extra-gray);
|
|
width: 80%;
|
|
}
|
|
|
|
.co-policy a {
|
|
color: var(--extra-gray);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.privacy-row .rates h3 {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.privacy-row .rating span {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.privacy-row .fa {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.privacy-row .clutch img {
|
|
width: 42px;
|
|
height: 42px;
|
|
}
|
|
|
|
/* for new footer end */
|
|
|
|
|
|
|
|
/* mobile responsive start */
|
|
|
|
@media (max-width: 2560px) {
|
|
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: auto;
|
|
height: 150px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -300px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 1800px) {
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -200px;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
@media (max-width: 1680px) {
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -170px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1600px) {
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -110px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 1460px) {
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -55px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1426px) {
|
|
|
|
.header .nav_bar .drop_down>.nav_link {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1399px) {
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: 140px;
|
|
height: 140px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -110px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 1130px) {
|
|
.head_inner .nav_bar .drop_down.active>.nav_link+.dropdown_content {
|
|
position: inherit;
|
|
}
|
|
|
|
.header a.view_all {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.header .ham_burger,
|
|
.header .ham_cross {
|
|
display: block;
|
|
}
|
|
|
|
.header .ham_burger button {
|
|
border: 0;
|
|
background: var(--orange);
|
|
color: var(--white);
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
.header .ham_burger button i {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.header .overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: -100%;
|
|
background-color: #00130042;
|
|
z-index: 999;
|
|
display: block;
|
|
}
|
|
|
|
.header.active .overlay {
|
|
left: 0%;
|
|
}
|
|
|
|
.header .head_inner {
|
|
box-shadow: none;
|
|
backdrop-filter: inherit !important;
|
|
border-bottom: none;
|
|
}
|
|
.head_inner .nav_bar .drop_down.active>.nav_link+.dropdown_content {
|
|
transform: translateX(0px);
|
|
}
|
|
|
|
.header .head_inner .nav_bar {
|
|
position: fixed;
|
|
top: 0;
|
|
background: var(--white);
|
|
box-shadow: 0px 3px 12px 0px rgba(232, 21, 93, 0.10);
|
|
padding: 10px;
|
|
left: -100%;
|
|
width: 350px;
|
|
align-items: normal;
|
|
transition: all ease 0.2s;
|
|
z-index: 9999;
|
|
gap: 25px;
|
|
display: inline;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
-webkit-transition: all ease 0.2s;
|
|
-moz-transition: all ease 0.2s;
|
|
-ms-transition: all ease 0.2s;
|
|
-o-transition: all ease 0.2s;
|
|
}
|
|
|
|
.header.active .head_inner .nav_bar {
|
|
transition: all ease 0.2s;
|
|
left: 0;
|
|
-webkit-transition: all ease 0.2s;
|
|
-moz-transition: all ease 0.2s;
|
|
-ms-transition: all ease 0.2s;
|
|
-o-transition: all ease 0.2s;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.header .nav_cross {
|
|
color: var(--black);
|
|
text-align: right;
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.header .nav_cross i {
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
padding: 10px;
|
|
font-style: normal;
|
|
}
|
|
|
|
.header .nav_bar .drop_down>.nav_link {
|
|
padding: 5px 0;
|
|
color: var(--black);
|
|
}
|
|
|
|
.header .nav_bar ul {
|
|
gap: 20px;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.header .nav_bar ul li {
|
|
width: 100%;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us {
|
|
padding: 10px;
|
|
gap: 10px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us:hover {
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
.header .nav_bar .drop_down>.nav_link:hover:after {
|
|
width: 0;
|
|
}
|
|
|
|
.header .nav_bar .drop_down.active>.nav_link::after {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.grid_btns .nav-link.active {
|
|
background-color: var(--orange);
|
|
color: #fff;
|
|
border-radius: 2px;
|
|
padding: 6px 9px;
|
|
width: 100%;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.grid_btns {
|
|
padding: 6px 6px 6px 8px;
|
|
border-radius: 2px;
|
|
background: #1F1F1F;
|
|
}
|
|
|
|
.grid_btns .nav-link,
|
|
.grid_btns .nav-link:hover {
|
|
padding: 10px 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.nav_link svg path {
|
|
fill: #000;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 1280px) {
|
|
|
|
.footer_contact_us {
|
|
width: 85%;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -55px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1229px) {
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: -35px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1199px) {
|
|
|
|
.header .container {
|
|
max-width: 1100px;
|
|
}
|
|
|
|
.header .nav_bar ul {
|
|
gap: 16px;
|
|
}
|
|
|
|
.header .nav_bar .drop_down .nav_link.contact_us {
|
|
padding: 6px 10px;
|
|
gap: 8px;
|
|
}
|
|
|
|
|
|
.co-policy {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1081px) {
|
|
.why_wdipl_section .wdi_boxes {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
display: none;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text {
|
|
display: block;
|
|
}
|
|
|
|
.foot1 p br {
|
|
display: none;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box.icon_text .icon_inner .gray_para {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.why_wdipl_section h2 {
|
|
font-size: 35px;
|
|
}
|
|
|
|
.clutch img {
|
|
width: 35px;
|
|
height: 35px;
|
|
}
|
|
|
|
button.pdf.btn {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.request_the_price_sec .plus_minus_main {
|
|
width: 100%;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1025px) {
|
|
.why_wdipl_section .wdi_boxes {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.award_slider .slick-next,
|
|
.clients_slider .slick-next {
|
|
right: 0px;
|
|
}
|
|
|
|
|
|
|
|
.uncertain_section .container {
|
|
/* padding-top: 0;
|
|
padding-bottom: 0; */
|
|
box-shadow: inherit;
|
|
}
|
|
|
|
.uncertain_section p br {
|
|
display: none;
|
|
}
|
|
|
|
.uncertain_section img {
|
|
display: none;
|
|
}
|
|
|
|
.application_submission_sec .submiss_tabs .nav-tabs {
|
|
overflow-y: hidden;
|
|
overflow-x: auto;
|
|
flex-wrap: nowrap;
|
|
gap: 20px;
|
|
}
|
|
|
|
.application_submission_sec .nav-tabs .nav-link,
|
|
.application_submission_sec .nav-tabs .nav-link:hover {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media (max-width: 1067px) {
|
|
|
|
.header .nav_bar ul {
|
|
gap: 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
|
|
.privacy-row {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.black_heading {
|
|
font-size: 28px;
|
|
line-height: normal;
|
|
}
|
|
|
|
.develop_boxes .inner_box_1 {
|
|
grid-column: 1/6;
|
|
}
|
|
|
|
.develop_boxes .inner_box_2 {
|
|
grid-column: 6/12;
|
|
}
|
|
|
|
.develop_boxes .inner_box_3 {
|
|
grid-column: 1/6;
|
|
grid-row: 2/2;
|
|
}
|
|
|
|
.develop_boxes .inner_box_4 {
|
|
grid-column: 6/12;
|
|
grid-row: 2/3;
|
|
}
|
|
|
|
.develop_boxes .inner_box_5 {
|
|
grid-column: 6/1;
|
|
grid-row: 3/3;
|
|
}
|
|
|
|
.why_wdipl_section h2 {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.submit_btn a {
|
|
width: fit-content;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: 160px;
|
|
height: 140px;
|
|
}
|
|
|
|
|
|
.request_the_price_sec .inner_requst {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.request_the_price_sec .box {
|
|
width: 100%;
|
|
}
|
|
|
|
.footer_grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 40px;
|
|
}
|
|
|
|
.foot1 {
|
|
justify-content: inherit;
|
|
}
|
|
|
|
.foot1 p {
|
|
min-height: 45px;
|
|
}
|
|
|
|
.copyright,
|
|
.foot2.foot_cluch {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.foot2.text-align-center {
|
|
gap: 25px;
|
|
}
|
|
|
|
.footer2 {
|
|
padding: 45px 0;
|
|
}
|
|
|
|
br {
|
|
display: none;
|
|
}
|
|
|
|
.why_choose_other_sec h3 {
|
|
font-size: 28px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.develop_boxes .other_img::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.lets_talk a::before,
|
|
.lets_talk button::before {
|
|
width: 7px;
|
|
}
|
|
|
|
.lets_talk a span.one,
|
|
.lets_talk button span.one {
|
|
height: 7px;
|
|
}
|
|
|
|
.lets_talk a span.two,
|
|
.lets_talk button span.two {
|
|
height: 100%;
|
|
}
|
|
|
|
.lets_talk a::after,
|
|
.lets_talk button::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.are_you_still_sec h2 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.read_more {
|
|
font-size: 18px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
|
|
.develop_boxes {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
|
|
.develop_boxes .inner_box {
|
|
grid-column: inherit;
|
|
grid-row: inherit;
|
|
}
|
|
|
|
.why_wdipl_section .container {
|
|
gap: 20px;
|
|
}
|
|
|
|
.why_wdipl_section .why_inner,
|
|
.why_wdipl_section .wdi_boxes {
|
|
width: 100%;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
place-items: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.why_choose_other_sec .container {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.why_choose_other_sec .lighting_hand {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.why_choose_other_sec .lighting_hand img {
|
|
width: 50%;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
.request_the_price_sec .radio_btn_side ul {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
|
|
.lets_talk a,
|
|
.lets_talk button {
|
|
font-size: 15px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 481px) {
|
|
|
|
.social-icons {
|
|
justify-content: start;
|
|
gap: 30px;
|
|
}
|
|
.foot2 .col-one {
|
|
min-height: inherit;
|
|
}
|
|
|
|
.privacy-row {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
|
|
.header {
|
|
min-height: 75px;
|
|
}
|
|
|
|
.top_navigate_bar {
|
|
top: calc(0% + 75px);
|
|
}
|
|
|
|
.header .head_logo img {
|
|
width: 55px;
|
|
height: 55px;
|
|
}
|
|
|
|
.award_slider .slick-next,
|
|
.clients_slider .slick-next {
|
|
right: 45px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
padding: 25px;
|
|
}
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
width: 100%;
|
|
height: 175px;
|
|
}
|
|
|
|
|
|
.develop_boxes .inner_box.first_inner_box .gray_para {
|
|
width: 100%;
|
|
}
|
|
|
|
.footer_grid {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 30px;
|
|
}
|
|
|
|
.foot2 {
|
|
gap: 30px;
|
|
}
|
|
|
|
|
|
/* .clutch {
|
|
justify-content: center;
|
|
} */
|
|
|
|
.foot1 p {
|
|
min-height: inherit;
|
|
}
|
|
|
|
.foot1 ul {
|
|
margin: 0;
|
|
}
|
|
|
|
.footer2 {
|
|
padding: 35px 0;
|
|
}
|
|
|
|
.copyright {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.are_you_still_sec p {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.nav-tabs .nav-link:focus-visible {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.empowering_dark_sec .inn_box {
|
|
align-items: normal;
|
|
gap: 18px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.hire_resource_sec img {
|
|
width: 100%;
|
|
}
|
|
|
|
.copyright a {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 421px) {
|
|
|
|
.develop_boxes .inner_box img.mobile_app_img {
|
|
position: absolute;
|
|
width: 180px;
|
|
height: 195px;
|
|
}
|
|
|
|
.section {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.faqs_section {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
|
|
.why_wdipl_section .wdi_boxes .inner_small_box {
|
|
height: 150px;
|
|
}
|
|
|
|
|
|
.request_the_price_sec .plus_minus_main {
|
|
flex-direction: column;
|
|
align-items: normal;
|
|
gap: 10px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.top_navigate_bar ul {
|
|
gap: 25px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 376px) {
|
|
|
|
.why_wdipl_section .wdi_boxes {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
padding: 0px;
|
|
}
|
|
|
|
.contact_us_sec .call_us_main {
|
|
text-align: center;
|
|
gap: 40px;
|
|
margin: 40px 0;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.contact_us_sec .call_border {
|
|
border-right: none;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 361px) {
|
|
.header .head_inner .nav_bar {
|
|
width: 315px;
|
|
}
|
|
|
|
.request_the_price_sec .request_stepper p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 321px) {
|
|
.rc-anchor-normal-footer {
|
|
width: 40px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* mobile responsive end */ |