@font-face {
  font-family: 'Myriad Pro Regular';
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Regular"), url("../fonts/MYRIADPRO-REGULAR.woff") format("woff"); }
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  /* background: #000; */
  /* overflow: hidden;  */
}
  body.fixed {
    overflow: hidden; }

.inner-content {
  padding-top: 70px;
  padding-bottom: 100px; }

.container-fluid {
  padding: 0; }

.row {
  margin: 0; }

.preload {
  background: black;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  position: fixed; }
  .preload .loading-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    .preload .loading-image .lds-ripple {
      display: inline-block;
      position: relative;
      width: 80px;
      height: 80px; }
    .preload .loading-image .lds-ripple div {
      position: absolute;
      border: 4px solid #fff;
      opacity: 1;
      border-radius: 50%;
      animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
    .preload .loading-image .lds-ripple div:nth-child(2) {
      animation-delay: -0.5s; }
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0; } }
#navbar {
  padding: 0 15px !important;
  background-color: rgba(255, 255, 255, 0.9);
  /* font-family: 'Segoe UI','Open Sans' !important; */
  z-index: 10;
  transition: all 0.2s;
  position: fixed;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  /* -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);  */
}
  #navbar h3 {
    font-weight: 700;
    color: #FFF; }
  #navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  #navbar .logo {
    margin-top: -8px; }
    #navbar .logo img {
      max-width: 180px;
      height: 50px;
      transition: all ease 0.2s;
     }
  #navbar .main-nav {
    float: none !important; }
    #navbar .main-nav ul {
      margin-bottom: 0 !important; }
    #navbar .main-nav ul li {
      display: inline;
      padding: 10px;
      font-size: 18px; }
      #navbar .main-nav ul li a {
        color: #000;
        text-decoration: none;
        transition: all ease 0.5s;
        font-weight: 500;}
      #navbar .main-nav ul li.active a, #navbar .main-nav ul li:hover a {
        color: #ED3236; 
        font-weight: 700;}
  #navbar .mobile-nav .hamburger {
    position: absolute;
    cursor: pointer;
    right: 6.5%;
    top: 50%;
    transform: translate(-5%, -50%); }
  #navbar .mobile-nav .line {
    width: 30px;
    height: 3px;
    background: #ED3236;
    margin: 5px; }
  #navbar .mobile-nav .cross {
    display: none;
    width: 30px;
    height: 3px;
    background: #FFF; }
    #navbar .mobile-nav .cross:nth-child(4) {
      -ms-transform: rotate(45deg);
      /* IE 9 */
      transform: rotate(45deg); }
    #navbar .mobile-nav .cross:nth-child(5) {
      -ms-transform: rotate(-45deg);
      /* IE 9 */
      transform: rotate(-45deg);
      margin-top: -3px; }
  #navbar .mobile-nav .nav-links {
    position: fixed;
    background: #FFF;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 70px;
    clip-path: circle(100px at 100% -40%);
    -webkit-clip-path: circle(100px at 100% -40%);
    transition: all 0.5s ease-out; }
    #navbar .mobile-nav .nav-links li {
      text-align: center;
      list-style: none;
      margin: 20px; }
      #navbar .mobile-nav .nav-links li a {
        text-decoration: none;
        color: #000; }
    #navbar .mobile-nav .nav-links.open {
      z-index: 9999;
      clip-path: circle(2000px at 100% -40%);
      -webkit-clip-path: circle(2000px at 100% -40%); }
  #navbar.navbar-scrolled {
    height: 50px;
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 997;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
    #navbar.navbar-scrolled h3 {
      color: #ED3236; }
    #navbar.navbar-scrolled .logo img{ 
      transform: scale(0.8); }
    #navbar.navbar-scrolled .main-nav ul li a {
      color: #000; }
    #navbar.navbar-scrolled .main-nav ul li.active a, #navbar.navbar-scrolled .main-nav ul li:hover a {
      color: #ED3236; }
    #navbar.navbar-scrolled .mobile-nav .line {
      background: #ED3236; }
    #navbar.navbar-scrolled .mobile-nav .cross {
      background: #ED3236; }
      #navbar.navbar-scrolled .mobile-nav .cross:nth-child(4) {
        animation: cross1 0.5s linear; }
      #navbar.navbar-scrolled .mobile-nav .cross:nth-child(5) {
        animation: cross2 0.5s linear; }
    #navbar.navbar-scrolled .mobile-nav .nav-links {
      position: fixed;
      background: rgba(255, 255, 255, 0.9);
      height: 100vh;
      width: 100%;
      left: 0;
      top: 50px;
      clip-path: circle(100px at 100% -40%);
      -webkit-clip-path: circle(100px at 100% -40%);
      transition: all 0.5s ease-out; }
      #navbar.navbar-scrolled .mobile-nav .nav-links li {
        text-align: center;
        list-style: none;
        margin: 20px; }
        #navbar.navbar-scrolled .mobile-nav .nav-links li a {
          text-decoration: none;
          color: #000; }
        #navbar.navbar-scrolled .mobile-nav .nav-links li.active a, #navbar.navbar-scrolled .mobile-nav .nav-links li:hover a {
          color: #ED3236; }
      #navbar.navbar-scrolled .mobile-nav .nav-links.open {
        z-index: 9999;
        clip-path: circle(2000px at 100% -40%);
        -webkit-clip-path: circle(2000px at 100% -40%); }

