body {
font-family: 'Open Sans', sans-serif;
font-weight: normal;
font-style: normal;
}
.img {
max-width: 100%;
-webkit-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}
a:focus, input:focus, textarea:focus, button:focus {
text-decoration: none;
outline: none;
}
a:focus, a:hover {
text-decoration: none;
}
span, a {
display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
color: #181818;
margin-top: 0px;
font-style: normal;
font-weight: 400;
}
h1 {
font-size: 40px;
font-weight: 500;
}
h2 {
font-size: 36px;
}
h3 {
font-size: 28px;
}
h4 {
font-size: 22px;
}
h5 {
font-size: 18px;
}
h6 {
font-size: 16px;
}
ul {
margin: 0px;
padding: 0px;
list-style-type: none;
}
p {
font-size: 16px;
font-weight: normal;
line-height: 26px;
color: #6e6e6e;
margin-bottom: 0px;
}
.bg_cover {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
/*====== BUTTON CSS ======*/

.button {
border: 1px solid #fff;
background-color: transparent;
padding: 12px 30px;
display: inline-block;
color: #fff;
font-size: 16px;
text-transform: uppercase;
cursor: pointer;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
position: relative;
z-index: 5;
}
.button-bg {
border-color: #1e90ff;
position: relative;
z-index: 5;
}
.button-bg::before, .button::before {
content: '';
position: absolute;
width: 0%;
height: 100%;
top: 0;
left: 0;
background-color: #242424;
z-index: -1;
-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.button-bg::before {
background-color: #1e90ff;
width: 100%;
right: 0;
left: auto;
}
.button:hover {
color: #fff;
}
.button:hover::before {
width: 100%;
}
.button-bg:hover::before {
width: 0%;
}
/*====== ALL SECTION TITLE BUTTON ======*/

.section_title h2 {
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px;
}
.section_title p {
}
/*====== PREALODER ======*/

.preloader {
position: fixed;
background-color: #fff;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 999;
}
.graph {
width: 108px;
height: 50px;
position: relative;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.graph .layer {
position: absolute;
bottom: 0px;
width: 20px;
top: 45px;
}
.graph .layer-1 {
left: 0px;
top: 30px;
-webkit-animation: graph1 1s infinite;
animation: graph1 1s infinite;
}
.graph .layer-2 {
left: 22px;
top: 10px;
-webkit-animation: graph2 1s infinite;
animation: graph2 1s infinite;
}
.graph .layer-3 {
left: 44px;
top: 20px;
-webkit-animation: graph3 1s infinite;
animation: graph3 1s infinite;
}
.graph .layer-4 {
left: 66px;
top: 30px;
-webkit-animation: graph4 1s infinite;
animation: graph4 1s infinite;
}
.graph .layer-5 {
left: 88px;
-webkit-animation: graph5 1s infinite;
animation: graph5 1s infinite;
}
@-webkit-keyframes graph1 {
20% {
top:0px;
}
80% {
top:30px;
}
}
@keyframes graph1 {
20% {
top:0px;
}
80% {
top:30px;
}
}
@-webkit-keyframes graph2 {
30% {
top:0px;
}
80% {
top:10px;
}
}
@keyframes graph2 {
30% {
top:0px;
}
80% {
top:10px;
}
}
@-webkit-keyframes graph3 {
40% {
top:0px;
}
80% {
top:20px;
}
}
@keyframes graph3 {
40% {
top:0px;
}
80% {
top:20px;
}
}
@-webkit-keyframes graph4 {
50% {
top:0px;
}
80% {
top:30px;
}
}
@keyframes graph4 {
50% {
top:0px;
}
80% {
top:30px;
}
}
@-webkit-keyframes graph5 {
60% {
top:0px;
}
80% {
top:45px;
}
}
@keyframes graph5 {
60% {
top:0px;
}
80% {
top:45px;
}
}
.color-1 {
background-color: #1f8fff;
}
.color-2 {
background-color: #242424;
}
/*===========================
2.NAVBAR css 
===========================*/
.navbar .navbar-nav li:last-child {
background-color: #fff;
padding: 4px 6px;
border-radius: 4px;
margin-top: -4px;
}
.navbar .navbar-nav li:last-child a {
color: #242424
}
.navbar {
background-color: transparent /*rgba(13, 13, 13, 0.5)*/;
position: absolute;
left: 0;
transition: 0.2s ease-out;
-webkit-transition: 0.2s ease-out;
right: 0;
top: 0;
width: 100%;
z-index: 5;
}
.navbar-nav li {
margin-left: 25px;
}
.navbar-nav li a {
padding-bottom: 5px;
color: #fff;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
position: relative;
}
.navbar-nav li a::before {
position: absolute;
content: '';
width: 0%;
height: 2px;
background-color: #fff;
left: 0;
bottom: 0;
-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.navbar-nav li a.active, .navbar-nav li:hover a {
color: #fff;
}
.navbar-nav li a.active::before, .navbar-nav li:hover a::before {
width: 100%;
}
.navbar.sticky {
transition: 0.5s ease-out;
-webkit-transition: 0.5s ease-out;
position: fixed;
padding: 0px 14px !important;
top: 0;
left: 0;
right: 0;
width: 100%;
background-color: rgba(36, 36, 36, 0.88);
z-index: 99;
}
.navbar .navbar-toggler {
padding: 2px 7px;
border: 1px solid #fff;
}
.navbar .navbar-toggler .icon-bar {
display: block;
width: 30px;
height: 2px;
background-color: #fff;
margin: 6px 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
position: relative;
}
.navbar .navbar-toggler.active .icon-bar:nth-child(1) {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
top: 8px;
}
.navbar .navbar-toggler.active .icon-bar:nth-child(2) {
opacity: 0;
}
.navbar .navbar-toggler.active .icon-bar:nth-child(3) {
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
top: -8px;
}
/*===========================
3.SLIDER PART css 
===========================*/

.slider_part {
overflow: hidden;
}
.slider_part .singel_slider {
width: 100%;
height: 650px;
}
.slider_part .singel_slider .caption {
z-index: 5;
position: relative;
padding: 20px 0;
}
.slider_part .singel_slider .caption h4, .banner .caption h4 {
color: #fff;
font-weight: 700;
font-size: 24px;
text-transform: uppercase;}
.slider_part .singel_slider .caption h2, .banner .caption h2 {
color: #fff;
font-size: 48px;
font-weight: 700;
}
.slider_part .singel_slider .caption p {
color: #fff;
}
.slider_part .singel_slider .caption ul li {
display: inline-block;
margin: 0 10px;
}
.slider_part .singel_slider .caption ul li a {
}
.slider_part .slick-dots {
bottom: 15px;
}
.slider_part .slick-dots li {
position: relative;
display: inline-block;
width: 10px;
height: 10px;
border-radius: 30px;
margin: 0 5px;
padding: 0;
cursor: pointer;
background: #ddd;
}
.slider_part .slick-dots li.slick-active {
background-color: transparent;
border: 1px solid #ddd;
}
.slider_part.slick-dotted.slick-slider {
margin-bottom: 0;
}
/*===========================
  4.ABOUT css 
===========================*/

.about_text span {
font-size: 18px;
color: #1f8ffd;
text-transform: uppercase;
margin-bottom: 15px;
}
.about_text h3 {
font-weight: 600;
margin-bottom: 15px;
}
.about_text .nav.nav-tabs {
border: 0;
}
.about_text .nav.nav-tabs li {
margin-right: 20px;
}
.about_text .nav.nav-tabs li a {
font-size: 16px;
font-weight: 700;
font-family: 'Montserrat', sans-serif;
color: #aeaeae;
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
position: relative;
}
.about_text .nav.nav-tabs li a::before {
content: '';
position: absolute;
width: 0%;
height: 1px;
background-color: #006ed9;
bottom: 0;
left: 0;
-webkit-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}
.about_text .nav.nav-tabs li a.active, .about_text .nav.nav-tabs li:hover a {
color: #181818;
}
.about_text .nav.nav-tabs li a.active::before, .about_text .nav.nav-tabs li a:hover::before {
width: 100%;
}
.tab-pane p {
margin-top: 20px;
}
.about_video {
position: relative;
}
.about_video img {
width: 100%;
}
.video_icon {
position: absolute;
left: 50%;
top: 58%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 5;
}
.video_icon a {
position: relative;
}
.about_video a::after, .about_video a::before {
content: '';
position: absolute;
width: 50px;
height: 50px;
line-height: 50px;
background: #3fa0ff;
border-radius: 50%;
z-index: -1;
top: 0;
left: 0;
}
.about_video a::after {
width: 60px;
height: 60px;
background: #1e90ff;
left: -5px;
top: -5px;
opacity: 0.6;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
opacity: 0;
}
}
.video_icon a i {
font-size: 22px;
color: #fff;
text-align: center;
z-index: 6;
line-height: 50px;
width: 50px;
height: 50px;
}
/*===========================
5.SERVICES css 
===========================*/
.mob-service .singel_services {
min-height: 410px;/*-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: ease-in-out 0.3s;
*/
}
.mob-ind .singel_services {
/*-webkit-filter: grayscale(100%);
filter: grayscale(100%);*/
transition: ease-in-out 0.3s;
border: 0px;
min-height: 220px;
}
.services_content h4 {
font-weight: 500;
margin-bottom: 10px;
}
.mob-ind .Industries .singel_services {
min-height: 260px;
}
.mob-ind a {
display: block
}
.mob-ind .services_icon img {
width: 70px;
}
.mob-ind .Industries .services_icon img {
width: 60px;
margin-top: 16px;
}
.mob-ind .singel_services .services_content h4 {
font-size: 18px;
color: #505050;
}
.mob-ind .singel_services:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
.mob-service .singel_services:hover {
-webkit-filter: grayscale(100%);
filter: grayscale(0);
transition: ease-in-out 0.3s;
}
.singel_services {
min-height: 320px;
border: 1px solid #242424;
border-radius: 5px;
padding: 20px 15px;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.services_icon {
padding-bottom: 15px;
}
.services_icon img {
width: 100px;
padding-bottom: 20px;
}
.services_content {
}
.services_content h4 {
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
}
.services_content .btn-hover {
width: 180px;
}
.singel_services:hover {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.35);
box-shadow: 0px 5px 15px 0px rgba(247, 135, 69, 0.48);
}
.become.hire .singel_services:hover {
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
transform: translateY(0px);
}
/*===========================
6.BECOME css 
===========================*/

.become {
background-attachment: fixed;
}
.become_contant {
position: relative;
z-index: 5;
}
.become_contant h5 {
color: #1d91ff;
font-size: 18px;
text-transform: uppercase;
font-weight: 700;
}
.become_contant h2 {
color: #fff;
font-weight: 700;
margin-bottom: 30px;
font-size: 32px;
}
/*===========================
7.OUR TEAM css 
===========================*/

.team_slide {
text-align: center;
}
.singel_team {
width: 95%;
background-color: #f1f1f1;
-webkit-transition: all 0.4s linear;
transition: all 0.4s linear;
display: inline-block;
}
.singel_team:hover {
-webkit-box-shadow: 0px 3px 30px -5px rgba(0,0,0,0.25);
box-shadow: 0px 3px 30px -5px rgba(0,0,0,0.25);
}
.singel_team .team_img {
overflow: hidden;
}
.singel_team .team_img img {
width: 100%;
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.singel_team:hover .team_img img {
-webkit-transform: scale(1.1);
transform: scale(1.1)
}
.singel_team .team_content {
padding: 20px;
}
.singel_team .team_content span {
font-size: 14px;
color: #006ed9;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 3px;
margin-bottom: 10px;
}
.singel_team .team_content h4 {
font-weight: 700;
margin-bottom: 0px;
}
.singel_team .team_content p {
margin-bottom: 20px;
}
.singel_team .team_content ul li {
display: inline-block;
margin: 0 3px;
}
.singel_team .team_content ul li a {
font-size: 14px;
color: #9b9faa;
width: 40px;
height: 40px;
line-height: 40px;
background-color: #fff;
border-radius: 50%;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.singel_team .team_content ul li:hover a {
color: #fff;
background-color: #006ed9;
-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
}
.team_slide .slick-arrow {
position: absolute;
left: -30px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 24px;
width: 40px;
height: 40px;
line-height: 35px;
text-align: center;
border-radius: 50%;
border: 1px solid #006ed9;
color: #006ed9;
cursor: pointer;
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
z-index: 5;
}
.team_slide .fa-angle-right.slick-arrow {
left: auto;
right: -30px;
}
.team_slide .slick-arrow:hover {
color: #fff;
background-color: #006ed9;
border-color: #006ed9;
}
/*===========================
8.PRICE TABLE css 
===========================*/

.singel_price {
border: 1px solid #dddddd;
padding: 0px 0px 30px 0px;
border-radius: 10px;
-webkit-transition: all 0.4s linear;
transition: all 0.4s linear;
overflow: hidden;
}
.singel_price.active, .singel_price:hover {
-webkit-box-shadow: 0px 3px 30px -5px rgba(0,0,0,0.45);
box-shadow: 0px 3px 30px -5px rgba(0,0,0,0.45);
}
.singel_price h5 {
font-size: 22px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px;
background: #242424;
color: #ffffff;
padding: 20px 10px;
}
.singel_price h2 {
font-size: 58px;
font-weight: 700;
position: relative;
display: inline-block;
}
.singel_price h2 sup {
font-size: 20px;
position: absolute;
top: 20px;
left: -14px;
color: #818284;
}
.singel_price h2 span {
font-size: 18px;
font-weight: 400;
text-transform: uppercase;
}
.singel_price ul li {
font-size: 16px;
color: #6e6e6e;
line-height: 50px;
border-bottom: 1px solid #dddddd;
}
.singel_price ul li:last-child {
border-bottom: 0;
}
.singel_price a:hover {
color: #fff;
}
/*===========================
9.CLIENT css 
===========================*/
/*.singel-client.white-bg {
background: rgba(255, 255, 255, 0.88);
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
margin: 10px;
    height: 180px;
}
.singel-client {
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 25px;
border-radius: 5px;
}
.singel-client .client-img {
width: 100px;
background: #ccc;
height: 100px;
border-radius: 50px;
overflow: hidden;
-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
}
.singel-client .client-img img {
width: 100%;
float: left;
}
.singel-client .client-cont {
width: 80%;
padding-left: 20px;
}
.singel-client .client-cont p {
padding-bottom: 20px;
}
.singel-client .client-cont h4 {
color: #f78745 !important;
font-size: 14px;
}*/

.singel-client.white-bg {
background: rgba(255, 255, 255, 0);
/*box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);*/
margin: 8px; 
    height: 100px;
}
.singel-client {
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 0px;
border-radius: 3px;
}
.singel-client .client-img {
width: 250px;
background: #fff;
height: auto;
border-radius: 10px;
overflow: hidden;
-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
}
.singel-client .client-img img {
width: 100%;
float: left;
}
.singel-client .client-cont {
width: 80%;
padding-left: 20px;
}
.singel-client .client-cont p {
padding-bottom: 20px;
}
.singel-client .client-cont h4 {
color: #f78745 !important;
font-size: 14px;
}
/*===========================
10.PROJECT css 
===========================*/

.project_menu ul li {
display: inline-block;
margin: 0 10px;
font-size: 16px;
color: #353535;
font-weight: 500;
cursor: pointer;
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
position: relative;
}
.project_menu ul li::before {
content: '';
position: absolute;
left: -13px;
top: 4px;
width: 1px;
height: 16px;
background-color: #353535;
-webkit-transform: rotate(20deg);
transform: rotate(20deg);
}
.project_menu ul li:first-child::before {
display: none;
}
.project_menu ul li.active, .project_menu ul li:hover {
color: #1e90ff;
}
.project .singel_items {
position: relative;
}
.project .singel_items .items_img {
position: relative;
overflow: hidden;
}
.project .singel_items .items_img::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(30, 144, 255, 0.7);
opacity: 0;
-webkit-transition: all 0.4s linear;
transition: all 0.4s linear;
}
.project .singel_items:hover .items_img::before {
opacity: 1;
}
.project .singel_items .items_img img {
width: 100%;
}
.project .singel_items .items_cont {
position: absolute;
bottom: 0;
left: 0;
overflow: hidden;
padding-left: 25px;
padding-bottom: 25px;
}
.project .singel_items .items_cont h3 {
font-size: 24px;
color: #fff;
font-weight: 700;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: all 0.4s linear;
transition: all 0.4s linear;
opacity: 0;
}
.project .singel_items .items_cont a {
font-size: 16px;
color: #fff;
text-transform: uppercase;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;
opacity: 0;
}
.project .singel_items .items_cont a i {
margin-left: 8px;
}
.project .singel_items:hover .items_cont, .project .singel_items:hover .items_cont h3, .project .singel_items:hover .items_cont a {
-webkit-transform: translateX(0%);
transform: translateX(0%);
opacity: 1;
}
/*===========================
11.BLOG css 
===========================*/

.singel_blog .blog_img {
overflow: hidden;
position: relative;
}
.singel_blog .blog_img img {
width: 100%;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.singel_blog .blog_img a {
font-size: 13px;
position: absolute;
bottom: 12px;
left: 15px;
background-color: #1e90ff;
color: #fff;
padding: 5px 8px;
}
.singel_blog .blog_img a i {
padding-right: 5px;
}
.singel_blog:hover .blog_img img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.singel_blog .blog_content {
padding: 16px;
-webkit-box-shadow: 0px 5px 24px 0px rgba(0,0,0,0.15);
box-shadow: 0px 5px 24px 0px rgba(0,0,0,0.15);
}
.singel_blog .blog_content h4 {
font-size: 18px;
font-weight: 700;
margin-bottom: 15px;
}
.singel_blog .blog_content p {
padding-bottom: 15px;
border-bottom: 1px solid rgba(153, 153, 153, 0.6);
}
.singel_blog .blog_content ul li {
display: inline-block;
margin-right: 16px;
margin-top: 7px;
position: relative;
}
.singel_blog .blog_content ul li:last-child {
margin-right: 0;
}
.singel_blog .blog_content ul li::before {
content: '';
position: absolute;
width: 1px;
height: 15px;
background-color: #999;
left: -10px;
top: 5px;
}
.singel_blog .blog_content ul li:first-child::before {
display: none;
}
.singel_blog .blog_content ul li a {
font-size: 13px;
color: #999;
}
.singel_blog .blog_content ul li a i {
margin-right: 7px;
}
/*===========================
12.BRAND css 
===========================*/

.brand {
background-color: #f1f1f1;
}
.brand .singel_brand {
padding: 0 15px;
}
.brand .singel_brand img {
width: 100%;
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
transition: ease-in-out 0.3s;
cursor: pointer;
}
.brand .singel_brand img:hover {
-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
filter: grayscale(0%);
transition: ease-in-out 0.3s;
}
/*===========================
13.CONTACT css 
===========================*/

.contact_form textarea, .contact_form input {
width: 100%;
border: 1px solid #ddd;
margin-bottom: 16px;
padding: 15px;
font-size: 14px;
}
.contact_form textarea {
height: 160px;
resize: inherit;
}
p.form-message.success, p.form-message.error {
font-size: 16px;
color: #353535;
background: #ddd;
padding: 10px 15px;
margin-left: 15px;
margin-bottom: 10px;
}
/*===========================
14.FOOTER css 
===========================*/

.title h4 {
font-size: 22px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
}
.footer .info p {
margin-bottom: 20px;
color: #a9a9a9;
}
.footer .info ul li {
display: inline-block;
margin-right: 5px;
}
.footer .info ul li a {
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
background-color: #333333;
font-size: 14px;
color: #fff;
text-align: center;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.footer .info ul li:hover a {
background-color: #f88741;
color: #ffffff;
}
.footer .footer-widget-list ul li a {
line-height: 40px;
font-size: 14px;
color: #a9a9a9;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.footer .footer-widget-list ul li a i {
margin-right: 8px;
}
.footer .footer-widget-list ul li a:hover {
color: #f78745;
}
.footer .last-post ul li a {
display: -moz-inline-flex;
display: -ms-inline-flex;
display: -o-inline-flex;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
margin-bottom: 20px;
}
.footer .last-post ul li:last-child a {
margin-bottom: 0;
}
.footer .last-post ul li a .thum {
width: 70px;
height: 60px;
}
.footer .last-post ul li a .thum img {
width: 100%;
}
.footer .last-post ul li a .cont {
}
.footer .last-post ul li a .cont h6 {
font-size: 13px;
color: #fff;
margin-bottom: 5px;
}
.footer .last-post ul li a .cont p {
color: #a9a9a9;
}
.footer .address > p {
margin-bottom: 30px;
}
.footer .address ul li {
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 20px;
}
.footer .address ul li:last-child {
margin-bottom: 0;
}
.footer .address ul li .icon i {
margin-right: 20px;
margin-top: 5px;
}
.footer .address ul li .icon i, .footer .address ul li .cont span {
color: #9a9a9a;
font-size: 14px;
display: block;
}
/*====== 15.COPYRIGHT css ======*/

.copyright {
background-color: #333;
position: relative;
}
.DADEVAL {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
}
.copyright small {
color: #9a9a9a;
}
.copyright p span {
text-transform: uppercase;
color: #1e90ff;
font-weight: 700;
font-family: 'Montserrat', sans-serif;
}
/*====== BACK TO TOP ======*/
.back-to-top {
position: fixed;
right: 30px;
bottom: 30px;
width: 40px;
height: 40px;
line-height: 40px;
font-size: 26px;
color: #fff;
background-color: #f78745;
text-align: center;
border-radius: 50%;
box-shadow: 0px 1px 4px #fff;
z-index: 9;
display: none;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 0.3s;
}
.back-to-top:hover {
background-color: #333;
color: #fff;
transition: ease-in-out 1s;
-webkit-transition: ease-in-out 0.3s;
}
.navbar-brand img {
width: 260px;
padding: 6px 10px;
background: #fff;
}
.navbar-brand {
padding: 0px;
border-radius: 50px;
overflow: hidden;
margin: 10px 0px;
}
/*progress*/
.progress {
width: 150px;
height: 150px;
line-height: 150px;
background: none;
margin: 0 auto;
box-shadow: none;
position: relative;
}
.progress:after {
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
border: 10px solid rgba(255, 255, 255, 0.57);
position: absolute;
top: 0;
left: 0;
}
.progress > span {
width: 50%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
z-index: 1;
}
.progress .progress-left {
left: 0;
}
.progress .progress-bar.red {
border-color: #ff5252;
}
.progress .progress-bar.green {
border-color: #b2ff59;
}
.progress .progress-bar.blue {
border-color: #448aff;
}
.progress .progress-bar {
width: 100%;
height: 100%;
background: none;
border-width: 10px;
border-style: solid;
position: absolute;
top: 0;
border-color: #ffb43e;
}
.progress .progress-left .progress-bar {
left: 100%;
border-top-right-radius: 75px;
border-bottom-right-radius: 75px;
border-left: 0;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.progress .progress-right {
right: 0;
}
.progress .progress-right .progress-bar {
left: -100%;
border-top-left-radius: 75px;
border-bottom-left-radius: 75px;
border-right: 0;
-webkit-transform-origin: center right;
transform-origin: center right;
}
.progress .progress-value {
display: flex;
border-radius: 50%;
font-size: 36px;
text-align: center;
line-height: 20px;
align-items: center;
justify-content: center;
width: 100%;
color: #fff;
height: 100%;
font-weight: 700;
z-index: 1;
}
.progress .progress-value div {
margin-top: 10px;
}
.progress .progress-value span {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 10px;
}
/* This for loop creates the 	necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress[data-percentage="10"] .progress-right .progress-bar {
animation: loading-1 1.5s linear forwards;
}
.progress[data-percentage="10"] .progress-left .progress-bar {
animation: 0;
}
.progress[data-percentage="20"] .progress-right .progress-bar {
animation: loading-2 1.5s linear forwards;
}
.progress[data-percentage="20"] .progress-left .progress-bar {
animation: 0;
}
.progress[data-percentage="30"] .progress-right .progress-bar {
animation: loading-3 1.5s linear forwards;
}
.progress[data-percentage="30"] .progress-left .progress-bar {
animation: 0;
}
.progress[data-percentage="40"] .progress-right .progress-bar {
animation: loading-4 1.5s linear forwards;
}
.progress[data-percentage="40"] .progress-left .progress-bar {
animation: 0;
}
.progress[data-percentage="50"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="50"] .progress-left .progress-bar {
animation: 0;
}
.progress[data-percentage="60"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="60"] .progress-left .progress-bar {
animation: loading-1 1.5s linear forwards 1.5s;
}
.progress[data-percentage="70"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="70"] .progress-left .progress-bar {
animation: loading-2 1.5s linear forwards 1.5s;
}
.progress[data-percentage="80"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="80"] .progress-left .progress-bar {
animation: loading-3 1.5s linear forwards 1.5s;
}
.progress[data-percentage="90"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="90"] .progress-left .progress-bar {
animation: loading-4 1.5s linear forwards 1.5s;
}
.progress[data-percentage="100"] .progress-right .progress-bar {
animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="100"] .progress-left .progress-bar {
animation: loading-5 1.5s linear forwards 1.5s;
}
@keyframes loading-1 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(36);
transform: rotate(36deg);
}
}
@keyframes loading-2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(72);
transform: rotate(72deg);
}
}
@keyframes loading-3 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(108);
transform: rotate(108deg);
}
}
@keyframes loading-4 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(144);
transform: rotate(144deg);
}
}
@keyframes loading-5 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(180);
transform: rotate(180deg);
}
}
.progress {
margin-bottom: 1em;
}
.txtwhite h1, .txtwhite h2, .txtwhite h3, .txtwhite h4, .txtwhite h5, .txtwhite h6, .txtwhite p {
color: #fff !important;
}
/*3dslider*/
.carousel-3d-container figure {
margin: 0;
}
.carousel-3d-container figcaption {
position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    bottom: 0;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    min-width: 100%;
    box-sizing: border-box;}
.carousel-3d-slide {
border: none !important;
border-radius: 10px !important;
}
.Consultancy {
background: #242424;
}
.Consultancy .section_title h2, .Consultancy .section_title p {
color: #fff !important;
line-height: 50px;
}
.btn-white {
background: #fff !important;
-webkit-box-shadow: 0px 6px 30px 0px rgba(255, 255, 255, 0.5);
box-shadow: 0px 6px 30px 0px rgba(255, 255, 255, 0.5);
color: #242424 !important;
}
.btn {
border: 1px solid #fff;
background-color: transparent;
color: #fff;
border-radius: 50px;
padding: 12px 30px;
display: inline-block;
font-size: 16px;
cursor: pointer;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
position: relative;
z-index: 5;
}
.Consultancy input {
background: transparent;
color: #fff;
border-radius: 2px;
height: 50px;
}
input, select {
border-radius: 2px !important;
height: 50px !important;
}
/*button gradient*/
.btn-hover {
width: 200px;
line-height: 50px;
font-size: 16px;
font-weight: 600;
color: #fff;
cursor: pointer;
height: 55px;
text-align: center;
border: none;
background-size: 300% 100%;
border-radius: 50px;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:hover {
background-position: 100% 0;
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:focus {
outline: none;
}
.btn-hover.color-1 {
background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-2 {
background-image: linear-gradient(to right, #f5ce62, #e43603, #f5ce62, #e43603);
box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.btn-hover.color-3 {
background-image: linear-gradient(to right, #1cb5e0, #0a437f, #1cb5e0, #0a437f);
box-shadow: 0 4px 15px 0 rgba(25, 162, 208, 0.51);
}
.btn-hover.color-4 {
background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-5 {
background-image: linear-gradient(to right, #7fc029, #3e8e33, #7fc029, #3e8e33);
box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.btn-hover.color-6 {
background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn-hover.color-7 {
background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.btn-hover.color-8 {
background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.btn-hover.color-9 {
background-image: linear-gradient(to right, #DA3A5F, #972781, #DA3A5F, #972781);
box-shadow: 0 4px 15px 0 rgba(170, 44, 119, 0.39);
}
.btn-hover.color-10 {
background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a, #FBB03B);
box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-11 {
background-image: linear-gradient(to right, #432274, #93548d, #432274, #93548d);
box-shadow: 0 5px 15px rgba(108, 60, 129, 0.38);
}
.btn-hover.color-12 {
background-image: linear-gradient(to right, #fff, #ffffff, #f3f3f3, #fff);
box-shadow: 0 3px 15px rgba(255, 255, 255, .4);
color: #242424;
}
.btn-hover.color-13 {
background-image: linear-gradient(to right, #232323, #3e3e3e, #494c4e, #3e3e3e);
box-shadow: 0 4px 15px 0 rgba(29, 29, 29, 0.50);
}
.client {
background-image: url(../img/about/1.png);
background-attachment: fixed;
position: relative;
background-size: cover;
}
.client:before {
content: '';
background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.6));
-webkit-background-image: linear-gradient(to bottom right, #00000073, #2d2d2d87);
position: absolute;
top: 0;
width: 100%;
height: 100%;
}
.banner.about {
background-image: url(../img/about/page-ecommerce.jpg);
background-size: contain;
    background-color: #1e6082;
}
.banner.mobile {
background: url(../img/about/3.png);
background-size: cover;
background-attachment: fixed;
}
.banner.fullstack {
background: url(../img/about/FSD.png);
background-size: cover;
background-attachment: fixed
}
.banner {
background-attachment: fixed;
height: 500px;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.banner .caption {
position: absolute;
/* bottom: 0; */
left: 5%;
top: 45%;
color: #fff;
transform: translatey(-50%);
}
.banner:before {
content: '';
background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
-webkit-background-image: linear-gradient(to bottom right, #00000073, #2d2d2d87);
position: absolute;
left: 0;
width: 100%;
height: 100%;
}
.platform-list {
float: left;
margin: 20px 0;
width: 100%;
}
.platform-list li {
float: left;
margin: 0 1%;
width: 18%;
}
.third-level-page-offering-grid ul {
margin: 0px;
text-align: center;
}
.third-level-page-offering-grid ul li {
list-style: none;
padding: 0px;
position: relative;
display: inline-block;
vertical-align: top;
margin: 13px 11px 0 0px;
}
.inner-wrap ul li {
font-size: 14px;
margin: 15px 0;
padding-left: 10px;
text-align: left;
}
.third-level-page-offering-grid .third-level-page-offering-grid-detail {
transition: all 0.3s ease-in-out 0s;
}
.third-level-page-offering-grid .third-level-page-offering-grid-detail {
width: 222px;
background-color: rgba(10, 13, 15, 0.79);
font-size: 16px;
border-radius: 14px;
color: #ffffff;
font-family: open sans;
font-weight: 700;
padding: 20px 13px;
text-align: center;
min-height: 90px;
min-height: 109px;
vertical-align: middle;
display: table-cell;
height: 108px;
border: 2px solid #fff;
}
.consult {
background: #ffffff;
position: relative;
border: 1px solid #ddd;
box-shadow: 0px 2px 10px 1px #ddd;
border-radius: 4px;
}
.consult:before {
    content: '';
    position: absolute;
    left: -155px;
    top: 0px;
    height: 100%;
    width: 224px;
    background-image: url(../img/girl.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.platform-opt .services_icon {
}
ul.listing {
width: 100%;
}
.listing li {
padding: 10px 0px 10px 30px;
position: relative;
left: 0;
top: 0;
text-align: justify;
}
.listing li:before {
content: '';
background-image: url(../img/work/bullet.svg);
background-size: cover;
position: absolute;
color: #000;
height: 20px;
width: 20px;
left: 0px;
border-radius: 50%;
background-color: #ddd;
top: 50%;
transform: translatey(-50%);
}
/*Tabs*/
.tabs {
max-width: 90%;
float: none;
list-style: none;
padding: 0;
margin: 75px auto;
z-index: 1;
}
.tabs:after {
content: '';
display: table;
clear: both;
}
.tabs input[type=radio] {
display: none;
}
.tabs label {
	    min-height: 100px;
display: block;
float: left;
width: 20%;
color: #fff;
font-size: 30px;
font-weight: normal;
text-decoration: none;
text-align: center;
line-height: 2;
cursor: pointer;
box-shadow: inset 0 4px #fff;
border-bottom: 4px solid #fff;
-webkit-transition: all 0.5s; /* Safari 3.1 to 6.0 */
transition: all 0.5s;
}
.tabs label span {
display: none;
}
.tabs label i {
padding: 5px;
margin-right: 0;
display: block;
}
.tabs label:hover {
color: #fff;
box-shadow: inset 0 4px #f78745;
border-bottom: 4px solid #f78745;
}
.tab-content {
display: none;
width: 100%;
float: left;
padding: 15px;
box-sizing: border-box;
}
.tabs label span {
font-size: 14px;
display: block;
}
.tab-content * {
-webkit-animation: scale 0.7s ease-in-out;
-moz-animation: scale 0.7s ease-in-out;
animation: scale 0.7s ease-in-out;
}
@keyframes scale {
0% {
transform: scale(0.9);
opacity: 0;
}
50% {
transform: scale(1.01);
opacity: 0.5;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.tabs [id^="tab"]:checked + label {
box-shadow: inset 0 4px #f78745;
border-bottom: 4px solid #f78745;
color: #f78745;
}
#tab1:checked ~ #tab-content1, #tab2:checked ~ #tab-content2, #tab3:checked ~ #tab-content3, #tab4:checked ~ #tab-content4, #tab5:checked ~ #tab-content5 {
display: block;
}

@media (min-width: 768px) {
.tabs i {
padding: 5px;
margin-right: 10px;
}
.tabs label span {
display: inline-block;
}
.tabs {
width: 100%;
margin: 50px auto;
z-index: 1;
}
}
.tab-content .icon-sec {
background: #fff;
border-radius: 22px;
padding: 22px;
margin: 10px;
}
.hire .singel_services {
background-color: #fff
}
.sublist {
float: left;
width: 100%;
color: #f68647;
}
.sublist li {
list-style: none;
list-style-position: inside;
text-align: center;
}
.Industries .singel_services .services_icon {
background: #f78745;
box-shadow: 0px 3px 10px -1px #f78745;
width: 90px;
height: 90px;
position: absolute;
border-radius: 50%;
top: -40px;
left: 50%;
transform: translatex(-50%);
}
.Industries .singel_services {
position: relative;
border: 1px solid #f78745;
}
.bg-flame {
background-image: url(../img/b2.svg);
background-repeat: no-repeat;
background-position: right;
background-size: contain;
background-attachment: fixed;
}
.rightimg:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
background-image: url(../img/ui.png);
background-repeat: no-repeat;
height: 90%;
width: 600px;
}
.rightimg {
position: relative
}
.collapsbtn {
padding: 10px 14px;
background: #fbfbfb;
cursor: pointer;
}
.card-body {
font-size: 14px;
color: #6e6e6e;
}
.collapsbtn .fa {
color: #ccc
}
.qasec {
position: relative
}
.qasec:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
background-position: right 60px;
background-image: url(../img/qa.png);
background-size: contain;
background-repeat: no-repeat;
height: 100%;
width: 368px;
}
.hiring.bg-flame {
background-image: url(../img/b2.svg);
}
.hiring .platform-opt {
float: left;
margin: 0 1%;
width: 30%;
}
.services .singel_services{
    min-height: 380px;
	height: 455px;
}

/*  */

.sub-menu-parent {
  position: relative;
}
.sub-menu {
 visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
     transform: translate(-50%,18%);
   z-index: -1;
   border-radius:2px;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.sub-menu-parent:focus .sub-menu,
.sub-menu-parent:focus-within .sub-menu,
.sub-menu-parent:hover .sub-menu {
     visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translate(-50%,5%);
    transition-delay:  0.3s;
}
/* presentational */
nav ul,
nav ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav > ul {
  background: #EEE;
  text-align: center;
}
nav > ul > li {
  display: inline-block;
  border-left: solid 1px #aaa;
}
nav > ul > li:first-child {
  border-left: none;
}
.sub-menu {
  background: #fff;
    box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.55);
}
ul.sub-menu li a{   width: 220px;
    text-align: center;
    padding: 10px;}
	ul.sub-menu li{margin:10px 0px 10px 0px;}
	ul.sub-menu li a::before{content:none}
	
ul.sub-menu li a{    color: #000 !important;}
.services  .services_content p {
    max-height: 210px;
    overflow: hidden;
    min-height: 210px;
}
.banner.ERP{background: url(../img/about/2.png);
    background-size: cover;
    background-attachment: fixed;}
#ERPcarousel .carousel-inner{
	height: 500px;}
.ERP-nav .tab-content{display:block}
.ERP-nav .nav-pills .nav-link.active,.ERP-nav .nav-pills .show>.nav-link{color: #fff;
        background-image: linear-gradient(to right, #f5ce62, #e43603);
    box-shadow: 0px 2px 4px #ffb285;background-color: #e43603;}
.ERP-nav .nav-pills a.nav-link{color: #f78745;}	
#ERPcarousel .carousel-inner::before {
    background: rgba(0, 0, 0, 0.38) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
#ERPcarousel .carousel-control-prev, #ERPcarousel .carousel-control-next{z-index:1;}
.RequestDemo {
background-image: url(../img/b1.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.ERP-service .singel_services{    min-height: 380px;}
#ERPcarousel .carousel-inner .btn-hover{    position: absolute;
    z-index: 1;
    bottom: 60px;
    right: 10%;}
/*
 *  STYLE 2
 */

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
	background-image: linear-gradient(to top, #f5ce62, #e43603);
	-webkit-background-image: linear-gradient(to top, #f5ce62, #e43603);
	-moz-background-image: linear-gradient(to top, #f5ce62, #e43603);
	-ms-background-image: linear-gradient(to top, #f5ce62, #e43603);
	-o-background-image: linear-gradient(to top, #f5ce62, #e43603);
}
