﻿@charset "UTF-8";

/* CSS Document */
body{font-family: 'Raleway', sans-serif; overflow-x: hidden;}

/* NAVBAR */
/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 10px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out; 
}
.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 10px 0;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
  width:70px;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navigation-wrap{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.menu-bar .navbar{
  padding: 0;
}
.start-header .nav-item{ padding-left:20px; padding-right:20px; }
.menu-bar .navbar-brand img{
  width: 110px;
  height: auto;
  display: block;
  
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.menu-bar .navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.menu-bar .navbar-toggler:active,
.menu-bar .navbar-toggler:focus {
  outline: none;
}
.menu-bar .navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.menu-bar .navbar-light .navbar-toggler-icon:after, 
.menu-bar .navbar-light .navbar-toggler-icon:before{
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
    transition: all 300ms linear;
}
.menu-bar .navbar-light .navbar-toggler-icon:after{
  top: 8px;
}
.menu-bar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.menu-bar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.menu-bar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}
.menu-bar .nav-link{
  color: #747474 !important;
  font-weight: 500;
    transition: all 200ms linear;
}
.menu-bar .nav-item:hover .nav-link{
  color: #3ec1d5 !important;
}
.menu-bar .nav-item.active .nav-link{
  color: #000 !important;
}
.menu-bar.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}
.menu-bar .nav-item:after{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #3ec1d5;
  opacity: 0;
    transition: all 200ms linear;
}
.menu-bar .nav-item:hover:after{
  bottom: 0;
  opacity: 1;
}
.menu-bar .nav-item.active:hover:after{
  opacity: 0;
}
.menu-bar .nav-item{
  position: relative;
    transition: all 200ms linear;
}
.menu-bar .log-reg .btn-primary {
  color: #fff;
  background-color: #51ca24;
  border-color: #51ca24;
}
.log-reg .btn-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}


/* #Primary style
================================================== */


.menu-bar .nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.menu-bar .nav-item .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.menu-bar .dropdown-menu {
  padding: 10px!important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.menu-bar .dropdown-toggle::after {
  display: none;
}

.menu-bar .dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
    transition: all 200ms linear;
}
.menu-bar .dropdown-item:hover, 
.dropdown-item:focus {
  color: #fff;
  background-color: #3ec1d5;
}



/* #Media
================================================== */

@media (max-width: 767px) { 

  .menu-bar .nav-item:after{
    display: none;
  }

  .menu-bar .dropdown-toggle[aria-expanded="true"]::after{
    transform: rotate(90deg);
    opacity: 0;
  }
  .menu-bar .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .menu-bar .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  body.dark .nav-item::before {
    background-color: #fff;
  }
  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }
  body.dark .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
  .menu-bar .nav-item:hover .nav-link {
  color: #fff !important;
  background-color: #3ec1d5;
  padding-left: 20px;
  border-radius: 5px;
}
}

/* #Link to page
================================================== */

.logo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: block;
  z-index: 100;
  transition: all 250ms linear;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(10%);
  transition: all 250ms linear;
}

/* NAVBAR END */