.footer-desktop .top ul li{
  list-style: none;
} 
.top-section{
  padding-top: 70px;
}

.product-item img{
  max-height: 350px;
}
.product-item a,
.project-item a{
  text-decoration: none;
  color: #000;
}
.product-name{
  height: 50px;
}

.product-preview,
.project-preview {
  width: 100px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 30%);
  box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 30%);
  opacity: 0.5;
  transition: all ease-in-out 0.2s;
}
.product-preview.active,
.project-preview.active{
  opacity: 1;
}
.product-preview:hover,
.project-preview:hover{
  opacity: 1;
}

.product-img-container, .project-img-container{
  display: flex;
}
.product-img-container .left,
.project-img-container .left{
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:768px){
  .product-img-container,
  .project-img-container{
    flex-direction: column-reverse;
  }
  .product-img-container .left,
  .project-img-container .left{
    flex-direction: row;
    -webkit-overflow-scrolling:touch;
    margin-bottom: 30px;
    margin-right: 0 !important;
  }
  .product-img-container .left .product-preview,
  .project-img-container .left .project-preview{
    margin: 5px;
  }
}

footer{
  background-color: #1B1D30;}
  footer .top{
    padding: 30px 0;
  }
  footer .top li{
    margin: 10px 0;
  }
  footer .top a{
    text-decoration: none;
    color: #FFF;
  }
  footer .credit{
    background-color: #18192B;
    padding: 10px;
    color: #FFF;
  }

.heading-title{
  display: inline-block !important;
  position: relative;
  margin-bottom: 50px;
  font-weight: 700;
}
  .heading-title::before {
    bottom: -15px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 100%;
    background-color: #ED3236;
  }
  .heading-title::after {
    bottom: -15px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 30px;
    background-color: #3e4095;
  }

  /* Divider */
  .divider-wave{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTMyMCAyOEMxNjAgMjggODAgNDkgMCA3MFYwaDEyODB2NzBjLTgwIDIxLTE2MCA0Mi0zMjAgNDItMzIwIDAtMzIwLTg0LTY0MC04NHoiLz48L2c+PC9zdmc+);
    background-size: 100% 60px;
    bottom: 0;
    height: 60px;
    z-index: 1;
  }

  .divider-wave.bottom{
    transform: rotateX(180deg);
  }
  
  /* Owl Carousel */
  .product-carousel .owl-stage-outer{
    padding-bottom: 20px !important;
  }

  /* Button */
  .btn-detail, .btn-nav{
    background-color: #3e4095;
    color: #FFF !important;
    font-weight:600;
  }

  /* Overlay */
  .overlay-loading{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.6);
    z-index: 5;
  }

  /* Loader */
  .loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .owl-carousel .owl-nav .arrow {
    max-width: 15px; }
  .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%); }
    .owl-carousel .owl-nav .owl-prev:focus {
      outline: none; }
  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%); }
    .owl-carousel .owl-nav .owl-next:focus {
      outline: none; }