/* SECOND HEADER START */
.second-header { background-color:#151414; margin-top: 72px; }
.drop-btn .nav-item{ float:left; list-style:none;  }
.drop-btn .nav-item a{ color:#fff;}
.dropdown-menu a{ color:#000 !important; }
.dropdown-item:focus,
.dropdown-item:hover{ background-color:#3ec1d5; color:#fff !important; }
.care-number {
  padding-top: 6px;
}
.care-number .btn { padding:3px 20px; font-size:14px; }
.care-number .btn-outline-light:hover {
  color: #fff;
  background-color: #51ca24;
  border-color: #51ca24;
}
.nav-searchbx{ padding-top:5px; float:right; margin-right: 15px; }
.nav-searchbx .form-control {
  display: block;
  padding: 0px 14px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 200px;
  height: 30px;
}
.nav-searchbx a {
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center; text-decoration: none;
}
/* SECOND HEADER END */


/* BANNER */
.banner a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.banner a:hover {
  color: #3EC1D5;
  text-decoration: none;
}

.banner a:active, a:hover {
  outline: 0 none;
}





@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #3EC1D5;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #3cd6ed;
  color: #fff;
}

.clear {
  clear: both;
}
@media (min-width: 1920px) {
  .work-right-text {
    padding: 150px 150px;
  }
}





/* BANNER END */


/* ABOUT */
.bg-primary {
  background-color:#3BB3C6 !important;
}
.about-us{  padding-bottom:60px; }
.about-us h3{ font-family: 'Oswald', sans-serif; font-size:26px; font-weight:600;  color:#000;}
.about-us p{ font-family: 'Montserrat', sans-serif; font-size:16px;  color:#000; text-align: justify; padding-top: 15px;}
.about-us h6{ font-family: 'Oswald', sans-serif; font-size:20px; color:#3bb3c6; }
.about-us h4{ font-size:40px; color:#fff; font-weight:bold; }
.about-us h1{ font-weight:700; color:#fff; font-size:40px; }
.about-us i{ font-size:60px; color:#000; padding-bottom:25px; }
/* ABOUT END */
/* TEAM */
.team-izado { background-color: #ebebeb; padding: 30px; border-radius: 10px; margin-bottom: 60px; padding-left: 100px; padding-right: 100px;}
.team-izado h3{ font-family: 'Oswald', sans-serif; font-size:26px; font-weight:600;  color:#000;}
.team-izado span{  color:#3ec1d5;}
.team-izado p{ font-family: 'Montserrat', sans-serif; font-size:16px;  color:#000; text-align: justify; padding-top: 15px;}
/* TEAM END */

/* We Offer Start */
.we-ofr-section{ padding-top:60px; padding-bottom:60px; }
.we-offer h3{ font-family: 'Oswald', sans-serif;
font-size: 26px;
font-weight: 600;
color: #000;
text-align: center;
}

.we-offer span{ color: #3ec1d5; }
.we-offer a{ text-decoration:none; }
.serviceBox{ margin-top: 20px;
    color: #666;
    font-family: 'Raleway', sans-serif;
    text-align: center; padding-top: 30px;  border:2px solid #fff;
}
.serviceBox:hover{ box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;}

.serviceBox .title{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 30px;
}
.serviceBox .service-icon {
  height: 100px;
  width: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #3ec1d5;

}
.serviceBox .service-icon img{ width:48px; }
.serviceBox .description{
    color: #777;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0 10px;
}
@media only screen and (max-width: 990px){
    .serviceBox{ margin: 0 0 30px; }
}
/* WIZWATCH */
.content-section .container-fluid{ padding:0px; }
/* WIZWATCH END */

/* WE SPECIALISE IN */



.section-black {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.section-black {
  padding: 120px 0;
  color: #fff;
}
.black-container{ position:relative; }
.section-black:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}
.section-black h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  padding-bottom: 30px;
}
.section-black span {
  color: #3ec1d5;
}
.section-black .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.section-black .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("img/about-bg.png") top left;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
.section-black .about-img {
    margin: 30px 0 0 30px;
  }

.section-black .about-img:before {
    inset: -30px 0 0 -30px;
  }
}



@media (max-width: 768px) {
.section-black h3 {
    font-size: 28px;
  }
}

.section-black .nav-pills {
  border-bottom: 1px solid #fff; font-family: 'Oswald', sans-serif;
}

.section-black .nav-pills li+li {
  margin-left: 40px;
}

.section-black .nav-link {
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 12px 0;
    padding-right: 0px;
    padding-left: 0px;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
  padding-left: 20px;
  padding-right: 20px;
}

.section-black .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}

@media (max-width: 575px) {
.section-black .nav-link {
    font-size: 16px;
  }
}

.section-black .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.section-black .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: #fff;
}

.section-black .nav-link.active {
  color: #3ec1d5;
  background: #fff;
  border-bottom: 3px solid #3ec1d5;
  padding-left: 20px;
  padding-right: 20px;
}
.ul-point li{ list-style:none;  }
.ul-point i{ padding-right:20px !important;  }






/* WE SPECIALISE IN END */
/* SERVICES */
.service-section { padding-top:70px; padding-bottom:70px; }
.section-header { padding-bottom:20px; }
.section-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.section-header span {
  color: #3ec1d5;
}
/* SERVICES END */



/* WE SUPPORT */
.we-support{ background: linear-gradient(90deg, rgba(67,196,184,1) 0%, rgba(99,240,122,1) 100%); padding-top:40px; padding-bottom:60px;  }
.we-support h3{  font-family: 'Oswald', sans-serif; font-size:26px; font-weight:600;  color:#000; text-align: center; padding-top: 60px; padding-bottom: 30px; }
.we-support span{ color: #fff;  }
.support-section { display:flex; justify-content:center; }
.support-box{ background-color:#e1e1e1; width:100px; height:100px; border:5px solid #fff; border-radius: 10px; display:flex; justify-content:center; align-items:center; }
.support-box img{ width:80px; }
.we-support-container h5{ color:#fff;  font-weight: 500; text-align: center; padding-top: 25px; font-size: 16px;}
.pattern-bg.right-pos {
  left: inherit;
  right: 10px;
}
/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* WE SUPPORT END */


/* SCHNEIDER SECTION */
.schneider-section { min-height:400px; display:flex; justify-content:center; align-items:center; }
.schneider-container .col-lg-5 { padding:0px; }
.schneider-container .col-lg-3 { padding:0px; }
.schneider-container .col-lg-4 { padding:0px; }
.schneider-text{ background-color:#6aa666; padding-top:40px; padding-bottom:40px; width:100%;  }
.schneider-text h4{ font-size:22px; font-weight: 700; color:#fff; padding-left:30px;  }
.schneider-text p{ padding-left:30px; padding-right:30px; color:#fff; }
.free-bg{ width:100%; height:400px; background-color:#000; display:flex; align-items:center;  }
.schnelder-logo-section{ min-height:400px; display:flex; align-items:center;  }
.schnelder-l-container { background-color:#e8e8e8; }
.schnelder-l-container img{ border:10px solid #6aa666; width:420px; margin-left: -130px; }
.green-box{ min-height:253px; width:203px; background-color:#6aa666; }

/* SCHNEIDER END */


/* Clients Section
--------------------------------*/
.clients-bg h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding-bottom: 30px;
} 
.clients-bg span{ color: #3ec1d5; }
#clients {
  padding: 60px 0;

}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

.clients-bg .col-lg-3{ padding:0px; }

/* FOOTER START */
.footer-section ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #86c840;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #c1c1c1;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
 
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #86c840;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #86c840;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize; text-decoration: none;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #86c840;
    padding: 13px 20px;
    border: 1px solid #86c840;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #86c840;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #86c840;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787; text-decoration: none;
}
/* FOOTER END */

/* Contact */



.contact {
    padding: 130px 0;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}
.contact-container{}
.contact .heading h2 span {
    color: #3ec1d5;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f6f6f6;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #51ca24;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
    text-align: center;
    width: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}
/* Resume Submission Form */

.resume-form h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;  font-family: 'Oswald', sans-serif;
}
.resume-form h2 span {
  color: #3ec1d5;
}
.resume-form p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}
.job-contact{ padding-top:0px }
.bd-example::after {
  display: block;
  clear: both;
  content: "";
}
.bd-example > :last-child {
  margin-bottom: 0;
}
.job-contact .form-select {
  display: block;
  width: 100%;
  color: #212529;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.job-contact select {
  word-wrap: normal;
}
.job-contact button, select {
  text-transform: none;
}
.job-contact button, input, optgroup, select, textarea {
  margin: 0;
    margin-bottom: 0px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.job-contact *, ::after, ::before {
  box-sizing: border-box;
}

.job-contact .form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.job-contact .form-control[type="file"] {
  overflow: hidden;
}


/* About Page */
header.masthead {
  position: relative;
  margin-bottom: 3rem;
  padding-top: calc(8rem + 57px);
  padding-bottom: 8rem;
  background: no-repeat center center;
    background-color: rgba(0, 0, 0, 0);
    background-attachment: scroll;
    background-image: none;
    background-size: auto;
  background-color: #6c757d;
  background-size: cover;
  background-attachment: scroll;
}
header.masthead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #212529;
  opacity: 0.5;
}
  @media (min-width: 992px)
header.masthead {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}
  @media (min-width: 992px)
.px-lg-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.position-relative {
  position: relative !important;
}
  @media (min-width: 1400px)
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  max-width: 1320px;
}
  @media (min-width: 1200px)
.container-xl, .container-lg, .container-md, .container-sm, .container {
  max-width: 1140px;
}
  @media (min-width: 992px)
.container-lg, .container-md, .container-sm, .container {
  max-width: 960px;
}
  @media (min-width: 768px)
.container-md, .container-sm, .container {
  max-width: 720px;
}
  @media (min-width: 576px)
.container-sm, .container {
  max-width: 540px;
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.justify-content-center {
  justify-content: center !important;
}
  @media (min-width: 992px)
.g-lg-5, .gx-lg-5 {
  --bs-gutter-x: 3rem;
}
header.masthead .page-heading, header.masthead .site-heading {
  text-align: center;
}
header.masthead .page-heading, header.masthead .post-heading, header.masthead .site-heading {
  color: #fff;
}
  @media (min-width: 992px)
header.masthead .page-heading h1, header.masthead .page-heading .h1, header.masthead .site-heading h1, header.masthead .site-heading .h1 {
  font-size: 5rem;
}
header.masthead .page-heading h1, header.masthead .page-heading .h1, header.masthead .site-heading h1, header.masthead .site-heading .h1 {
  font-size: 6rem; font-family: 'Oswald', sans-serif; font-weight: 600;
}
header.masthead .page-heading .subheading, header.masthead .site-heading .subheading {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
  display: block;
  margin-top: 0.625rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .page-heading, header.masthead .site-heading {
  text-align: center;
}
header.masthead .page-heading, header.masthead .post-heading, header.masthead .site-heading {
  color: #fff;
}

.about-wiz-logo img{ width:250px; padding:20px; border-radius:15px; margin:auto; border-radius: 15px;}

.about-us-page {
  width: 100%;
  background-color: #ebebeb;
  background-image: url("images/izado.png");
  background-size: inherit;
  padding-top: 70px;
  padding-bottom: 70px;
  border-radius: 10px;
  margin-bottom: 60px;
  padding-left: 100px;
  padding-right: 100px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.about-us-page h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000; text-align: center;
}
.about-us-page p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
  text-align: justify;
  padding-top: 15px;
}
.about-us-page span {
  color: #0aa100;
}
.vision-mission{}
.visn-msn {
  border-radius: 10px;
  background-color: #0ca302;
  width: 100%;
  padding: 20px;
  min-height: 210px;
}
.visn-msn h4{  font-family: 'Oswald', sans-serif;
  font-size: 20px; color:#fff; font-weight:600; text-align: justify;  }
.visn-msn span{ color:#000; }
.visn-msn p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: justify;

}
.ic-box{ display:flex; justify-content:center; align-items:center; border-radius: 10px; background-color:#000; color:#fff; width:70px; height:70px; font-size:30px; }
.about-logos img{ width:60%; }
.sc-biz-logo{ margin-top: 60px; margin-bottom: 60px; display: flex; justify-content:center; align-items: center;}
.our-team-section{ padding-bottom:70px; }

.our-team-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000; 
}
.our-team-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
  text-align: justify;
  padding-top: 15px;
}
.our-team-section span {
  color: #3ec1d5;
}
.team-img img{ width:80%; }
.team-text-sc{ display:flex; align-items:center; }
.team-img-mob{ display:none; }
.team-img-mob img{ width:80%; }


.list-container{ padding-top:100px; padding-bottom:60px; }
.list-container .col-lg-8 { margin:auto; }
.list-container h5{ font-family: 'Oswald', sans-serif; font-size:26px; font-weight:800; padding-bottom:30px;  }
.list-box{ background-color:#ebebeb; border-radius: 10px; padding:30px; }
.list-box li{ list-style:none; line-height:40px; font-size:16px; }
.list-box i{ color:#3ec1d5; font-size:20px; padding-right: 10px; }
.content-section{  }
.portfolio-item {
  display: block;
  position: relative;
  overflow: hidden;
  max-width: 530px;
  margin: auto auto 1rem;
}
.portfolio-item .caption {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.portfolio-item .caption .caption-content {
  color: #fff;
  margin: auto 2rem 2rem;
}
.portfolio-item .caption .caption-content h2, .portfolio-item .caption .caption-content .h2 {
  font-size: 46px;
  text-transform: uppercase; font-family: 'Oswald', sans-serif;
}
.portfolio-item .caption .caption-content p {
  font-weight: 300;
  font-size: 14px; margin-bottom: 7px;
}

.caption-content i{ font-size:14px; padding-right:10px;  }
.caption-content h5{ font-size:16px; font-weight:600; font-family: 'Oswald', sans-serif; padding-bottom:10px;  }
.readmore { margin-top:25px; }
.readmore .btn{ color:#fff; font-size:18px; padding:0px; font-weight:bold;  font-family: 'Oswald', sans-serif; }
.readmore i{ color:#fff; margin-left:10px; font-size:20px; }
.wizwactch-form{  }
.wiz-product { padding-top:70px; padding-bottom:100px; }
.black-box{ background-color: #000; border: 1px solid #000; padding: 25px; color:#fff; border-radius: 30px; min-height: 380px; margin-bottom:20px; }
.black-box:hover{ background-color: #fff; border: 1px solid #e2e2e2; padding: 25px; color:#000; border-radius: 30px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
.ic-black {
  background-color: #f4f4f4;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ic-black img{ width:30px; }
.black-box h4{ font-size:20px; font-weight:600; font-family: 'Oswald', sans-serif; padding-bottom:10px; padding-top:15px;  }
.black-box p{ font-size:16px; margin-bottom:0px;  }
.black-row{ margin-top:30px; }

.wizwatch-box h4{ color:#3a3a3a; font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 500; padding-top: 18px;}

.wizwatch-box {}


/* Wizenergy Page */
.wiz-banner header.masthead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0;
}

.wiznergy-logo img{ width:100%; }
.wiznergy-logo{ margin-bottom:70px; }
.wiz-logo-section{ background-image: url("images/power.jpg"); background-size:cover; width:100%; padding-top:90px; padding-bottom:90px; }
.wiz-banner .masthead{ margin-bottom: 0rem; }
.parallax {
  height: 100%; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}
.capsuil{ background-color:#efefef; border-left:10px solid #4eba46; display: flex; height: 120px; margin: auto; justify-content: center; align-items: center; width: 80%; border-top-right-radius: 30px; border-bottom-right-radius: 30px;}

.capsuil i{ color:#a1a1a1; font-size:40px; margin-right:8%; }
.capsuil h3{ font-size:26px; color:#000; font-family: 'Oswald', sans-serif; margin-bottom:0px;  }
.energy-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0; font-family: 'Oswald', sans-serif;
  padding: 0; padding-bottom: 40px;
}
.energy-head p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}
.energy-head h2 span {
  color: #3ec1d5;
}
.benifit-section{ padding-top:100px; padding-bottom:100px; }
.first-round { background-color:#fff; width:125px; height:125px; border-radius:50%; border:4px solid #0da203; display:flex; justify-content:center; align-items:center; margin: auto; }
.second-round{ background-color:#efefef; width:105px; height: 105px; border-radius:50%; display:flex; justify-content:center; align-items:center; }
.second-round img{ width:60px; }
.benifit-box{ margin-top:40px; }
.benifit-box h4{ font-family: 'Raleway', sans-serif; font-size:20px; color:#000; font-weight:bold; padding-top:25px; padding-bottom:10px; }
.benifit-box p{ font-family: 'Raleway', sans-serif; font-size:14px; color:#999999; }
.benifit-box a{ color:#3ec1d5; font-size:18px; font-weight:600; padding-top:15px; text-decoration:none;  }
.benifit-box a:hover{ color:#000; text-decoration:none;  }

.tree-section{ padding-bottom:100px; }
.main-box-section{ display:flex; align-items:center; height: 100%; }
.main-box{ background-color:#f4f4f4; border-radius:20px; width:100%; padding:20px; }
.main-box img{ border-radius:10px; }
.main-box-text{  }
.main-box-text h2{ 
  font-size: 30px; font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin: 0; margin-bottom: 20px;
  padding: 0; }
.main-box-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  text-align: justify;
  padding: 0;
}

.main-box-text h2 span {
  color: #3ec1d5;
}


.main-box-right{  }
.main-box-right h2{ 
  font-size: 30px; font-family: 'Oswald', sans-serif;
  font-weight: 700; text-align: right;
  margin: 0; margin-bottom: 20px;
  padding: 0; }
.main-box-right p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  text-align: justify; text-align: right;
  padding: 0;
}

.main-box-right h2 span {
  color: #3ec1d5;
}
.main-box-text img{ width:20px; margin-right:10px; }


.main-margin{ margin-top:60px; }
.demo{ width:100%; height:300px; background-image: url("images/demo.jpg"); background-size:cover; display:flex; align-items:center; }
.demo-txt-btn { }
.demo-txt-btn .btn{ padding: 15px 80px; font-weight:700; font-family: 'Oswald', sans-serif;  font-size:28px; }
.demo-txt-btn .btn-secondary {
  color: #fff;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}
.demo-txt-btn .btn-secondary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.overlay {
  background: rgb(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;

}
.demo-txt-btn p{ color:#fff; padding-top: 20px; padding-left: 100px; padding-right: 100px;}



/* Why we are the right fit for you */
.why-we-section{ padding-bottom:100px; padding-top:100px; }
 .why-sc { width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-sc-txt h2{ font-size:50px; text-transform: uppercase; font-family: 'Oswald', sans-serif; font-weight:600; }
.why-sc-txt  h2 span {
  color: #3ec1d5;
}
.why-sc-txt p{ font-size:18px;  color: #999999; }
.why-box-sc {
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3ec1d5;
}
.why-box {  padding: 30px;
}
.why-box img{ width:60px; padding-bottom:20px; }
.why-box h3{ color:#fff; font-size:22px; font-family: 'Oswald', sans-serif; font-weight:400; text-align:center; }


.demo-form .form-control {
  padding: 14px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f6f6f6;
  border: 1px solid #e3e3e3;
  border-radius: 7px;
}
.demo-form  .form-select {
  display: block;
  width: 100%;
  color: #212529;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.demo-submit .btn {
  padding: 8px 40px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;

}


.demo-submit .btn-primary {
  color: #fff;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}

.demo-txt-btn .btn-primary:hover{
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.demo-txt-btn .btn-primary {
  color: #fff;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}

.demo-submit .btn-primary:hover{
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.demo .modal-header h5{ color:#000; font-family: 'Oswald', sans-serif;  }



@media (min-width: 992px) {
  .portfolio-item {
    max-width: none;
    margin: 0;
  }
  .portfolio-item .caption {
    transition: background-color 0.7s, -webkit-clip-path 0.25s ease-out;
    transition: clip-path 0.25s ease-out, background-color 0.7s;
    transition: clip-path 0.25s ease-out, background-color 0.7s, -webkit-clip-path 0.25s ease-out;
    -webkit-clip-path: inset(0px);
            clip-path: inset(0px);
  }
.portfolio-item .caption .caption-content {
  transition: opacity 0.25s;
  margin-left: 3.8rem;
  margin-right: 2.5rem;
  margin-top: 2.8rem;
}
  .portfolio-item img {
    transition: -webkit-clip-path 0.25s ease-out;
    transition: clip-path 0.25s ease-out;
    transition: clip-path 0.25s ease-out, -webkit-clip-path 0.25s ease-out;
    -webkit-clip-path: inset(-1px);
            clip-path: inset(-1px);
  }
  .portfolio-item:hover img {
    -webkit-clip-path: inset(1rem);
            clip-path: inset(1rem);
  }
  .portfolio-item:hover .caption {
    background-color: rgba(29, 128, 159, 0.9);
    -webkit-clip-path: inset(1rem);
            clip-path: inset(1rem);
  }
}


.wiznergy-form{ background: linear-gradient(90deg, rgba(67,196,184,1) 0%, rgba(99,240,122,1) 100%); padding-top:100px; }


.wiznergy-form h2 {
  font-size: 30px; font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin: 0; color: #fff; text-align: center;
  padding: 0;  padding-bottom: 40px;
}
.wiznergy-form span{ color:#000; }
.wiznergy-form .col-md-8{ margin:auto; }

.wizenrgy-btn button{ margin:auto; }

.contact button.btn {
  padding: 8px 50px;
  border-radius: 10px;
  font-size: 15px;
  background: #000;
  color: #ffffff; font-family: 'Oswald', sans-serif; float: right;
}



/* WIZ-CONVERTER */
.banner-background{ height:100vh; display:flex; align-items:center; }
.about-wiz-c {
  width: 100%;
  background-color: #f8f8f8;
  background-image: url("images/izado.png");
  background-size: inherit;
  padding-top: 70px;
  padding-bottom: 70px;
  border-radius: 10px;
  margin-bottom: 60px;
  padding-left: 100px;
  padding-right: 100px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.about-wiz-c {  }
.about-wiz-c img{ width:70%; }
.about-wiz-c p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
  text-align: justify;
 
}
.logos{  }
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.section-bg {
  background-color: #f4f9fc;
}
.counts {
  padding-bottom: 60px; padding-top: 60px; margin-top: 60px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
  display: flex;
  align-items: center;
}

.counts .count-box i {
  display: block;
  font-size: 32px;
  color: #3ec1d5;
  float: left;
  line-height: inherit;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2f4d5a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 0px 0 0 0;
  margin: 0 0 0 0px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #49788c;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;

  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}




/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients-c .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients-c .swiper-slide img:hover {
  opacity: 1;
}

.clients-c .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients-c .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.clients-c .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}
.clients .swiper-pagination {
  position: inherit;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.clients .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 100%;
}



.section-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center;
}


.section-head span {
  color: #3ec1d5;
}
.section-head p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 20px;
  padding: 0;
}


/* About Section - Home Page
------------------------------*/
.wiz-four-txt{
  background-image: url("images/protocol-bg.jpg"); background-size:cover; width:100%; padding-top: 70px; padding-bottom: 70px;
}



.wiz-four-txt .content h2 {
  font-weight: 600;   font-family: 'Oswald', sans-serif; color: #fff;
}






.wiz-four-txt .icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.wiz-four-txt .icon-box:hover {

  background-color: #000; color: #fff;
}

.wiz-four-txt .icon-box p {
  margin-bottom: 0; text-align: justify;  font-family: 'Oswald', sans-serif;
}


.wiz-four-txt .icon-boxes .col-md-6:nth-child(2) .icon-box,
.wiz-four-txt .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .wiz-four-txt .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .wiz-four-txt .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

.wiz-c-benifit{ padding-top:80px; padding-bottom:80px; }




/* WIZ REPORT PAGE
------------------------------*/
.banner-wiz-report { height: 600px;
  display: flex;
  align-items: center; }

.report-tree-section h3{  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: left; }


.report-tree-section p{ font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
  text-align: justify;
  padding-top: 15px; }

.report-tree-section span{ color: #3ec1d5; }
.screenshot-img { padding-top:40px; padding-bottom:40px;  }
.screenshot-img img{ width:75%;  }
.scrsht-txt { display:flex; align-items:center;  }
.scrnsht-bx-1 h3{ text-align:right; }
.scrnsht-bx-1 p{ text-align:right; }
.benifit-p p{ font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #999999; padding-top:40px; text-align:center; }

/* Software development page
------------------------------*/
.we-provide{ padding-top:80px; padding-bottom:80px; }
.we-provide h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center; padding-bottom: 60px;
}

.we-provide span {
  color: #3ec1d5;
}
.we-provide-box{ display:flex; align-items:center; margin-bottom: 50px; }
.we-provide-box img{ width:80px; }
.we-provide-box h4{ padding-left:30px; font-weight:700; font-family: 'Montserrat', sans-serif; font-size:18px; }
.row-margin{ margin-top:70px; }
.elivate { padding-top:70px; padding-bottom:70px; background-color: #f8f8f8; }
.elivate h4{ font-size:26px; font-weight:700; color:#000; font-family: 'Montserrat', sans-serif; padding-bottom: 20px;}
.elivate p{ font-size:16px; color:#000; font-family: 'Montserrat', sans-serif;}

.elivate img{ width: 75%; }
.elivate-box-1 { display:flex; align-items:center; }
.web-inte-section{ padding-top:80px; padding-bottom:80px; background-color:#000; }
.web-integration {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem; padding: 30px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; min-height: 420px;
}
.icon-1 {
  width: 125px;
  height: 125px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-1 svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.icon-1 .svg {
  height: 60px;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.icon-1 svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.icon-1 svg path {
  -webkit-transition: fill 1s ease;
  transition: fill 1s ease;
}


.icon-1:hover .sh-type-1 path, .hover-1:hover .sh-icon-bg path {
  fill: #3ec1d5;
}
.web-integration img{ width:50%; position:absolute; }
.web-integration h4{ font-weight:500; font-size: 22px; font-family: 'Oswald', sans-serif; color:#000; }
.web-integration p{  font-family: 'Montserrat', sans-serif; color:#999999; padding-top:10px; }
.web-integration h6{ margin-bottom:0px;  font-family: 'Montserrat', sans-serif; font-weight:600; }
.software-why{ padding-top: 70px; padding-bottom: 70px;}
.soft-why-choose{ text-align:center; margin-top:30px; }
.soft-why-choose h4{ font-weight:500; font-size: 22px; font-family: 'Oswald', sans-serif; color:#000; padding-top:15px; }
.soft-why-choose p{  font-family: 'Montserrat', sans-serif; color:#999999; padding-top:10px; }
.soft-why-choose img{ width:80px;  }


.software-why h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center; padding-bottom: 30px;
}

.software-why span {
  color: #3ec1d5;
}

.our-works { padding-bottom:70px; }
.work-box{ padding:25px; margin-top: 30px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  color:#fff; background-color: #3ec1d5; }
.work-box:hover {
background-color:#000; color:#fff; }

.our-works h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center; padding-bottom: 30px;
}

.our-works span {
  color: #3ec1d5;
}
.work-box h4{ font-size:20px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.work-box-2 { min-height:300px; position: relative; }



.btn-readmore {
  display: flex;
  justify-content: center;
  bottom: 20px !important;
  position: absolute; font-family: 'Montserrat', sans-serif;

}
.btn-readmore button { background-color:#fff; color:#000; border:none; font-weight:500; padding: 3px 10px;
  border-radius: 2px;  }

.btn-readmore button:hover { background-color:#3ec1d5;; color:#fff; border:none; font-weight:500;  }


.wiz-txt-s{ display:flex; justify-content:center; }
.wiz-watch-section{ padding-top:70px; }
.wiz-watch-section img{ width:100%; }
.wiz-text-box{ }
.wiz-text-box h3{ font-family: 'Oswald', sans-serif; font-size: 26px; font-weight:600; color:#000;  }
.wiz-text-box h6{ font-family: 'Montserrat', sans-serif; font-size:18px; font-weight:600; color:#000; }
.wiz-text-box p{ font-family: 'Montserrat', sans-serif; color:#999999;  }


.wiz-text-box .btn-primary {
  color: #fff;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}
.wiz-text-box .btn-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}








/* BMS page
------------------------------*/
.all-p { padding-left:100px; padding-right:100px; }
.all-p p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin: 20px 0 60px;
  padding: 0; padding-top: 50px; font-weight: bold; font-family: 'Montserrat', sans-serif;
}
.constructions { padding-bottom:100px; }
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);  font-family: 'Oswald', sans-serif;
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}
.constructions .card-item .card-bg-h { min-height: 350px; }
.page-heading h6{ font-size:18px; font-weight:600; font-family: 'Montserrat', sans-serif; padding-top:20px; }


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.our-projects .img {
  border-radius: 8px;
  overflow: hidden;
}

.our-projects .img img {
  transition: 0.6s;
}

.our-projects .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  position: relative;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  opacity: 0.9;
}

.our-projects .details .icon {
  margin: 0;
    margin-bottom: 0px;
  margin-bottom: 0px;
  width: 72px;
  height: 72px;
  background: #0ca202;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
font-size: 17px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid #fff;
}

.our-projects .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.our-projects .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: #0ca202;
}

.our-projects .service-item:hover .details .icon {
  background: #fff;
  border: 2px solid #0ca202;
}

.our-projects .service-item:hover .details .icon i {
  color: #0ca202;
}

.our-projects .service-item:hover .img img {
  transform: scale(1.2);
}
.our-projects .details a{ font-size:20px; font-family: 'Oswald', sans-serif; color:#000; text-decoration:none; }

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values{ padding-top:60px; }
.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Wizwatch page
--------------------------------------------------------------*/

.hero-section {
  background: linear-gradient(to right, rgba(53, 219, 110, 0.8) 0%, rgba(117, 255, 165, 0.8) 100%), url(images/hero-bg.jpg);
  position: relative;
}

.hero-section .wave {
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: -150px;
}

@media screen and (max-width: 992px) {
  .hero-section .wave {
    bottom: -180px;
  }
}

.hero-section .wave svg {
  width: 100%;
}

.hero-section,
.hero-section>.container>.row {
  height: 100vh;
  min-height: 880px;
}

.hero-section.inner-page {
  height: 60vh;
  min-height: 0;
}

.hero-section.inner-page .hero-text {
  transform: translateY(-150px);
  margin-top: -120px;
}

@media screen and (max-width: 992px) {
  .hero-section.inner-page .hero-text {
    margin-top: -80px;
  }
}



@media screen and (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
  }
}

@media screen and (max-width: 992px) {
  .hero-section .hero-text-image {
    margin-top: 4rem;
  }
}

.hero-section p {
  font-size: 18px;
  color: #fff;
}

.hero-section .iphone-wrap {
  position: relative;
}

@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap {
    text-align: center;
  }
}

.hero-section .iphone-wrap .phone-2,
.hero-section .iphone-wrap .phone-1 {
  position: absolute;
  top: -100%;
  overflow: hidden;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

@media screen and (max-width: 992px) {

  .hero-section .iphone-wrap .phone-2,
  .hero-section .iphone-wrap .phone-1 {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}

.hero-section .iphone-wrap .phone-2,
.hero-section .iphone-wrap .phone-1 {
  width: 250px;
}

@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap .phone-1 {
    margin-left: -150px;
  }
}

.hero-section .iphone-wrap .phone-2 {
  margin-top: 50px;
  margin-left: 100px;
  width: 250px;
}

@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap .phone-2 {
    width: 250px;
    position: absolute;
    margin-top: 0px;
    margin-left: 100px;
  }
}
.wiz-watch h1{ font-size: 6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600; color:#fff; }
.wiz-watch p{ text-transform:uppercase; }
.wiz-watch h6{ font-weight:600; color:#fff; text-transform:uppercase; }
.benifit-wizwatch{ position:relative; z-index:111; }
.integration-section { padding-top:70px; padding-bottom:70px; }
.integration-section .container-fluid { padding:0px; }
.integration-txt { background-color:#000; padding:80px; }
.integration-txt h3{ font-size:60px; font-weight:700; font-family: 'Oswald', sans-serif; color:#fff;  }
.integration-txt p{ font-size:16px; color:#fff; font-family: 'Montserrat', sans-serif; text-align: justify; padding-top: 20px;}
.integration-txt .btn{ padding:10px 22px; font-family: 'Oswald', sans-serif; font-weight:600; }
.integration-txt .btn-primary {
  color: #fff;
  background-color: inherit;
  border-color: #fff;
}
.integration-txt .btn-primary:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}
.integration-container { background-color:#000; }
.integration-container .col-lg-6{ padding:0px; }
.integration-container img{ width:100%; }



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-work{ padding-bottom:70px; }
.testimonials-work .testimonials-carousel,
.testimonials-work .testimonials-slider {
  overflow: hidden;
}

.testimonials-work .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 290px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px; border: 1px solid #e2e2e2;
}

.testimonials-work .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials-work .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials-work .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}



.testimonials-work .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-work .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials-work .testimonial-item p {
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  margin: 30px auto 15px auto;
}

.testimonials-work .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-work .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3ec1d5;
}

.testimonials-work .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3ec1d5;
}





.product-container{ margin-top:20px; }


.product-container a { text-decoration:none; }

.product-head p{ font-weight:600; }



.product-container .card > hr {
  margin-right: 15px;
  margin-left: 15px;
}

.product-container .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color:#f7f7f7;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; height: 100%;
}
.product-container .price {
  background-color: #e8e8e8;

  margin-left: 15px;
  margin-right: 15px;
}



.enquiry-txt-btn button.btn {
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 15px;
  background: #3ec1d5;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  float: right;
  border: 1px solid #3ec1d5;
}

.enquiry-txt-btn button.btn:hover {
padding: 5px 30px;
  border-radius: 5px;
  font-size: 15px;
  background: #fff;
  border: 1px solid #3ec1d5;
  color: #3ec1d5;
  font-family: 'Oswald', sans-serif;
  float: right;
}
.demo-enquiry button.btn {
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 15px;
  background: #3ec1d5;

  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  float: right; border: 1px solid #3ec1d5;;
}
.demo-enquiry .btn-primary:hover {
  color: #fff;
  background-color: #000;
 border: 1px solid #000;
}

















@media (max-width: 992px) {
.drop-btn .nav-item a {
  color: #fff;
  font-size: 12px;
}

.navbar-nav{ background-color:#f4f4f4; border-radius:5px; }
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: inherit;
}
.second-header {
  padding-bottom: 5px;
}
.free-bg{ display:none; }
.schnelder-logo-section {
  min-height: 0px;
  display: inherit;
  align-items: center; margin-top: 20px; margin-bottom: 20px;
}
.schnelder-l-container img {
  border: 10px solid #6aa666;
  width: 420px;
  margin-left: 0px;
}
.schneider-section {
  min-height: 0px;
  display: inherit;
  justify-content: center;
  align-items: center; margin-top: 20px;
}
.schnelder-l-container {
  background-color: #fff;
}
.team-img { display:none; }
.visn-msn { margin-bottom:15px; }

.web-integration { margin-bottom:20px; }
}



@media (max-width: 767px) {

  .log-reg{ margin-top:10px; }

  .slider-area {
    margin-top: 0px;
  }

  .slider-content h2 {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .slider-content h1 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .layer-1-3 a.ready-btn {
    padding: 8px 15px;
  }
  .drop-btn{ display:flex; justify-content: center; }
  .nav-searchbx .form-control { width: 150px;}
  .second-header { padding-bottom: 15px; }

.nivo-controlNav{ display:none;  }
.team-izado {
  background-color: #ebebeb;
  padding-left: 20px;
  padding-right: 20px;
}
.wiz-text h2 {

  font-size: 54px;
  }
  #clients .client-logo {
  padding: 30px;
  height: 120px;
}
.specialise-in {
  padding-bottom: 0px;
}
.clients-bg h3 {

  padding-top: 0px;
  }
.free-bg { display: none;}
.schnelder-logo-section {
  min-height: 0px;
  display: inherit;
    margin-bottom: 20px; margin-top: 20px;

}
.schnelder-l-container {
  background-color: inherit;
}
.schnelder-l-container img {
  border: 5px solid #6aa666;
  width: 260px;
  margin-left: 0px;
}
.nav-searchbx {
  padding-top: 5px;
  float: inherit;
  margin-right: 0px;
  margin: auto !important;
  display: flex;
  justify-content: center;
}
.cta-text span {
  color: #c1c1c1;
  font-size: 12px;
}
.cta-text h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.single-cta{ margin-bottom:15px; }
.support-box {
  background-color: #e1e1e1;
  width: 70px;
  height: 70px;
}
.we-support-container h5 {
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding-top: 22px;
  font-size: 12px;
}
.serviceBox .service-icon {
  color: #bbb;
  font-size: 34px;
  height: 80px;
  width: 80px;
  margin: 0 auto 30px;
  border-radius: 15px;
}
.serviceBox .title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 30px;
}

/* About Page */
.about-us-page {
 
  padding-left: 20px;
  padding-right: 20px;

}
.visn-msn{ margin-bottom:20px; }
.footer-widget-heading h3 {

  padding-top: 40px;
}

.number-txt {
  min-height: 130px;
  }
  .wiz-txt {
  min-height: 130px;
}
.portfolio-item .caption .caption-content h2, .portfolio-item .caption .caption-content .h2 {
  font-size: 16px;

}
.about-wiz-c{ padding-left:20px; padding-right:20px; }
.schneider-section {
  min-height: 0px; margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.masthead .page-heading h1, header.masthead .page-heading .h1, header.masthead .site-heading h1, header.masthead .site-heading .h1 {
  font-size: 4em;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Software Application
--------------------------------------------------------------*/
.we-provide-box img {
  width: 40px;
}
.we-provide-box h4 {
  padding-left: 22px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.elivate img {

  margin-bottom: 20px;
}
.web-integration { margin-bottom:20px; }
.about-wiz-c img {
  width: 100%;
}
.benifit-box h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  }
  .first-round {
  background-color: #fff;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 4px solid #0da203;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.second-round {
  background-color: #efefef;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second-round img {
  width: 44px;
}
.benifit-box{ margin-top:0px; }
.wizwatch-box h4 {
  color: #3a3a3a;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding-top: 18px;
}
.integration-txt h3 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}
.integration-txt {

  padding: 40px;
}
.wiz-product {
  padding-top: 0px;
  padding-bottom:40px;
}
.all-p p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin: 20px 0 0px;
  }
  .demo-txt-btn p{ color:#fff; padding-top: 20px; padding-left: 0px; padding-right: 0px; font-size: 14px;}
  .demo-txt-btn .btn {
  padding: 7px 30px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
}
.margin-top{ margin-top:20px; }
.product-container .card { margin-top:15px; }

}
.product-separation h4 {
  font-size: 16px;
}
.head-top { margin-top:110px; }
.head-top span {
   font-family: 'Montserrat', sans-serif; color: #3ec1d5;
}
.head-top i{ color: #cacaca; animation: 1.3s spin linear infinite; padding-left:10px; }
.head-top a { text-decoration:none; color: #999999;
  font-size: 16px;  font-family: 'Montserrat', sans-serif; }
.head-top a:hover {
  color: #3ec1d5;
  font-size: 16px;
}
.head-top h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  padding: 0; margin-bottom: 5px;
  font-family: 'Oswald', sans-serif; margin-top: 30px;
}
.product-separation .separator-line-verticle-extra-small {
  width: 2px;
  height: 18px;
  margin-top: 2px;
  background-color: #c9c9c9;
}
.cart-d-head h4 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0px; font-family: 'Oswald', sans-serif;
}
.cart-d-head span { color: #3ec1d5; }
.large-4 { border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 15px; height: fit-content; }
.product-separation ul{ padding-left:0px; font-family: 'Oswald', sans-serif;  }
.cart-d-head p {
  margin-bottom: 0px;  font-family: 'Oswald', sans-serif; padding-top: 20px;
}

.cart-price { font-family: 'Montserrat', sans-serif; background-color: #f0f0f0; padding-left:15px; padding-top:10px; padding-bottom:10px; }
.cart-d-head hr{ margin-top:0px; margin-bottom:  } 
.cart-price-1 h3 {font-family: 'Montserrat', sans-serif; font-size:18px; font-weight:600;  }
.cart-price-1 h6 {font-family: 'Montserrat', sans-serif; font-size:14px; }
.cart-price-2 h3 {font-family: 'Montserrat', sans-serif; font-size:18px; font-weight:600;  }
.cart-price-2 h6 {font-family: 'Montserrat', sans-serif; font-size:14px; }
.unit { font-family: 'Montserrat', sans-serif;  }
.unit-qntity { font-family: 'Montserrat', sans-serif;  }


.cart-btn { padding-top:15px; display:flex; }
.cart-btn .btn { width:140px; }
.cart-btn .btn-secondary {
  color: #fff;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}
.product-img-section h4 { font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif; 
 }
 .product-spec  h4 { font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif; margin-bottom: 20px;
 }
 .product-img-section span { 
color: #3ec1d5;
 }
  .product-img-section p { 
font-family: 'Oswald', sans-serif;
 }
.product-details-head h2 { font-family: 'Montserrat', sans-serif; font-size:20px; font-weight:600; color: #fff; margin-bottom: 0px; text-transform: uppercase; }
.product-details p { font-family: 'Montserrat', sans-serif; font-size:16px;  }
.product-details-head { background-color: #3ec1d5; width:100%; padding:10px; margin-bottom: 20px;}
.product-spec li{ list-style:none; font-family: 'Montserrat', sans-serif; margin-bottom: 10px;}
.list-styles i { font-size:10px; color:#000 !important; margin-right:10px; }
.product-spec i { color:#3ec1d5; margin-right:10px; }
.bd-example-one { display:flex; align-items:center; }
.bd-example img { width: 22px;  }
.enquiry-txt-btn img{ width: 22px; margin-right:15px;  }
.quantity {
  display: flex;
  border: 2px solid #3ec1d5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); width: fit-content; margin-right: 15px;
}

.quantity button {
  background-color: #3ec1d5;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 30px;
  height: auto;
  text-align: center;
  transition: background-color 0.2s; 
}

.quantity button:hover {
  background-color: #f0f0f0;
  color: #000;
}

.input-box {
  width: 40px;
  text-align: center;
  border: none;
  padding: 4px 10px;
  font-size: 16px;
  outline: none;
}
.cart-section { padding-top:100px; }
/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-box[type="number"] {
  -moz-appearance: textfield;
}



.cart-section h5{
  font-size: 20px;
  font-weight: 700;
  margin: 0;
    margin-top: 0px;
    margin-bottom: 0px;
  padding: 0;

  font-family: 'Oswald', sans-serif;

}
.cart-section span {
  font-family: 'Oswald', sans-serif;
  color: #3ec1d5;
}
.cart-btns .btn-warning {
  color: #fff; font-family: 'Oswald', sans-serif;
  background-color: #3ec1d5;
  border-color: #3ec1d5;
}
.cart-btns .btn-warning:hover {
  color: #000; 
  background-color: #fff;
  border-color: #3ec1d5;
}
.delete-ic i { color:#cacaca; }
@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap {
    display: none;
  }
}

.empty-cart { margin-top:140px; margin-bottom:60px; }
.emptycart-bg { border: 2px dashed #ccc; padding:20px; border-radius:5px;  }
.empty-cart-btn { margin-bottom:30px; margin-top:30px; }
.empty-cart-btn button.btn {
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 15px;
  background: #3ec1d5;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;

  border: 1px solid #3ec1d5;
}

.empty-cart-btn button.btn:hover {
padding: 5px 30px;
  border-radius: 5px;
  font-size: 15px;
  background: #fff;
  border: 1px solid #3ec1d5;
  color: #3ec1d5;
  font-family: 'Oswald', sans-serif;

}

.emptycart-bg h5{ font-size:20px; font-family: 'Oswald', sans-serif; margin-top:20px;  }
.emptycart-bg h4{ font-size:14px; font-family: 'Oswald', sans-serif;  }
.emptycart-bg span{ color:#3ec1d5; }
.empty-cart .col-lg-6 { margin:auto; }

