:root {
  --secondary-color: #F55C47;
}

/*
** General Styles for HTML tags
*/

* {
    padding: 0;
    margin: 0;
  }
  
  html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #666666;
  }
  
  html, body, .wrapper {
    height: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #232323;
    font-weight: normal;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
    margin: 0;
    font-weight: 600;
  }
  
  h1,h2,h3,h4 {
    margin-bottom: 15px;
  }
  
  h5,h5 {
    margin-bottom: 10px;
  }
  
  img {
    border: none;
    outline: none;
    max-width: 100%;
  }
  
  label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
  }
  
  a, .btn, button {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    outline: medium none;
  }
  
  a img, iframe {
    border: none;
  }
  
  p {
    color: #666666;
    line-height: 2;
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
  }
  
  hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eee;
  }
  
  pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
  }
  
  input:focus, textarea:focus, 
   select:focus {
    outline: none;
    box-shadow: inherit;
  }
  
  ul {
    margin: 0;
    list-style-type: none;
  }
  
  a, a:active, a:focus, a:hover {
    outline: none;
    text-decoration: none;
    color: #232323;
  }
  
  a:hover {
    color: #232323;
  }
  
  a {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
  }
  
  b, strong {
    font-weight: 900;
  }
  
  .btn.active, .btn:active {
    background-image: inherit !important;
  }
  
  .btn.focus, 
   .btn:active:focus, 
   .btn:active:hover, 
   .btn:focus, 
   .btn:hover {
    outline: 0;
  }
  
  .btn.circle {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  
  .btn.active, .btn:active {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
  }
  
  input {
    border: 1px solid #f4f4f4;
    border-radius: inherit;
    box-shadow: inherit;
    min-height: 50px;
  }
  /* Default CSS */
  .container-half {
    margin: 0 auto;
    width: 60%;
    padding: 0 15px;
  }
  
  .bg-cover {
    background-position: center center;
    background-size: cover;
  }
  
  .bg-contain {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .bg-fixed {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
  }
  
  .bg-gray {
    background-color: #f7f7f7;
  }
  
  .bg-theme-small {
    background-color: #edf5ff;
  }
  
  .bg-light {
    background-color: #ffffff;
  }
  
  .bg-theme {
    background-color: #8099FC;
  }
  
  .text-light h1, 
   .text-light h2, 
   .text-light h3, 
   .text-light h4, 
   .text-light h5, 
   .text-light h6, 
   .text-light p, 
   .text-light a {
    color: #ffffff;
  }
  
  .shadow {
    position: relative;
    z-index: 1;
  }
  
  .shadow.dark::after {
    background: #1d2024 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .shadow.dark-hard::after {
    background: #1d2024 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .shadow.light::after {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .shadow.theme::after {
    background: #8099FC none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .shadow.theme-hard::after {
    background: #8099FC none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .default-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .default-padding-top {
    padding-top: 80px;
  }

  .default-padding-top-more {
    padding-top: 150px;
  }
  
  .default-padding-bottom {
    padding-bottom: 80px;
  }
  
  .default-padding.bottom-less {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  
  .default-padding.bottom-30 {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  
  .default-padding.bottom-20 {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  
  .padding-xl {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  
  .carousel-shadow {
    padding-bottom: 65px;
  }
  
  .btn {
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: inherit;
    overflow: hidden;
  }
  
  .btn-md {
    padding: 12px 40px;
  }
  
  .btn i {
    margin-left: 5px;
  }
  
  .btn-sm {
    padding: 8px 35px;
    font-size: 12px;
  }
  
  .btn.btn-sm-pro {
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
    padding: 4px 35px;
    display: inline-block;
  }
  
  .btn-border-light {
    border: 2px solid #ffffff;
  }
  
  .btn.btn-sm-pro.btn-border-light:hover, 
   .btn.btn-sm-pro.btn-border-light:focus {
    background-color: #ffffff;
    color: #232323;
    border: 2px solid #ffffff;
  }
  
  .btn-dark {
    background-color: #232323;
    color: #ffffff;
    border: 2px solid #232323;
  }
  
  .btn-dark.border {
    background-color: transparent;
    color: #232323;
    border: 2px solid #232323;
  }
  
  .btn-dark.border:hover {
    background-color: #232323;
    color: #ffffff !important;
    border: 2px solid #232323;
  }
  
  .btn.btn-light {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid #ffffff;
    color: #232323;
  }
  
  .btn.btn-light:hover, 
   .btn.btn-light:focus {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .btn.btn-light.effect:hover, 
   .btn.btn-light.effect:focus {
    background-color: #8099FC;
    color: #ffffff !important;
    border: 2px solid #8099FC;
  }
  
  .btn.btn-light.border {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .btn.btn-light.border:hover {
    background: #ffffff none repeat scroll 0 0 !important;
    border: 2px solid #ffffff !important;
    color: #232323 !important;
  }
  
  .btn-dark:hover, 
   .btn-dark:focus {
    color: #232323 !important;
    background: transparent;
  }
  
  .bg-dark {
    background: #1d2024 none repeat scroll 0 0;
  }
  
  .btn-theme {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    border: 2px solid var(--secondary-color);
  }
  
  .btn-theme.border {
    background-color: transparent;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color);
  }
  
  .btn-theme.border:hover {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    border: 2px solid var(--secondary-color);
  }
  
  .btn-theme.effect:hover, 
   .btn-theme.effect:focus {
    background: #232323 none repeat scroll 0 0;
    border: 2px solid #232323;
    color: #ffffff;
  }
  
  .btn.btn-sm-lm {
    font-size: 12px;
    padding: 4px 35px;
  }
  
  .bg-theme a.btn-theme.btn:hover,
  .bg-theme a.btn-theme.btn:focus {
    border: 2px solid #ffffff;
    color: #ffffff;
  }
  
  .bg-fixed {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
  }
  
  .bg-cover {
    background-position: center center;
    background-size: cover;
  }
  
  .container-full {
    padding: 0 15px;
    width: 100%;
  }
  
  .oh {
    overflow: hidden;
  }
  
  .less-margin {
    margin: 0;
  }
  
  header {
    position: relative;
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a {
    position: relative;
    z-index: 1;
    margin-left: 3px;
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a {
    border: medium none;
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: -2px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a.active::after,
  header nav.navbar.border.bootsnav.navbar-fixed.no-background ul li a:hover::after {
    width: 100%;
  }
  
  header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a.active::after,
  header nav.navbar.border.bootsnav.navbar-fixed.no-background .attr-nav ul li a:hover::after {
    width: 0;
  }
  
  .attr-nav .social.right li {
    margin-left: 20px;
  }
  
  .attr-nav .social li a {
    font-size: 16px;
  }
  
  /* Navbar */
  nav.bootsnav.navbar-default.info-topbar .navbar-header {
    display: none;
  }
  
  nav.bootsnav.navbar-default.info-topbar ul li a {
    margin-right: 30px;
    padding: 35px 0;
  }
  
  nav.bootsnav.navbar-default.info-topbar.active-full ul li a {
    margin-right: 0;
    padding: 35px 20px;
  }
  
  .attr-nav > a.btn-theme.effect:hover, 
  .attr-nav > a.btn-theme.effect, 
  .attr-nav > a.btn-theme.effect:focus {
    background: #8099FC none repeat scroll 0 0;
    border: 2px solid #8099FC;
    color: #ffffff !important;
  }
  
  nav.bootsnav.navbar-default.info-topbar.sticked ul li a {
    margin-right: 30px;
    padding: 35px 0;
  }
  
  .attr-nav.social li {
    display: inline-block;
    padding: 25px 0 !important;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
  }
  
  .attr-nav.social li a {
    border: 1px solid #f2f2f2;
    color: #8099FC;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    padding: 0 !important;
    text-align: center;
    width: 40px;
  }
  
  nav.navbar.bootsnav.sticked .attr-nav.social li {
    display: inline-block;
    padding: 20px 0 !important;
  }
  
  .site-heading h2 {
    display: inline-block;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 15px;
    position: relative;
    letter-spacing: 1px;
  }
  
  .site-heading.text-left h2 {
    padding-bottom: 20px;
  }
  
  .site-heading h4 {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .bg-theme .site-heading h4,
  .shadow .site-heading h4 {
    color: #ffffff !important;
  }
  
  .team-area .site-heading h4 {
    color: #8099FC !important;
  }
  
  .half-bg .site-heading h4 {
    color: #8099FC;
  }
  
  .site-heading.clean h2 {
    padding-bottom: 0;
  }
  
  .site-heading.clean h2 span {
    color: #8099FC;
  }
  
  .site-heading h2 span {
    color: #8099FC;
  }
  
  .site-heading.barber h2 span {
    color: #bc9355;
  }
  
  .site-heading p {
    margin: 0;
  }
  
  .site-heading h2::before {
    background: var(--secondary-color) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -40px;
    position: absolute;
    width: 50px;
  }
  
  .site-heading.text-left h2::before {
    left: 0;
    margin-left: 0;
  }
  
  .site-heading h2::after {
    background: #232323 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: 15px;
    position: absolute;
    width: 10px;
  }
  
  .bg-theme .site-heading h2::after,
  .shadow .site-heading h2::after {
    background: #ffffff none repeat scroll 0 0 !important;
  }
  
  .site-heading.text-left h2::after {
    left: 0;
    margin-left: 55px;
  }
  
  .bg-theme .site-heading h2::before,
  .shadow .site-heading h2::before {
    background: #ffffff none repeat scroll 0 0 !important;
  }
  
  .half-bg .site-heading h2::before {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .site-heading h2 span {
    color: #8099FC;
  }
  
  .site-heading {
    margin-bottom: 60px;
    overflow: hidden;
  }
  
  .site-heading.single {
    margin-bottom: 35px;
  }
  
  .carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
  }
  
  .inc-border {
    border-top: 1px solid #f4f4f4;
  }
  
  /* ============================================================== 
       # Bradcrumb 
  =================================================================== */
  .breadcrumb-area {
    padding: 150px 0;
  }
  
  .breadcrumb-area .breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 15px;
    position: relative;
    z-index: 1;
  }
  
  .breadcrumb-area .breadcrumb::after {
    background: #232323 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .breadcrumb-area h1 {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 40px;
    margin-top: -10px;
  }
  
  .breadcrumb > li + li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    padding: 0 5px;
    color: #ffffff;
    display: none;
  }
  
  .breadcrumb-area .breadcrumb li i {
    margin-right: 5px;
  }
  
  .breadcrumb-area .breadcrumb li {
    padding: 0 15px;
    position: relative;
    z-index: 1;
  }
  
  .breadcrumb-area .breadcrumb li::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    height: 10px;
    left: -7px;
    margin-top: -5px;
    position: absolute;
    top: 6px;
    width: 10px;
  }
  
  .breadcrumb-area .breadcrumb li:first-child::after {
    display: none;
  }
  
  .breadcrumb-area .breadcrumb a, 
  .breadcrumb-area .breadcrumb li {
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
  }
  
  .breadcrumb-area .breadcrumb li.active {
    text-decoration: underline;
  }
  
  
  /* Topbar CSS */
  .top-bar-area {
    border-bottom: 1px solid #f4f4f4;
    padding: 10px 0;
    overflow: hidden;
  }
  
  .top-bar-area .row {
    align-items: center;
    display: flex;
    float: none;
    vertical-align: middle;
  }
  
  .top-bar-area .info.box li {
    display: inline-block;
    text-align: left;
  }
  
  .top-bar-area .info.box li .icon, 
  .top-bar-area .info.box li .info {
    display: table-cell;
    vertical-align: middle;
  }
  
  .top-bar-area .info.box li .info span {
    display: block;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
  }
  
  .top-bar-area .info.box li .icon i {
    color: #666666;
    font-size: 30px;
  }
  
  .top-bar-area.bg-light .info.box li .icon i {
    color: #8099FC;
  }
  
  .top-bar-area .info.box li .icon {
    padding-right: 15px;
  }
  
  .top-bar-area .address-info.text-right .info.box li {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
  }
  
  .top-bar-area .address-info.text-left .info.box li {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
  }
  
  .top-bar-area .address-info.text-right .info.box li::after {
    background: #f4f4f4 none repeat scroll 0 0;
    content: "";
    height: 200px;
    left: 0;
    position: absolute;
    top: -50%;
    width: 1px;
  }
  
  .top-bar-area .address-info.text-left .info.box li::after {
    background: #f4f4f4 none repeat scroll 0 0;
    content: "";
    height: 200px;
    right: 0;
    position: absolute;
    top: -50%;
    width: 1px;
  }
  
  .top-bar-area .address-info.text-right .info.box li:first-child::after {
    display: none;
  }
  
  .top-bar-area .address-info.text-left .info.box li:last-child::after {
    display: none;
  }
  
  .top-bar-area .address-info.text-right .info.box li:first-child {
    border: medium none;
    margin-left: 0;
    padding-left: 0;
  }
  
  .top-bar-area .address-info.text-left .info.box li:last-child {
    border: medium none;
    margin-right: 0;
    padding-right: 0;
  }
  
  .top-bar-area .address-info.text-right .info {
    display: inline-block;
  }
  
  .top-bar-area .link.text-right a {
    margin-left: 5px;
  }
  
  .top-bar-area .social li {
    display: inline-block;
  }
  
  .top-bar-area .social li a {
    color: #666666;
    display: inline-block;
    font-size: 20px;
  }
  
  .top-bar-area .social.text-right li {
    margin-left: 15px;
  }
  
  .top-bar-area.one-line li {
    margin-right: 15px;
    padding-right: 15px;
  }
  
  .top-bar-area.bg-dark li {
    color: #ffffff;
  }
  
  .top-bar-area.one-line.bg-dark li {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .top-bar-area.one-line li:last-child {
    border: medium none;
    margin-right: 0;
    padding-right: 0;
  }
  
  .top-bar-area.one-line li i {
    margin-right: 5px;
  }
  
  .top-bar-area.one-line li i {
    color: #8099FC;
  }
  
  .top-bar-area.one-line .link a {
    border-left: 1px solid #f4f4f4;
    font-weight: 500;
    margin-left: 13px;
    padding-left: 15px;
    text-transform: uppercase;
  }
  
  .top-bar-area.one-line.bg-dark .link a {
    border-left: 1px solid #ffffff;
  }
  
  .top-bar-area.one-line .link a:hover,
  .top-bar-area.one-line .link a:last-child:hover {
    color: #8099FC;
  }
  
  .top-bar-area.one-line .link a:last-child {
    color: #232323;
  }
  
  .top-bar-area.one-line.bg-dark .link a:last-child {
    color: #ffffff;
  }
  
  .top-bar-area.one-line .link a:first-child {
    border: medium none;
    padding-left: 0;
  }
  
  
  /* ============================================================== 
       # Banner 
  =================================================================== */
  body, 
  .banner-area, 
  .banner-area div {
    height: 100%;
  }
  
  .banner-area.auto-height, 
  .banner-area.auto-height div {
    height: auto;
  }
  
  .banner-area .banner-bg {
    background-position: center center;
    background-size: cover;
    -webkit-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    -moz-border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    height: 120% !important;
    position: absolute;
    right: -20%;
    top: -15%;
    width: 60%;
  }
  
  .navbar-transparent .content {
    padding-top: 60px;
  }
  
  .content-double.navbar-transparent .content {
    padding-top: 0;
  }
  
  .content-double.navbar-transparent .double-items {
    padding-top: 60px;
  }
  
  .banner-area .box-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
  }
  
  .banner-area .box-table {
    display: table;
    width: 100%;
  }
  
  .banner-area .box-cell, 
   .banner-area .box-cell div {
    height: auto;
  }
  
  .banner-area .double-items .info, 
  .banner-area .double-items .thumb {
    height: auto;
  }
  
  .banner-area {
    position: relative;
    overflow: hidden;
  }
  
  .banner-area .wavesshape {
    bottom: -2px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 1;
  }
  
  .banner-area .wavesshape.shape {
    bottom: -50px;
    height: auto;
  }
  
  .banner-area .content,
  .banner-area .thumb {
    position: relative;
    z-index: 9;
  }
  
  .banner-area.wavesshape {
    position: relative;
    z-index: 1;
  }
  
  .banner-area.triangle-shadow {
    position: relative;
    z-index: 1;
  }
  
  .banner-area.triangle-shadow::before {
    border-bottom: 0 solid transparent;
    border-right: 100vw solid #fff;
    border-top: 80px solid transparent;
    bottom: 0;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 101;
  }
  
  .banner-area.shadow-inner .content {
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .banner-area.content-double .double-items {
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    vertical-align: middle;
  }
  
  .banner-area.content-double.fixed-navbar .double-items {
    padding-top: 60px;
  }
  
  .banner-area .banner-carousel .owl-item.center img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  
  .banner-area .banner-carousel .owl-item img {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  
  /* Animation delays */
  .banner-area .item h1:first-child, 
   .banner-area .item h2:first-child, 
   .banner-area .item h3:first-child, 
   .banner-area .item h4:first-child, 
   .banner-area .item h5:first-child, 
   .banner-area .item h6:first-child {
    animation-delay: .5s;
  }
  
  .banner-area .item h1:nth-child(2), 
   .banner-area .item h2:nth-child(2), 
   .banner-area .item h3:nth-child(2), 
   .banner-area .item h4:nth-child(2), 
   .banner-area .item h5:nth-child(2), 
   .banner-area .item h6:nth-child(2) {
    animation-delay: .7s;
  }
  
  .carousel-caption h1:nth-child(3), 
   .carousel-caption h2:nth-child(3), 
   .carousel-caption h3:nth-child(3), 
   .carousel-caption h4:nth-child(3), 
   .carousel-caption h5:nth-child(3), 
   .carousel-caption h6:nth-child(3) {
    animation-delay: .9s;
  }
  
  .banner-area .item p {
    animation-delay: .5s;
  }
  
  .banner-area .item ul {
    animation-delay: .6s;
  }
  
  .banner-area .item a, 
   .banner-area .item button {
    animation-delay: .7s;
  }
  
  /* Carousel Fade Effect */
  .carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }
  
  .carousel-fade .carousel-inner .item, 
   .carousel-fade .carousel-inner .active.left, 
   .carousel-fade .carousel-inner .active.right {
    opacity: 0;
  }
  
  .carousel-fade .carousel-inner .active, 
   .carousel-fade .carousel-inner .next.left, 
   .carousel-fade .carousel-inner .prev.right {
    opacity: 1;
  }
  
  .carousel-fade .carousel-inner .next, 
   .carousel-fade .carousel-inner .prev, 
   .carousel-fade .carousel-inner .active.left, 
   .carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .carousel-fade .carousel-control {
    z-index: 2;
  }
  /* Slider Zoom Effect */
  @-webkit-keyframes zoom {
    from {
      -webkit-transform: scale(1, 1);
    }
  
    to {
      -webkit-transform: scale(1.2, 1.2);
    }
  }
  
  @-moz-keyframes zoom {
    from {
      -moz-transform: scale(1, 1);
    }
  
    to {
      -moz-transform: scale(1.2, 1.2);
    }
  }
  
  @-o-keyframes zoom {
    from {
      -o-transform: scale(1, 1);
    }
  
    to {
      -o-transform: scale(1.2, 1.2);
    }
  }
  
  @keyframes zoom {
    from {
      transform: scale(1, 1);
    }
  
    to {
      transform: scale(1.2, 1.2);
    }
  }
  
  .carousel-inner .item > .slider-thumb {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
  }
  
  .banner-area .carousel-zoom .slider-thumb {
    height: 100%;
    position: absolute;
    width: 100%;
  }
  
  #particles-js,
  #ripple {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .banner-area .carousel-control {
    background: transparent none repeat scroll 0 0;
    font-size: 40px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
  }
  
  .banner-area .carousel-control.shadow {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    text-shadow: inherit;
    top: 50%;
    width: 50px;
    z-index: 1;
  }
  
  .banner-area .carousel-control.shadow::after {
    background: #1e2726 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .banner-area .carousel-control.left {
    left: -50px;
  }
  
  .banner-area:hover .carousel-control.left {
    left: 0;
  }
  
  .banner-area:hover .carousel-control.shadow.left {
    left: 20px;
  }
  
  .banner-area .carousel-control.right {
    right: -50px;
  }
  
  .banner-area:hover .carousel-control.right {
    right: 0;
  }
  
  .banner-area:hover .carousel-control.shadow.right {
    right: 20px;
  }
  
  /* Content */
  
  .banner-area.side-nav {
    padding: 200px 0;
  }
  
  .banner-area.half-bg::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 52%;
    z-index: -1;
    opacity: 0.5;
  }
  
  .banner-area .transparent-nav .content {
    padding-top: 60px;
  }
  
  .banner-area .content h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 25px;
  }
  
  .banner-area.text-small .content h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
  }
  
  .banner-area .content.include-typed h1 {
    font-size: 70px;
    font-weight: 900;
  }
  
  .banner-area .content.include-typed h2 {
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: capitalize;
  }
  
  .banner-area .content ul li {
    display: inline-block;
  }
  
  .banner-area .content ul li a {
    border: 1px solid #f4f4f4;
    display: inline-block;
    font-size: 18px;
    margin: 5px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    color: #8099FC;
    text-align: center;
  }
  
  .banner-area.sub-heading h4 {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
    display: inline-block;
    letter-spacing: 1px;
    padding: 8px 15px;
  }
  
  .banner-area .content h3 {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
  }
  
  .banner-area .heading-uppercase .content h1 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  .banner-area .text-center .content h1 {
    line-height: 1.2;
  }
  
  .banner-area .content h1 span {
    color: #8099FC;
  }
  
  .banner-area .content p {
    font-size: 18px;
    line-height: 30px;
  }
  
  .banner-area .content a {
    margin-top: 15px;
    margin-right: 8px;
  }
  
  .banner-area .text-right .content a {
    margin-left: 8px;
  }
  
  .banner-area .text-center .content a {
    margin: 15px 4px 0;
  }
  
  .banner-area .text-center.inc-top-heading .content a {
    margin: 5px 4px 0;
  }
  
  .banner-area .inc-top-heading h3 {
    text-transform: uppercase;
  }
  
  .banner-area .inc-top-heading a {
    margin-top: 5px;
  }
  
  .banner-area .text-center p {
    padding: 0 15%;
  }
  
  .banner-area .text-dark p {
    color: #232323;
  }
  
  .banner-area.simple-video .content a {
    float: left;
  }
  
  .banner-area.simple-video .content a.popup-youtube {
    left: 15px;
  }
  
  .banner-area.simple-video .content {
    padding-bottom: 15px;
  }
  
  .banner-thumb-carousel .item {
    position: relative;
  }
  
  .banner-area.content-double .banner-thumb-carousel .owl-dots {
    bottom: 10px;
    left: 0;
    margin-top: 0;
    position: absolute;
    width: 100%;
  }
  
  .banner-area.content-double .banner-thumb-carousel .owl-dots span {
    background: transparent none repeat scroll 0 0;
    border: 3px solid #8099FC;
    height: 15px;
    width: 15px;
  }
  
  .banner-area.content-double .banner-thumb-carousel .owl-dots .active span {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .banner-area .fixed-clients {
    bottom: 0;
    padding: 30px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  
  .banner-area .content-carousel .owl-dots .owl-dot span {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #ffffff;
    height: 15px;
    width: 15px;
  }
  
  .banner-area .content-carousel .owl-dots {
    margin-top: 30px !important;
    position: absolute;
    right: 0;
    height: auto;
  }
  
  .banner-area .content-carousel .owl-dots .owl-dot.active span {
    background: #ffffff none repeat scroll 0 0;
  }
  
  .banner-area.side-banner .content {
    padding: 250px 0;
  }
  
  .banner-area.content-double .banner-thumb-carousel .owl-nav {
      margin: 0;
  }
  .banner-area.content-double .banner-thumb-carousel .owl-nav .owl-prev, 
  .banner-area.content-double .banner-thumb-carousel .owl-nav .owl-next {
      background: transparent none repeat scroll 0 0;
      color: #ffffff;
      font-size: 20px;
      height: 40px;
      left: 0;
      line-height: 40px;
      margin: -20px 0 0;
      padding: 0;
      position: absolute;
      top: 50%;
      width: 40px;
  }
  .banner-area.content-double .banner-thumb-carousel .owl-nav .owl-prev:hover, 
  .banner-area.content-double .banner-thumb-carousel .owl-nav .owl-next:hover {
      background: transparent none repeat scroll 0 0;
      color: #ffffff;
  }
  .banner-area.content-double .banner-thumb-carousel .owl-nav .owl-next {
      left: auto;
      right: 0;
  }
  
  
  .banner-area.auto-height .banner-thumb-carousel .owl-nav {
      margin: 0;
  }
  .banner-area.auto-height .banner-thumb-carousel .owl-nav .owl-prev, 
  .banner-area.auto-height .banner-thumb-carousel .owl-nav .owl-next {
      background: transparent none repeat scroll 0 0;
      color: #ffffff;
      font-size: 20px;
      height: 40px;
      left: 0;
      line-height: 40px;
      margin: -20px 0 0;
      padding: 0;
      position: absolute;
      top: 50%;
      width: 40px;
  }
  .banner-area.auto-height .banner-thumb-carousel .owl-nav .owl-prev:hover, 
  .banner-area.auto-height .banner-thumb-carousel .owl-nav .owl-next:hover {
      background: transparent none repeat scroll 0 0;
      color: #ffffff;
  }
  .banner-area.auto-height .banner-thumb-carousel .owl-nav .owl-next {
      left: auto;
      right: 0;
  }
  .banner-area.auto-height .wavesshape {
    z-index: 9;
  }
  
  .banner-area.auto-height .content {
      padding-top: 160px;
  }
  
  .banner-area.auto-height .thumb {
      margin-top: 50px;
  }
  
  
  /* Banner Form */
  
  .banner-area form {
    margin: 30px auto auto;
    position: relative;
    width: 450px;
  }
  
  .banner-area form .input-group {
    width: 100%;
  }
  
  .banner-area form button {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #8099FC;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 60px;
    padding: 0 30px;
    position: absolute;
    right: -1px;
    text-transform: uppercase;
    top: 0;
    z-index: 9;
  }
  
  .banner-area form input {
    background: transparent none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
    box-shadow: inherit;
    color: #ffffff;
    min-height: 60px;
    padding-left: 20px;
  }
  
  .banner-area form input::-webkit-input-placeholder {
   /* Chrome/Opera/Safari */
    color: #ffffff;
  }
  
  .banner-area form input::-moz-placeholder {
   /* Firefox 19+ */
    color: #ffffff;
  }
  
  .banner-area form input:-ms-input-placeholder {
   /* IE 10+ */
    color: #ffffff;
  }
  
  .banner-area form input:-moz-placeholder {
   /* Firefox 18- */
    color: #ffffff;
  }
  
  /* Shape */
  .banner-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .banner-area .wavesshape {
    bottom: -2px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
  }
  
  .side-bg {
    height: 100%;
    position: absolute;
    right: 30px;
    top: 0;
    width: 40%;
  }
  
  .navbar-transparent .side-bg {
    top: 40px;
  }
  
  .side-bg img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  
  .particle-bg::before, .particle-bg::after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .particle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  
  
  
  
  /* ============================================================== 
       # Video Button Play
  =================================================================== */
  
  .video-play-button {
    color: #8099FC;
    font-size: 30px;
    height: 80px;
    left: 50%;
    line-height: 80px;
    padding-left: 7px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    width: 80px;
    z-index: 1;
  }
  
  .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
  }
  
  .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
  }
  
  .video-play-button.theme:before,
  .video-play-button.theme:after {
    background: #8099FC repeat scroll 0 0;
  }
  
  @-webkit-keyframes pulse-border {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
  
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes pulse-border {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
  
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  
  .video-play-button i {
    color: #8099FC;
    display: block;
    line-height: 80px;
    position: relative;
    z-index: 3;
  }
  
  .video-play-button.theme i {
    color: #ffffff;
  }
  
  .video-play-button.not-fixed {
    color: #ffffff;
    display: inline-block;
    height: 55px;
    left: inherit;
    position: inherit;
    top: inherit;
    transform: inherit;
    width: 55px;
    font-size: 20px;
    padding-left: 4px;
  }
  
  .video-play-button.not-fixed::after,
  .video-play-button.not-fixed::before {
    background: #8099FC none repeat scroll 0 0;
    height: 55px;
    width: 55px;
  }
  
  .video-play-button.not-fixed i {
    color: #ffffff;
    line-height: 55px;
  }
  
  
  /* ============================================================== 
       # Features
  =================================================================== */
  
  
  .features-area.half-bg {
    position: relative;
    z-index: 1;
  }
  
  .features-area.half-bg::before {
    background: #f7f7f7 none repeat scroll 0 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  
  .features-area.inc-border {
    border-top: 1px solid #f4f4f4;
  }
  
  .feature-items .single-item {
    margin-bottom: 30px;
  }
  
  .feature-items .item {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 67px 40px 64px;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
  }
  
  .feature-items.icon-circle .item {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .feature-items.icon-circle .item::before {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 300px;
    left: 0;
    margin-left: -150px;
    position: absolute;
    top: -150px;
    width: 300px;
    z-index: -1;
  }
  
  .feature-items.icon-circle .owl-item:nth-child(2n) .item {
    border: 1px solid #8099FC;
  }
  
  .feature-items.icon-circle .item > i {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-size: 50px;
    height: 100px;
    line-height: 100px;
    position: relative;
    text-align: center;
    width: 100px;
    z-index: 1;
    color: #232323;
  }
  
  .feature-items.icon-circle .item > i::after {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
    z-index: -1;
  }
  
  .feature-items .item i {
    color: #8099FC;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 30px;
  }
  
  .feature-items .icon {
    position: relative;
    z-index: 1;
  }
  
  .feature-items .icon span {
    font-family: "Poppins",sans-serif;
    font-size: 100px;
    font-weight: 900;
    left: 0;
    line-height: 70px;
    opacity: 0.06;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  
  .feature-items .icon-shadow {
    bottom: 15px;
    position: absolute;
    right: 30px;
  }
  
  .feature-items .icon-shadow i {
    margin: 0;
    opacity: 0.09;
  }
  
  .feature-items .item h4 {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
  }
  
  .feature-items .item a {
    color: #8099FC;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    text-decoration: underline;
    text-transform: uppercase;
    z-index: 1;
  }
  
  .feature-items .item a:hover {
    text-decoration: none;
  }
  
  .features-area .feature-items .owl-nav {
    margin: 0;
  }
  
  .features-area .feature-items .owl-nav .owl-prev, 
  .features-area .feature-items .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
  }
  
  .features-area.bg-fixed .feature-items .owl-nav .owl-prev, 
  .features-area.bg-fixed .feature-items .owl-nav .owl-next {
    color: #ffffff;
  }
  
  .features-area .feature-items .owl-nav .owl-prev:hover, 
  .features-area .feature-items .owl-nav .owl-next:hover {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
  }
  
  .features-area .feature-items .owl-nav .owl-next {
    left: auto;
    right: -50px;
  }
  
  .feature-items .item ul li i {
    font-size: 14px;
    margin: 0;
  }
  
  .feature-items .item ul {
    margin-bottom: 15px;
  }
  
  .feature-items .item li {
    font-family: "Poppins",sans-serif;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
  }
  
  .feature-items .item li::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 0;
    color: #999999;
  }
  
  .feature-items .item li:last-child {
    margin-bottom: 0;
  }
  
  /* Special Features */
  .special-area.default-padding {
    padding-bottom: 30px;
  }
  .special-area .feature-items .single-item {
    margin-bottom: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .special-area .info {
    margin-left: auto;
  }
  .special-area .reverse .info {
    margin-left: 0;
    margin-right: auto;
  }
  .special-area .info span {
      color: #666666;
      display: block;
      font-family: "Poppins",sans-serif;
      font-size: 50px;
      font-weight: 800;
      letter-spacing: 1px;
      line-height: 1.2;
      margin-bottom: 10px;
      opacity: 0.3;
  }
  .special-area .info h4 {
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
  }
  .special-area .info h2 {
      font-weight: 600;
  }
  .special-area .info h3 {
    border-bottom: 1px solid;
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
  }
  .special-area .info a {
      margin-top: 10px;
  }
  .special-area .info ul li {
      display: block;
      font-size: 16px;
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      z-index: 1;
  }
  .special-area .info ul {
      margin-bottom: 20px;
      margin-top: 25px;
  }
  .special-area .info ul li:last-child {
      margin-bottom: 0;
  }
  .special-area .info ul li::after {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      left: 0;
      position: absolute;
      top: 0;
  }
  .special-area .feature-items .single-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  /* ============================================================== 
       # Startup Landing Features
  =================================================================== */
  .wf-feature-items .thumb img {
    margin: auto;
  }
  
  .wf-feature-items .thumb {
    text-align: center;
    z-index: 9;
  }
  
  .wf-feature-items .info .content {
    border-left: 1px solid #e7e7e7;
    padding-left: 30px;
    position: relative;
  }
  
  .wf-feature-items .info h4 {
    color: #8099FC;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .wf-feature-items .info h2 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .wf-feature-items .info h2::after {
    background: #e7e7e7 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: -30px;
    position: absolute;
    width: 100%;
  }
  
  .wf-feature-items .info h2::before {
    background: #8099FC none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
    z-index: 1;
  }
  
  .wf-feature-items .info ul {
    margin-top: 25px;
  }
  
  .wf-feature-items .info a {
    margin-top: 25px;
  }
  
  .wf-feature-items .info ul li {
    border-bottom: 1px solid #f4f4f4;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 35px;
    position: relative;
    z-index: 1;
  }
  
  .wf-feature-items .info ul li::before {
    color: #666666;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    left: 0;
    position: absolute;
    top: -5px;
  }
  
  .wf-feature-items .info ul li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .wf-feature-items .info ul li h4, .wf-feature-items .info ul li h5 {
    color: #666666;
    font-weight: 500;
  }
  
  .wf-feature-items .info ul li h5 {
    text-transform: uppercase;
  }
  
  .wf-feature-items .info ul li p:last-child {
    margin-bottom: 0;
  }
  
  .wfix-features-area .wf-feature-items .owl-nav {
    margin: 0;
  }
  
  .wfix-features-area .owl-nav .owl-prev, 
  .wfix-features-area .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
    font-size: 30px;
    height: 40px;
    left: -30px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
  }
  
  .wfix-features-area .owl-nav .owl-prev:hover, 
  .wfix-features-area .owl-nav .owl-next:hover {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
  }
  
  .wfix-features-area .owl-nav .owl-next {
    left: auto;
    right: -30px;
  }
  
  /* ============================================================== 
       # Work Porcess
  =================================================================== */
  .work-process-area .work-process-items .single-item {
    background-clip: border-box;
    background-color: #ffffff;
    background-image: none;
    background-origin: padding-box;
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    border-right: 1px solid #ffffff;
    overflow: hidden;
    padding: 67px 40px 64px;
    position: relative;
    z-index: 1;
  }
  
  .work-process-area .work-process-items .single-item:nth-child(2n)::after {
    bottom: auto;
    top: 0;
  }
  
  .work-process-area .work-process-items .single-item:last-child {
    border: medium none;
  }
  
  .work-process-area .work-process-items .single-item i {
    color: #ffffff;
    display: inline-block;
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .work-process-area .work-process-items .single-item h4 {
    font-weight: 600;
  }
  
  .work-process-area .work-process-items .single-item p:last-child {
    margin-bottom: 0;
  }
  
  .work-process-area .work-process-items .single-item:nth-child(2n) {
    position: relative;
    z-index: 1;
  }
  
  .work-process-area .work-process-items .single-item::before {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .work-process-area .work-process-items .single-item:nth-child(2n)::before {
    background: #8099FC none repeat scroll 0 0;
  }
  
  
  
  /* ============================================================== 
       # About
  =================================================================== */
  
  .about-area .thumb {
    position: relative;
    z-index: 1;
  }
  
  .about-area .thumb::after {
    background: #f4f4f4 none repeat scroll 0 0;
    content: "";
    height: 200%;
    left: -50%;
    position: absolute;
    top: -25%;
    width: 100%;
    z-index: -1;
  }
  
  .about-area.shadow-theme .thumb::after {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .about-area.shadow-less .thumb::after {
    display: none;
  }
  
  .about-area {
    overflow: hidden;
  }
  
  .about-area .container-full .row {
    display: flex;
  }
  
  .about-area .container-full .content {
    max-width: 600px;
  }
  
  .about-area.full-width .container-full .content {
    padding: 80px 0 80px 30px;
  }
  
  .about-area .thumb img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  .about-area .content h4 {
    color: #8099FC;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .about-area .content h2 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  
  .about-area .content a {
    margin-top: 10px;
    margin-right: 10px;
  }
  
  .about-area .container-full .about-items {
    align-items: center;
    display: flex;
  }
  
  .about-area blockquote {
    border-left: 2px solid #8099FC;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 30px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
  }
  
  .about-area blockquote::after {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 120px;
    left: 15px;
    letter-spacing: -10px;
    opacity: 0.3;
    position: absolute;
    top: -45px;
  }
  
  .about-area blockquote p {
    color: #232323;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 1px;
  }
  
  .about-area blockquote p span {
    color: #8099FC;
  }
  
  .about-area .social ul li {
    display: inline-block;
  }
  
  .about-area .social ul li a {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin: 0 5px 5px 0;
    text-align: center;
    width: 50px;
  }
  
  .about-area ul {
    margin-bottom: 20px;
    margin-top: 30px;
  }
  
  .about-area .achivement-items ul {
    margin-bottom: 0;
  }
  
  .about-area .address-info ul {
    margin-top: 20px;
  }
  
  .about-area .info .content li {
    border-bottom: 1px solid #f4f4f4;
    display: block;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .about-area .info .content li span {
    text-align: right;
  }
  
  .about-area .info .content li i {
    color: #8099FC;
    min-width: 20px;
  }
  
  .about-area .info .content li:last-child {
    border-bottom: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .about-area .info .achivement-items li {
    border-bottom: medium none navy;
    border-right: 1px solid #f4f4f4;
    display: inline-block;
    margin-right: 30px;
    padding-right: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .about-area .info .achivement-items li:last-child {
    border: medium none;
  }
  
  
  /* ============================================================== 
       # Experiance
  =================================================================== */
  .experiance-area .tab-items {
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
  }
  
  .experiance-area .tab-content .info-details > .item {
    margin-bottom: 30px;
  }
  
  .experiance-area .tab-content .info-details > .item:last-child {
    margin-bottom: 0;
  }
  
  .experiance-area .tab-items .nav-pills a {
    background: #f4f4f4 none repeat scroll 0 0;
    border: 1px solid #f4f4f4;
    border-radius: inherit;
    color: #8099FC;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 5px;
    padding: 15px 30px;
    text-transform: uppercase;
  }
  
  .experiance-area .tab-items .nav-pills {
    position: relative;
    top: -30px;
  }
  
  .experiance-area .tab-items .nav-pills .active a {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
  }
  
  .experiance-area .tab-items .timer {
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  .experiance-area .tab-items .medium {
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .experiance-area .tab-items .timer::after {
    color: #8099FC;
    content: "+";
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    right: -15px;
    top: 12px;
  }
  
  .experiance-area .tab-content .skills-section .progress {
    border-radius: inherit;
    height: 5px;
    margin-bottom: 25px;
  }
  
  .experiance-area .tab-content .skills-section .progress-box:last-child .progress {
    margin-bottom: 0;
  }
  
  .experiance-area .tab-content .skills-section .progress .progress-bar {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .experiance-area .tab-content .skills-section .progress-box h5 {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .experiance-area .info-details h2 {
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.3;
  }
  
  .experiance-area .info-details h3,
  .experiance-area .info-details h4 {
    font-weight: 600;
  }
  
  .experiance-area .info-details .item:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .experiance-area .info-details .item p:last-child {
    margin-bottom: 0;
  }
  
  .experiance-area .info-details .skills-section {
    margin-top: 30px;
  }
  
  .experiance-area .info-details .item img {
    margin-bottom: 20px;
  }
  
  
  /* ============================================================== 
       # Portfolio
  =================================================================== */
  
  .portfolio-area.default-padding {
    padding-bottom: 65px;
  }
  
  .portfolio-area .portfolio-items.col-3 .pf-item {
    float: left;
    padding: 15px;
    width: 33.3333%;
  }
  
  .portfolio-area .portfolio-items.col-2 .pf-item {
    float: left;
    padding: 15px;
    width: 50%;
  }
  
  .portfolio-area .portfolio-items.col-4 .pf-item {
    float: left;
    padding: 15px;
    width: 25%;
  }
  
  .portfolio-area .gallery-top {
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
  }
  
  .portfolio-area .mix-item-menu button.active {
    color: #8099FC;
  }
  
  .portfolio-area .mix-item-menu {
    line-height: 45px;
  }
  
  .portfolio-area .mix-item-menu button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: inherit;
    color: #232323;
    display: inline-block;
    float: none;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    margin-right: 20px;
    position: relative;
    text-transform: uppercase;
  }
  
  
  /* Portfolio Effects */
  
  .pf-effects {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .portfolio-area .pf-item .item-effect::after {
    background: #232323 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  .pf-effects *,
  .pf-effects:before,
  .pf-effects:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .pf-effects .title {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
  }
  
  .pf-effects h3 {
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .pf-effects h4 {
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
  }
  
  .pf-effects h3,
  .pf-effects h4 {
    opacity: 0;
    color: #ffffff;
    font-weight: 500;
  }
  
  .pf-effects h3 a,
  .pf-effects h4 a {
    color: #ffffff;
  }
  
  .pf-effects img {
    max-width: 100%;
    position: relative;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  .pf-effects:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  
  .portfolio-items-area .pf-item .pf-effects:hover img {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background-position: top;
    -webkit-filter: grayscale(0.4) blur(2px);
    filter: grayscale(0.4) blur(2px);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.45s;
    -o-transition-duration: 0.45s;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
  }
  
  .portfolio-items-area .pf-item .pf-effects:hover img {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }
  
  .portfolio-items-area .pf-item .pf-effects img {
    display: inline-block;
    -moz-transform: scale(1.09, 1.09);
    -ms-transform: scale(1.09, 1.09);
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  
  .pf-effects:hover:before,
  .pf-effects.hover:before,
  .pf-effects:hover:after,
  .pf-effects.hover:after {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  
  .pf-effects:hover:before,
  .pf-effects.hover:before {
    width: 40px;
  }
  
  .pf-effects:hover:after,
  .pf-effects.hover:after {
    height: 40px;
  }
  
  .pf-effects:hover h3,
  .pf-effects:hover h4 {
    opacity: 1;
  }
  
  .pf-effects:hover h3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  .pf-effects:hover h4 {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
  
  .portfolio-area .pf-item .popup {
    left: 30px;
    position: absolute;
    bottom: 30px;
    z-index: 1;
  }
  
  .portfolio-items-area .pf-item .popup a {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #8099FC;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    margin: 0 1px;
    opacity: 0;
    text-align: center;
    transition-delay: 0.2s;
    transition-duration: 0.35s;
    transition-property: all;
    width: 45px;
  }
  
  .portfolio-items-area .pf-item .pf-effects:hover .popup a {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  
  
  /* ============================================================== 
       # Services
  =================================================================== */
  
  
  .services-area .equal-height {
    position: relative;
    z-index: 1;
  }
  
  .services-area .item {
    padding: 30px 15px;
  }
  
  .services-area .item h4 {
    font-weight: 500;
  }
  
  .services-area .item p:last-child {
    margin-bottom: 0;
  }
  
  .services-area .equal-height::after {
    background: #f4f4f4 none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
  }
  
  .services-area .equal-height::before {
    background: #f4f4f4 none repeat scroll 0 0;
    content: "";
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
  }
  
  .services-area .services-items {
    overflow: hidden;
  }
  
  .services-area .item i {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-size: 30px;
    height: 80px;
    line-height: 80px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 80px;
    z-index: 1;
  }
  
  .services-area .item:hover i {
    background-color: #8099FC;
    color: #ffffff;
  }
  
  .services-area.full {
    padding-bottom: 25px;
  }
  
  .services-area.full .services-box .services-items .equal-height {
    margin-top: 0;
    margin-bottom: 50px;
  }
  
  .services-area.full .services-box .services-items .equal-height i {
    color: #ffffff;
    background-color: #8099FC;
  }
  
  .services-area.full .services-box .services-items .equal-height:nth-child(1), 
  .services-area.full .services-box .services-items .equal-height:nth-child(2) {
    margin-top: 0;
    margin-bottom: 50px;
  }
  
  .services-area.content-flex .thumb, 
  .services-area.content-flex .services-box {
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
  
  .webfix-services-area.full-items {
    padding-bottom: 45px;
  }
  
  .webfix-services-area .services-items {
    display: inline-block;
    position: relative;
    top: -70px;
    z-index: 9;
    margin-bottom: -30px;
  }
  
  .webfix-services-area.full-items .services-items {
    margin: 0;
    top: inherit;
  }
  
  .webfix-services-area .services-items .single-item {
    margin-bottom: 30px;
  }
  
  .webfix-services-area .services-items .item {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 67px 40px 64px;
    position: relative;
    z-index: 1;
  }
  
  .webfix-services-area .services-items .item i {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 40px;
    height: 90px;
    line-height: 90px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    width: 90px;
    z-index: 1;
  }
  
  .services-area .services-box .services-items .equal-height:nth-child(2) i, 
  .services-area .services-box .services-items .equal-height:nth-child(3) i,
  .services-area .services-box .services-items .equal-height:nth-child(6) i {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
  }
  
  .webfix-services-area .services-items .item:hover i::after {
    border: 15px solid #8099FC;
  }
  
  .webfix-services-area .services-items .item i::after {
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 110px;
    left: 0;
    line-height: 110px;
    margin-left: -10px;
    margin-top: -10px;
    position: absolute;
    top: 0;
    width: 110px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
  }
  
  .webfix-services-area .services-items .item h4 {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
  }
  
  .webfix-services-area .services-items .item p:last-child {
    margin-bottom: 0;
  }
  
  .webfix-services-area .services-items .item a {
    color: #8099FC;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    text-decoration: underline;
    text-transform: uppercase;
    z-index: 1;
  }
  
  .webfix-services-area .services-items .item .icon {
    position: relative;
    z-index: 1;
  }
  
  .webfix-services-area .services-items .item .icon span {
    font-family: "Poppins",sans-serif;
    font-size: 100px;
    font-weight: 900;
    left: 0;
    line-height: 70px;
    opacity: 0.06;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  
  .webfix-services-area.text-center .services-items .item .icon span {
    left: 50%;
    margin-top: -10px;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  
  
  /* ============================================================== 
       # Overview
  =================================================================== */
  .overview-area .tab-navigation .nav-pills li {
    display: block;
    float: none;
    margin: 0;
  }
  
  .overview-area .tab-navigation, 
  .overview-area .tab-content {
    display: table-cell;
    vertical-align: top;
  }
  
  .overview-area .tab-content {
    padding-left: 20px;
  }
  
  .overview-area .tab-navigation .nav-pills li a {
    background: #ffffff none repeat scroll 0 0;
    color: #8099FC;
    font-weight: 600;
    margin: 0 0 15px;
    padding: 20px 50px;
    text-transform: uppercase;
    -moz-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  }
  
  .overview-area .tab-navigation .nav-pills li.active a {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
  }
  
  .overview-area .tab-content .info {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  
  .overview-area .tab-content .info h2,
  .overview-area .tab-content .info h3,
  .overview-area .tab-content .info h4 {
    font-weight: 600;
  }
  
  .overview-area .tab-content .info span {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    height: 50px;
    letter-spacing: 1px;
    line-height: 50px;
    margin-right: 10px;
    text-align: center;
    width: 50px;
  }
  
  .overview-area .tab-content .info img {
    margin-bottom: 30px;
  }
  
  .overview-area .tab-content .info p:last-child {
    margin-bottom: 0;
  }
  
  .overview-area .tab-content .thumb {
    position: relative;
  }
  
  .overview-area .tab-content .video-play-button::before {
    height: 40px;
    width: 40px;
  }
  
  .overview-area .tab-content .video-play-button::after {
    height: 40px;
    width: 40px;
  }
  
  .overview-area .tab-content .video-play-button {
    font-size: 14px;
    height: 40px;
    left: auto;
    line-height: 40px;
    padding-left: 0;
    right: 20px;
    top: 20px;
    transform: inherit;
    width: 40px;
  }
  
  .overview-area .tab-content .video-play-button i {
    line-height: 40px;
  }
  
  
  /* ============================================================== 
       # Team
  =================================================================== */
  .team-area.bg-fixed {
    position: relative;
    z-index: 1;
  }
  
  .team-area.bg-fixed::before {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .team-area .single-item {
    margin-bottom: 30px;
  }
  
  .team-area .item {
    background-color: #ffffff;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
  }
  
  .team-area .item::after {
    background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 300px;
    left: 0;
    position: absolute;
    top: -150px;
    transform: skewY(20deg);
    -webkit-transform: skewY(20deg);
    -moz-transform: skewY(20deg);
    -ms-transform: skewY(20deg);
    -o-transform: skewY(20deg);
    width: 100%;
    z-index: -1;
  }
  
  .team-area .item h4 {
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
  }
  
  .team-area .item span {
    color: #8099FC;
    display: block;
    font-family: "Poppins",sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .team-area .item ul {
    margin-top: 20px;
  }
  
  .team-area .item li {
    display: inline-block;
  }
  
  .team-area .item li a {
    border: 1px solid #f4f4f4;
    color: #8099FC;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    text-align: center;
    width: 40px;
  }
  
  .team-area .item li a:hover {
    color: #ffffff;
    background: #8099FC;
    border: 1px solid transparent;
  }
  
  .team-area .item .thumb {
    position: relative;
    height: 200px;
    width: 200px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    margin: auto auto 20px;
  }
  
  .team-area .item .thumb img {
    backface-visibility: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    padding: 6px;
    vertical-align: top;
  }
  
  .team-area .team-carousel.team-items .owl-nav {
    margin: 0;
  }
  
  .team-area .team-carousel.team-items .owl-nav .owl-prev, 
  .team-area .team-carousel.team-items .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
    font-size: 30px;
    height: 40px;
    left: -50px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
  }
  
  .team-area .team-carousel.team-items .owl-nav .owl-prev:hover, 
  .team-area .team-carousel.team-items .owl-nav .owl-next:hover {
    background: transparent none repeat scroll 0 0;
    color: #2154cf;
  }
  
  .team-area .team-carousel.team-items .owl-nav .owl-next {
    left: auto;
    right: -50px;
  }
  
  
  /* Team Single */
  
  .team-single-area .thumb {
    position: relative;
  }
  
  .team-single-area .thumb .social {
    bottom: 30px;
    position: absolute;
    right: 30px;
  }
  
  .team-single-area .thumb .social li {
    display: inline-block;
  }
  
  .team-single-area .thumb .social li a {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #8099FC;
    display: inline-block;
    height: 40px;
    line-height: 42px;
    margin-left: 3px;
    text-align: center;
    width: 40px;
  }
  
  .team-single-area .info h2 {
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .team-single-area .info h4,
  .team-single-area .info h3 {
    font-weight: 600;
  }
  
  .team-single-area .info h4 {
    color: #8099FC;
  }
  
  .team-single-area .info ul li {
    border-bottom: 1px solid #f4f4f4;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .team-single-area .info ul li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .team-single-area .info ul li span {
    color: #8099FC;
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .team-single-area .info ul li p:last-child {
    margin: 0;
  }
  
  /* ============================================================== 
       # Parallax Effects
  =================================================================== */
  .parallax {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .parallax-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .parallax-shape-rectangle {
    display: block;
    margin: 40% 0 0 1%;
    text-align: center;
    border: solid 20px #8099FC;
    opacity: 0.5;
    height: 300px;
    width: 300px;
    z-index: -1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  
  .parallax-rectangle-shadow {
    display: block;
    margin: 40% 0 0 90%;
    text-align: center;
    border: solid 20px #ff5f49;
    height: 300px;
    width: 300px;
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    z-index: -1;
    opacity: 0.5;
  }
  
  .parallax-shape-square {
    display: block;
    margin: 10% 0 0 5%;
    border: solid 20px #ff5f49;
    opacity: 0.5;
    height: 120px;
    width: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  
  .parallax-square-shadow {
    display: block;
    margin: 25% 0 0 33%;
    border: solid 5px rgba(0, 0, 0, 0.1);
    height: 30px;
    width: 30px;
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  
  .parallax-shape-circle {
    display: block;
    margin: 15% 0 0 85%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: solid 9px #8099FC;
    opacity: 0.5;
    height: 120px;
    width: 120px;
  }
  
  .parallax-circle-shadow {
    display: block;
    margin: 33% 0 0 70%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: solid 4px rgba(0, 0, 0, 0.1);
    height: 30px;
    width: 30px;
  }
  
  /* ============================================================== 
       # Achivement
  =================================================================== */
  .achivement-items .fun-fact i {
    font-size: 100px;
    left: 50%;
    opacity: 0.05;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  
  .achivement-items .fun-fact {
    border: 1px solid #f4f4f4;
    padding: 50px 30px;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .achivement-items .item {
    margin-top: 30px;
  }
  
  .achivement-items .item:first-child, 
  .achivement-items .item:nth-child(2) {
    margin-top: 0;
  }
  
  .full-width .achivement-items {
    margin: 0;
  }
  
  .full-width .achivement-items .item:first-child, 
  .full-width .achivement-items .item:nth-child(2),
  .full-width .achivement-items .item {
    margin-bottom: 30px;
    margin-top: 0;
  }
  
  .about-area .achivement-items {
    margin-top: 30px;
  }
  
  .about-area .achivement-items .timer {
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
  }
  
  .about-area .achivement-items .medium {
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
  }
  
  .about-area .achivement-items .timer::after {
    color: #8099FC;
    content: "+";
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    right: -15px;
    top: 12px;
  }
  
  /* ============================================================== 
       # Faq Accordion
  =================================================================== */
  .faq-area {
    overflow: hidden;
  }
  
  .faq-items .panel-group,
  .acd-items .panel-group {
    margin-bottom: 0;
  }
  
  .faq-area .faq-items {
    margin-top: -15px;
  }
  
  .acd-items .panel-heading .panel-title a span {
    background: #ff5a6e none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 30px;
  }
  
  .acd-items .panel-heading .panel-title a {
    color: #232323;
    display: block;
    font-weight: 600;
    padding: 19px 0 20px 15px;
    position: relative;
    background-color: #ffffff;
  }
  
  .acd-items .panel-heading {
    padding: 0;
  }
  
  .faq-area .acd-items .panel-body {
    padding: 30px 15px;
  }
  
  .acd-items .panel.panel-default {
    border: 1px solid #f4f4f4;
    border-radius: inherit;
    box-shadow: inherit;
    margin: 0 0 10px;
  }
  
  .acd-items .panel.panel-default:last-child {
    margin-bottom: 0;
  }
  
  .acd-items .panel-body p:last-child {
    margin: 0;
  }
  
  .faq-items .panel-body {
    padding: 20px;
  }
  
  .faq-items .acd-items .panel .panel-body {
    border-color: #f4f4f4;
  }
  
  .acd-arrow .panel-group.symb .panel-heading a::after {
    content: "\f107";
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 17px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #232323;
  }
  
  .acd-arrow.left .panel-group.symb .panel-heading a::after {
    content: "\f01b" !important;
    font-size: 20px;
    position: absolute;
    right: auto;
    left: 10px;
    top: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .acd-arrow.left .panel-group.symb .panel-heading a.collapsed:after {
    content: "\f01a" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  .faq-area .faq-items .panel-group {
    margin: 0;
  }
  
  .acd-arrow .panel-group.symb .panel-heading a.collapsed:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  
  
  /* Services Single */
  
  .services-single-area .info h4 {
    color: #8099FC;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .services-single-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
  }
  
  .services-single-area .info a {
    margin-top: 15px;
  }
  
  .services-single-area .sidebar-item {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #f4f4f4;
    margin-bottom: 30px;
    padding: 30px;
  }
  
  .services-single-area .sidebar-item:last-child {
    margin-bottom: 0;
  }
  
  .services-single-area .sidebar-item .title h4 {
    font-weight: 500;
    margin-top: -5px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 20px;
  }
  
  .services-single-area .sidebar-item.link li {
    display: block;
    margin-bottom: 15px;
  }
  
  .services-single-area .sidebar-item.link li a {
    color: #666666;
    font-size: 16px;
  }
  
  .services-single-area .sidebar-item.link li:last-child {
    margin-bottom: 0;
  }
  
  .services-single-area .sidebar-item li {
    display: block;
    margin-bottom: 30px;
  }
  
  .services-single-area .sidebar-item li .icon, 
  .services-single-area .sidebar-item li span {
    display: table-cell;
    vertical-align: top;
  }
  
  .services-single-area .sidebar-item li span {
    padding-left: 15px;
  }
  
  .services-single-area .sidebar-item li .icon i.fa-clock, 
  .services-single-area .sidebar-item li .icon i.fa-envelope-open {
    font-weight: 500;
  }
  
  .services-single-area .sidebar-item li .icon i {
    color: #8099FC;
    display: inline-block;
    font-size: 50px;
  }
  
  .services-single-area .sidebar-item.project li span {
    float: left;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    padding: 0;
    text-transform: capitalize;
  }
  
  .services-single-area .sidebar-item.project li {
    margin-bottom: 15px;
    text-align: right;
  }
  
  .services-single-area .sidebar-item.project li:last-child {
    margin-bottom: 0;
  }
  
  
  /* ============================================================== 
       # Why Chose Us
  =================================================================== */
  .efficiency-area .info .nav-pills, 
  .efficiency-area .info .tab-content {
    display: table-cell;
    vertical-align: top;
  }
  
  .efficiency-area .info ul li {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    float: none;
  }
  
  .efficiency-area .efficiency-items .nav-pills {
    padding-right: 30px;
    min-width: 250px;
  }
  
  .efficiency-area .info ul li a {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    color: #666666;
    display: block;
    font-weight: 600;
    padding: 20px 30px;
    text-transform: uppercase;
  }
  
  .efficiency-area .info ul li.active a {
    background: #8099FC none repeat scroll 0 0;
    border-color: transparent;
    color: #ffffff;
  }
  
  .efficiency-area .tab-content h3 {
    font-weight: 600;
  }
  
  .efficiency-area .tab-content p:last-child {
    margin-bottom: 0;
  }
  
  .efficiency-area .tab-content ul li {
    font-size: 16px;
    line-height: 30px;
    padding-left: 26px;
    position: relative;
    z-index: 1;
  }
  
  .efficiency-area .tab-content ul li::after {
    color: #8099FC;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 0;
  }
  
  .efficiency-area ul li:last-child {
    margin-bottom: 0;
  }
  
  .efficiency-area .info ul li a i {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  /* ============================================================== 
       # Case Items
  =================================================================== */
  
  .case-area .equal-height {
    margin-bottom: 30px;
  }
  
  .case-area .case-items .item {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .case-area .case-items .item .info {
    background: #ffffff none repeat scroll 0 0;
    border-top: 5px solid #8099FC;
    padding: 30px;
    z-index: 1;
  }
  
  .case-area .case-items .item .info a {
    letter-spacing: 1px;
    text-transform: capitalize;
  }
  
  .case-area .case-items .item .info h4 {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .case-area .case-items .item .info span {
    color: #8099FC;
    font-family: "Poppins",sans-serif;
  }
  
  .case-area .thumb {
    overflow: hidden;
    position: relative;
  }
  
  .case-area .thumb .overlay {
    background: #8099FC none repeat scroll 0 0;
    bottom: -50px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    right: -60px;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    width: 100px;
  }
  
  .case-area .thumb .overlay a {
    color: #8099FC;
    display: inline-block;
    height: 100px;
    left: -50px;
    position: relative;
    text-align: center;
    top: -10px;
    transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    width: 100px;
  }
  
  .case-area .thumb .overlay a i {
    left: 50px;
    position: absolute;
    top: 60px;
  }
  
  
  /* ============================================================== 
       # Pricing Table 
  =================================================================== */
  .pricing-area.default-padding {
    padding-bottom: 75px;
  }
  
  .pricing-area.default-padding.solid {
    padding-top: 100px;
  }
  
  .pricing-area .site-heading {
    margin-bottom: 85px;
  }
  
  .pricing-area .single-item {
    padding: 0;
  }
  
  .pricing-item i {
    display: inline-block;
    font-size: 60px;
  }
  
  .pricing-item {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  .pricing-item.active {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    z-index: 1;
    border: 1px solid #8099FC;
  }
  
  .pricing-simple.spicy li.pricing-header span.badge {
    background: #906f40 none repeat scroll 0 0;
    color: #ffffff;
  }
  
  .pricing-simple li.pricing-header span.badge {
    background: #8099FC none repeat scroll 0 0;
    border-radius: inherit;
    color: #ffffff;
    font-family: "Montserrat",sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 0;
    position: absolute;
    right: -60px;
    text-transform: uppercase;
    top: 25px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    width: 200px;
  }
  
  .color-yellow .pricing-simple li.pricing-header span.badge {
    background: #ff9800 none repeat scroll 0 0;
  }
  
  .pricing-header h4 {
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .pricing-header img {
    margin: 20px 0;
  }
  
  .pricing-area .pricing-header i {
    display: inline-block;
    font-size: 60px;
    margin: 20px 0;
    text-align: center;
    color: #8099FC;
  }
  
  .pricing-area i {
    margin-bottom: 15px;
  }
  
  .pricing-item.active i {
    color: #8099FC;
  }
  
  .pricing-header h2 {
    background: #1d2024 none repeat scroll 0 0;
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    padding: 30px 0;
  }
  
  .pricing-item.active .pricing-header h2 {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .pricing-item h4 {
    border-bottom: 1px solid;
    display: inline-block;
    font-weight: 600;
  }
  
  .pricing-header h2 sup {
    bottom: auto;
    font-size: 26px;
    font-weight: 300;
    right: 5px;
    top: -15px;
  }
  
  .pricing-header h2 sub {
    bottom: 0;
    font-size: 18px;
    font-weight: 400;
  }
  
  .pricing-item .pricing-header span {
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .pricing-header {
    margin-bottom: 30px;
    padding: 0 !important;
  }
  
  .pricing-item .footer {
    padding: 25px 30px 30px;
  }
  
  .pricing-item li {
    line-height: 40px;
    padding: 0 30px;
    text-transform: capitalize;
  }
  
  .pricing-area.color-yellow .pricing-item.active .pricing-header {
    background: #ff9800 none repeat scroll 0 0;
  }
  
  .pricing-area .pricing-item.active .pricing-header span.badge {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
  }
  
  
  /* ============================================================== 
       # Work Process 
  =================================================================== */
  
  .work-process-area .work-pro-items {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  
  .work-process-area .work-pro-items::after {
    border-bottom: 1px dashed #e2e2e2;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: -1;
  }
  
  .work-pro-items .single-item:nth-child(2n) {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .work-pro-items .single-item:nth-child(2n) h4 {
    color: #8099FC;
  }
  
  .work-pro-items .item {
    padding: 30px;
  }
  
  .work-pro-items .single-item:last-child {
    border: medium none;
  }
  
  .work-pro-items p:last-child {
    margin: 0;
  }
  
  .work-pro-items .single-item .item .icon {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #8099FC;
    display: inline-block;
    font-size: 40px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    text-align: center;
    width: 100px;
  }
  
  
  .work-pro-items .single-item:nth-child(2n) .icon {
    background: #8099FC none repeat scroll 0 0;
    border-color: transparent;
    color: #ffffff;
  }
  
  .work-pro-items .single-item .item h4 {
    font-weight: 600;
    text-transform: capitalize;
  }
  
  /* ============================================================== 
       # Testimonials 
  =================================================================== */
  
  .testimonials-items {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    padding: 50px 30px 30px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials-items img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 100px;
    width: 100px;
  }
  
  .testimonials-items .quote {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    content: "";
    height: 50px;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px;
  }
  
  .testimonials-items .quote::after {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 80px;
    left: 10px;
    letter-spacing: -7px;
    position: absolute;
    top: -15px;
  }
  
  .testimonials-items h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
  }
  
  .testimonials-items .item > span {
    color: #8099FC;
    display: inline-block;
    font-family: "Poppins",sans-serif;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials-items .item > span::after {
    background: #8099FC none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
  }
  
  .testimonials-area .testimonials-items .owl-dots .owl-dot span {
    background: transparent none repeat scroll 0 0;
    border: 3px solid #e7e7e7;
    height: 15px;
    width: 15px;
  }
  
  .testimonials-area .testimonials-items .owl-dots .owl-dot.active span {
    background: #8099FC none repeat scroll 0 0;
    border-color: #8099FC;
  }
  
  
  
  
  /* ============================================================== 
       # Blog
  =================================================================== */
  
  .blog-area .single-item {
    margin-bottom: 30px;
  }
  
  .blog-area.full-blog .single-item {
    margin-bottom: 50px;
  }
  
  .blog-area .item > .content {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px 30px 30px;
    z-index: 9;
  }
  
  .blog-area .item .content .author {
    align-items: center;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .blog-area .item .content .author img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 60px;
    width: 60px;
  }
  
  .blog-area .item .content .author .info {
    padding-left: 15px;
  }
  
  .blog-area .item .content .author .info h5 {
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  
  .blog-area .content h2, 
  .blog-area .content h3, 
  .blog-area .content h4 {
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .blog-area .content h2,
  .blog-area .content h3 {
    font-weight: 600;
  }
  
  .blog-area .item > .thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .blog-area .item > .thumb::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: -40px;
    content: "";
    height: 70px;
    left: 0;
    position: absolute;
    transform: skewY(-5deg);
    -webkit-transform: skewY(-5deg);
    -moz-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    -o-transform: skewY(-5deg);
    width: 100%;
  }
  
  .blog-area.full-blog .item > .thumb::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: -70px;
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    transform: skewY(-3deg);
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    -o-transform: skewY(-3deg);
    width: 100%;
  }
  
  .blog-area .single-item .post-type {
    background: rgba(98, 59, 204, 0.7) none repeat scroll 0 0;
    bottom: 15px;
    color: #ffffff;
    display: block;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    left: 30px;
    padding: 15px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 80px;
  }
  
  .blog-area .item .thumb .tags {
    bottom: 15px;
    left: 30px;
    position: absolute;
  }
  
  .blog-area .item .thumb .tags a {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    color: #ffffff;
    float: left;
    font-size: 12px;
    margin-right: 5px;
    padding: 2px 15px;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
  }
  
  .blog-area .bottom-info a:last-child {
    float: right;
  }
  
  .blog-area .bottom-info a {
    color: #666666;
    text-transform: uppercase;
  }
  
  .blog-area .bottom-info {
    border-top: 1px solid #e7e7e7;
    margin-top: 15px;
    padding-top: 12px;
  }
  
  .blog-area .sidebar p:last-child {
    margin-bottom: 0;
  }
  
  .blog-area .sidebar .sidebar-info h4 {
    font-weight: 600;
    margin-top: 20px;
    text-transform: capitalize;
  }
  
  .blog-area.left-sidebar .blog-content {
    float: right;
  }
  
  .blog-area .top-info .share {
    position: absolute;
    right: 0;
    top: 5px;
  }
  
  .blog-area .top-info {
    position: relative;
  }
  
  .blog-area .top-info .share li {
    display: inline-block;
  }
  
  .blog-area .top-info .share > i, 
  .blog-area .top-info .share ul {
    display: inline-block;
  }
  
  .blog-area .top-info .share > i {
    display: inline-block;
    font-size: 20px;
    margin: 0 7px 0 0;
    padding: 8px 0;
  }
  
  .blog-area .top-info .share li a i {
    margin: 0;
  }
  
  .blog-area .top-info .share li a {
    background: #2154cf none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
  }
  
  .blog-area .top-info .share li {
    margin-left: 5px;
    margin-right: 0;
  }
  
  .blog-area .top-info .share li.twitter a {
    background-color: #00b6f1;
  }
  
  .blog-area .top-info .share li.pinterest a {
    background-color: #bd081c;
  }
  
  .blog-area .top-info .share li.facebook a {
    background-color: #3b5998;
  }
  
  .blog-area .top-info .share li.g-plus a {
    background-color: #df4a32;
  }
  
  .blog-area .top-info .share li.vimeo a {
    background-color: #1ab7ea;
  }
  
  .blog-area .top-info .share li.instagram a {
    background-color: #cd486b;
  }
  
  .blog-area .item blockquote {
    background: #8099FC none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    font-size: 15px;
    padding: 50px;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .blog-area .item blockquote::after {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 180px;
    left: 80px;
    letter-spacing: -15px;
    margin-left: -20px;
    opacity: 0.2;
    position: absolute;
    top: 118px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  
  .blog-area .post-formate {
    background: #8099FC none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: 0;
    color: #ffffff;
    height: 50px;
    left: 50%;
    line-height: 50px;
    margin-bottom: 5px;
    margin-left: -25px;
    position: absolute;
    text-align: center;
    width: 50px;
    z-index: 1;
  }
  
  .blog-area .content > span {
    display: block;
    font-family: "Poppins",sans-serif;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  
  /* Sidebar */
  .blog-area .sidebar-item {
    background: #ffffff none repeat scroll 0 0;
    padding: 30px;
  }
  
  .blog-area .sidebar .title {
    display: block;
  }
  
  .blog-area .sidebar .title h4 {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 30px;
  }
  
  .blog-area .sidebar input[type="text"] {
    border: 1px solid #f4f4f4;
    box-shadow: inherit;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 0 25px;
  }
  
  .blog-area .sidebar form {
    position: relative;
  }
  
  .blog-area .sidebar input[type="submit"] {
    background: #8099FC none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 25px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  .blog-area .sidebar input[type="submit"]:hover {
    background: #8099FC none repeat scroll 0 0;
  }
  
  .blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 30px;
    width: 100%;
  }
  
  .blog-area .sidebar .sidebar-item.gallery {
    margin-bottom: 40px;
  }
  
  .blog-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0;
  }
  
  .blog-area .sidebar .sidebar-item.category .sidebar-info, 
  .blog-area .sidebar .sidebar-item.archives .sidebar-info {
    margin-top: -5px;
  }
  
  .blog-area .sidebar .sidebar-item.category li {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f4;
    position: relative;
  }
  
  .blog-area .sidebar .sidebar-item.category li a {
    display: inline-block;
    text-transform: capitalize;
    padding-left: 15px;
  }
  
  .blog-area .sidebar .sidebar-item li a:hover {
    color: #8099FC;
  }
  
  .sidebar-item.category ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    top: 10px;
    font-weight: 600;
  }
  
  .blog-area .sidebar .sidebar-item.category li a span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #666666;
    font-weight: 500;
    padding: 0 8px;
    right: 0;
    top: 10px;
  }
  
  .blog-area .sidebar .sidebar-item.category li:first-child a span {
    top: 0;
  }
  
  .blog-area .sidebar .sidebar-item.category li:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  
  .blog-area .sidebar .sidebar-item.category li:first-child a::after {
    top: 0;
  }
  
  .blog-area .sidebar .sidebar-item.category li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .sidebar-item.recent-post li a {
    color: #333333;
    display: block;
    font-size: 14px;
    font-weight: 500;
  }
  
  .sidebar-item.recent-post li a:last-child {
    display: inline-block;
    font-weight: 400;
  }
  
  .sidebar-item.recent-post .meta-title {
    color: #999999;
    font-family: "Poppins",sans-serif;
    margin-top: 8px;
  }
  
  .sidebar-item.recent-post li a:hover {
    color: #8099FC;
  }
  
  .color-yellow .sidebar-item.recent-post li a:hover {
    color: #ff9800;
  }
  
  .sidebar-item.recent-post li a span {
    display: inline-block;
    color: #232323;
  }
  
  .sidebar-item.recent-post li span {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: capitalize;
  }
  
  .sidebar-item.recent-post .meta-title a {
    text-transform: capitalize;
    color: #999999;
  }
  
  .sidebar-item.recent-post li {
    color: #cdd0d3;
  }
  
  .sidebar-item.recent-post li {
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .sidebar-item.recent-post li:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
  }
  
  .sidebar-item.recent-post li:last-child {
    margin: 0;
  }
  
  .sidebar-item.recent-post li .thumb {
    display: table-cell;
    padding-top: 5px;
    vertical-align: top;
    width: 80px;
  }
  
  .sidebar-item.recent-post .thumb img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  .sidebar-item.recent-post li .info {
    box-shadow: inherit;
    color: #837f7e;
    display: table-cell;
    line-height: 26px;
    padding: 0 0 0 20px;
    vertical-align: top;
  }
  
  .sidebar-item.gallery ul li {
    box-sizing: border-box;
    float: left;
    padding: 0 10px 10px 0;
    width: 33.333%;
    float: left;
  }
  
  .sidebar-item.gallery ul li img {
    min-height: 70px;
    width: 100%;
  }
  
  .sidebar-item.archives ul li {
    display: block;
    margin-bottom: 20px;
    position: relative;
  }
  
  .sidebar-item.archives ul li:last-child {
    margin-bottom: 0;
  }
  
  .sidebar-item.archives ul li a {
    color: #666666;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 1;
    padding-left: 15px;
  }
  
  .sidebar-item.archives ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    font-weight: 600;
  }
  
  .sidebar-item.social-sidebar li {
    display: inline-block;
    margin-right: 5px;
  }
  
  .sidebar-item.social-sidebar li a {
    background: #232323 none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 5px;
    text-align: center;
    width: 60px;
  }
  
  .sidebar-item.social-sidebar li a:hover {
    color: #ffffff !important;
  }
  
  .sidebar-item.social-sidebar li.facebook a {
    background: #3B5998 none repeat scroll 0 0;
  }
  
  .sidebar-item.social-sidebar li.twitter a {
    background: #1DA1F2 none repeat scroll 0 0;
  }
  
  .sidebar-item.social-sidebar li.pinterest a {
    background: #BD081C none repeat scroll 0 0;
  }
  
  .sidebar-item.social-sidebar li.g-plus a {
    background: #DB4437 none repeat scroll 0 0;
  }
  
  .sidebar-item.social-sidebar li.linkedin a {
    background: #0077B5 none repeat scroll 0 0;
  }
  
  .sidebar-item.tags ul li {
    display: inline-block;
  }
  
  .sidebar-item.tags ul li a {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #f4f4f4;
    float: left;
    font-weight: 500;
    margin-bottom: 2px;
    margin-right: 5px;
    padding: 10px 20px;
    text-transform: capitalize;
  }
  
  .sidebar-item.tags ul li a:hover {
    color: #8099FC;
  }
  
  
  /* Blog Single */
  .blog-area.single .item .content-box span {
    background: #8099FC none repeat scroll 0 0;
    color: #ffffff;
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 3px 20px;
    text-transform: uppercase;
  }
  
  .blog-area.single .item .content-box h2,
  .blog-area.single .item .content-box h3,
  .blog-area.single .item .content-box h4 {
    font-weight: 500;
  }
  
  .blog-area.single .content-box .cats {
    float: left;
    margin-right: 5px;
  }
  
  .blog-area.single .content-box .meta .date {
    float: right;
    font-family: "Poppins",sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .blog-area.single .content-box .meta {
    overflow: hidden;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .blog-area.single .content-box .cats a:last-child::after {
    display: none;
  }
  
  .blog-area.single .item {
    margin-bottom: 0;
  }
  
  .author-bio {
    display: block;
    margin-top: 30px;
    width: 100%;
  }
  
  .author-bio .avatar {
    display: table-cell;
    vertical-align: top;
    width: 200px;
  }
  
  .author-bio .avatar img {
    border: 5px solid #8099FC;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 5px;
  }
  
  .author-bio .content {
    display: table-cell;
    padding: 0 0 0 30px;
    vertical-align: middle;
  }
  
  .author-bio .content p {
    margin: 0;
    position: relative;
    z-index: 1;
    padding-top: 5px;
  }
  
  .author-bio .content p::after {
    content: ",,";
    font-family: "Times New Roman";
    font-size: 60px;
    left: 0;
    letter-spacing: -4px;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  
  .author-bio .content h4 {
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 15px;
    text-transform: uppercase;
  }
  
  .blog-area.single .post-pagi-area {
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid #f4f4f4;
    margin: 30px 0 45px;
    overflow: hidden;
    padding: 15px 0;
  }
  
  .blog-area.single .post-pagi-area a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .blog-area.single .post-pagi-area a:hover {
    color: #8099FC;
  }
  
  .blog-area.single.color-yellow .post-pagi-area a:hover {
    color: #ff9800;
  }
  
  .blog-area.single .post-pagi-area a:last-child {
    float: right;
  }
  
  .blog-area.single .post-pagi-area a:first-child i {
    margin-right: 3px;
  }
  
  .blog-area.single .post-pagi-area a:last-child i {
    margin-left: 3px;
  }
  
  .blog-area.single .post-tags span {
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    margin-right: 5px;
    text-transform: uppercase;
  }
  
  .blog-area.single .post-tags a {
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #232323;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
    padding: 3px 25px;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  
  .comments-area .commen-item .comments-info p {
    display: block;
    margin: 0;
  }
  
  .blog-area .contact-comments .submit {
    margin-bottom: 0;
  }
  
  .blog-area.single .post-tags a:hover {
    color: #8099FC;
  }
  
  .blog-area.single.color-yellow .post-tags a:hover {
    color: #ff9800;
  }
  
  .responsive-video {
    position: relative;
    padding-bottom: 56.25%;
   /* 16:9 */
    padding-top: 25px;
    height: 0;
  }
  
  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .comments-list .commen-item .avatar {
    float: left;
    height: 100px;
    width: 100px;
  }
  
  .comments-list .commen-item .content {
    display: table-cell;
    vertical-align: top;
  }
  
  .comments-list .commen-item .avatar img {
    height: 80px;
    width: 80px;
  }
  
  .comments-list .commen-item {
    margin-bottom: 30px;
  }
  
  .comments-list .commen-item.reply {
    padding-left: 80px;
  }
  
  .comments-area {
    margin-top: 40px;
  }
  
  .comments-area .comments-title h2,
  .comments-area .comments-title h3,
  .comments-area .comments-title h4 {
    border-bottom: 1px solid #e2e2e2;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-transform: uppercase;
  }
  
  .comments-list .commen-item .content h3, 
  .comments-list .commen-item .content h4, 
  .comments-list .commen-item .content h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .comments-info a {
    border: 1px solid #f4f4f4;
    color: #232323;
    display: inline-block;
    font-size: 12px;
    margin-top: 15px;
    padding: 1px 10px;
    text-transform: uppercase;
  }
  
  .comments-info a:hover {
    color: #8099FC;
  }
  
  .color-yellow .comments-info a:hover {
    color: #ff9800;
  }
  
  .comments-info a i {
    margin-right: 10px;
  }
  
  .comments-form input, 
  .comments-form textarea {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #f4f4f4;
    border-image: none;
    border-radius: inherit;
    border-style: none none solid;
    border-width: medium medium 1px;
    box-shadow: inherit;
  }
  
  .comments-form textarea {
    min-height: 180px;
    padding: 15px;
  }
  
  .blog-area.full-blog.single-blog .form-group.submit {
    margin-bottom: 0;
  }
  
  .comments-form button {
    background-color: #8099FC;
    border: 1px solid transparent;
    color: #ffffff;
    display: inline-block;
    font-family: "Montserrat",sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 25px;
    margin-top: 20px;
    padding: 12px 40px;
    text-transform: uppercase;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
  }
  
  .comments-form button:hover {
    color: #ffffff;
    background-color: #8099FC;
    border: 1px solid transparent;
  }
  
  .comments-area .commen-item .comments-info {
    margin-bottom: 15px;
  }
  
  .comments-form .title h2, 
  .comments-form .title h3, 
  .comments-form .title h4 {
    border-bottom: 1px solid #f4f4f4;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-transform: uppercase;
  }
  
  .blog-area .contact-comments .comments {
    margin-top: 20px;
  }
  
  .blog-area.single .blog-items .item .contact-comments .col-md-6 {
    float: left;
    padding: 0 15px;
  }
  
  
  /* Pagination */
  
  .blog-area .pagi-area .pagination li a {
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #8099FC;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    margin-top: 5px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 50px;
  }
  
  .blog-area .pagi-area .pagination li.active a {
    background: #8099FC none repeat scroll 0 0;
    border-color: transparent;
    color: #ffffff;
  }
  
  .blog-area .pagi-area .pagination {
    margin-bottom: -10px;
    margin-top: -5px;
  }
  
  
  /* ============================================================== 
       # Clients
  =================================================================== */
  
  .clients-area {
    overflow: hidden;
    position: relative;
  }
  
  .clients-area .info {
    position: relative;
    z-index: 1;
  }
  
  .clients-area .info::after {
    background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
    content: "";
    height: 500px;
    position: absolute;
    right: 0;
    top: -200px;
    width: 1px;
  }
  
  .clients-area.bg-light {
    border-bottom: 1px solid #f4f4f4;
  }
  
  .clients-area .clients-box .single-item img {
    margin: auto;
    width: auto;
  }
  
  .clients-area .clients-box .owl-nav {
    margin: 0;
  }
  
  .clients-area .clients-box .owl-nav .owl-prev, 
  .clients-area .clients-box .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
    font-size: 30px;
    height: 40px;
    left: -20px;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
  }
  
  .clients-area .clients-box .owl-nav .owl-prev:hover, 
  .clients-area .clients-box .owl-nav .owl-next:hover {
    background: transparent none repeat scroll 0 0;
    color: #ffffff;
  }
  
  .clients-area .clients-box .owl-nav .owl-next {
    left: auto;
    right: -20px;
  }
  
  .clients-area .info h4 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .clients-area.bg-light .info h4 {
    color: #8099FC;
  }
  
  .clients-area .info h2 {
    margin: 0;
  }
  
  .clients-area .row {
    align-items: center;
    display: flex;
  }
  
  
  /* ============================================================== 
       # Contact
  =================================================================== */
  
  .contact-us-area {
    padding-bottom: 90px;
    background-color: #f5f5f5;
  }
  
  .contact-us-area.bg-light {
    padding-bottom: 80px;
  }
  .form-group {
    margin-bottom: 30px;
  }
  .contact-us-area form {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    padding: 30px;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .contact-us-area form h4 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .contact-us-area form::after {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotateZ(3deg);
    -webkit-transform: rotateZ(3deg);
    -moz-transform: rotateZ(3deg);
    -ms-transform: rotateZ(3deg);
    -o-transform: rotateZ(3deg);
    width: 100%;
    z-index: -1;
    display: none;
  }
  
  .contact-us-area form input[type="email"] {
    width: 97%;
  }
  
  .contact-us-area form input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #f4f4f4;
    border-radius: 8px;
    border-image: none;
    box-shadow: inherit;
  }
  
  .contact-us-area form textarea {
    min-height: 180px;
    border-color: #f4f4f4;
    box-shadow: none;
    border-radius: 8px;
  }
  
  .contact-us-area form input:focus,
  .contact-us-area form textarea:focus {
    box-shadow: inherit;
  }
  
  .contact-us-area form button {
    background: var(--secondary-color) none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    float: right;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 35px;
    text-transform: uppercase;
  }
  .contact-us-area form button:hover {
    background: #232323;
  }
  .contact-us-area form button i.fa-paper-plane {
    font-weight: 500;
  }
  
  .contact-us-area form img.loader {
    float: right;
    margin-right: 5px;
    margin-top: 18px;
  }
  
  .contact-us-area.bg-light form {
    padding: 0;
  }
  
  .contact-us-area .contact-info .address-items {
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  
  .contact-us-area .contact-info .address-items .icon, 
  .contact-us-area .contact-info .address-items span {
    display: table-cell;
    vertical-align: top;
  }
  
  .contact-us-area .contact-info .address-items span {
    padding-left: 15px;
  }
  
  .contact-us-area .contact-info .address-items .icon i {
    color: #8099FC;
    font-size: 30px;
  }
  
  .contact-us-area .contact-info .address-items li {
    margin-bottom: 30px;
  }
  
  .contact-us-area .contact-info .address-items .social li {
    display: inline-block;
    margin-bottom: 0;
  }
  
  .contact-us-area .contact-info .address-items .social li a {
    border: 1px solid #f4f4f4;
    color: #8099FC;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    text-align: center;
    width: 40px;
  }
  
  form .alert-notification {
    padding: 0;
  }
  
  form .alert-notification .alert-success h3 {
    color: green;
  }
  
  form .alert-notification h3 {
    margin-bottom: 5px;
  }
  
  form .alert-notification .alert {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #f4f4f4;
    margin-top: 30px;
  }
  
  form .alert-notification p {
    color: #232323;
  }
  
  
  /* Google Maps */
  
  .google-maps iframe {
    border: medium none;
    height: 450px;
    margin-bottom: -10px;
    width: 100%;
  }
  
  .maps-area {
    overflow: hidden;
  }
  
  /* ============================================================== 
       # Error 404
  =================================================================== */
  .error-page-area h1 {
    font-size: 150px;
    font-weight: 900;
    line-height: 120px;
    margin-bottom: 25px;
  }
  
  .error-page-area h2 {
    font-weight: 600;
  }
  
  .error-page-area form {
    position: relative;
    width: 400px;
  }
  
  .error-page-area form input {
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: inherit;
    padding: 0 20px;
  }
  
  .error-page-area form button {
    background: #8099FC none repeat scroll 0 0;
    border: medium none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: inherit;
    color: #ffffff;
    min-height: 50px;
    padding: 0 30px;
    position: absolute;
    right: -2px;
    top: 0;
  }
  
  .error-page-area a {
    margin-top: 30px;
  }
  
  
  
  /* ============================================================== 
       # Footer
  =================================================================== */
  
  footer .f-items {
    overflow: hidden;
  }
  
  footer .f-item h4 {
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
  }
  
  footer .f-item img {
    margin-bottom: 30px;
  }
  
  footer.bg-dark .f-item h4 {
    color: #ffffff;
  }
  
  footer .f-item.link li {
    margin-bottom: 15px;
  }
  
  footer .f-item.link li a {
    color: #666666;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    position: relative;
  }
  
  footer .f-item.link li a:hover {
    color: #8099FC;
  }
  
  footer .f-item.link li:last-child {
    margin: 0;
  }
  
  footer p a {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  footer .address li span {
    display: block;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  footer .address li {
    margin-bottom: 15px;
  }
  
  footer .address li:last-child {
    margin-bottom: 0;
  }
  
  footer .social li {
    display: inline-block;
    margin: 0;
  }
  
  footer .social li a {
    border: 1px solid #f4f4f4;
    color: #8099FC;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    width: 40px;
  }
  
  footer .social {
    margin-top: 20px;
  }
  
  footer form .input-group input {
    border: 1px solid #f4f4f4;
    border-radius: inherit;
    box-shadow: inherit;
    margin-top: 10px;
  }
  
  footer form .input-group button {
    background: #8099FC none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    padding: 10px 35px;
    text-transform: uppercase;
  }
  
  footer form .input-group button i {
    font-weight: 500;
    margin-right: 5px;
  }
  
  /* Footer Bottom */
  
  .footer-bottom {
    border-top: 1px solid #f4f4f4;
    padding: 20px 0;
  }
  
  footer.bg-dark .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom.bg-theme-small {
    border-top: medium none;
  }
  
  .footer-bottom li {
    display: inline-block;
  }
  
  .footer-bottom li a {
    display: inline-block;
    margin-left: 15px;
  }
  
  .footer-bottom li a:hover {
    color: var(--secondary-color);
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  
  /* ============================================================== 
       # Preloader 
  =================================================================== */
  .no-js #loader {
    display: none;
  }
  
  .js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
  }
  
  .se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(assets/img/preloader.gif) center no-repeat #fff;
    text-align: center;
  }
  
  
  /* ============================================================== 
       # Demo 
  =================================================================== */
  
  .demo-area.demo-conten.default-padding {
    padding-bottom: 30px;
  }
  
  .demo-area .single-item {
    position: relative;
    z-index: 1;
  }
  
  .demo-area .item {
      margin-bottom: 50px
  }
  
  .demo-area .single-item .info {
    padding: 15px 10px;
    text-align: center;
  }
  .demo-area .single-item .info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
  }
  .banner-area .demo-banner h1 {
    font-weight: 700;
    margin-bottom: 30px;
  }
  .banner-area .demo-banner img {
    height: auto;
    margin-bottom: 20px;
    max-height: 80px;
  }
  .demo-area .def-heading h2 {
    font-weight: 900;
    margin: 30px 0;
    text-transform: uppercase;
    color: #333333;
  }
  .demo-footer {
    padding-bottom: 80px;
  }
  
  .introduction-area h2 span {
    color: #fd0060;
  }
  
  .introduction-area h4 {
    font-weight: 300;
    line-height: 30px;
  }
  
  .introduction-area h2 {
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .demo-area .site-heading h2 {
    color: #ffffff;
  }
  .introduction-area h2::before {
    background: #fd0060 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 50px;
  }
  
  .introduction-area h2::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -40px;
    position: absolute;
    width: 25px;
  }
  
  footer.demo .copyright {
    margin-top: 15px;
  }
  .demo-area .comming-soon.item img {
      opacity: 0.3;
  }
  .banner-area.demo-banner {
    padding: 50px 0;
  }
  .demo-area .site-heading {
    margin-bottom: 30px;
  }
  .demo-area img {
    background: #ffffff none repeat scroll 0 0;
    padding: 10px;
  }
  
  .navbar-default .navbar-brand {
    color: var(--secondary-color);
  }
  .bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
  }
  .about__content {
    position: relative;
    z-index: 1;
  }
  .about__content * {
    color: #ffffff;
  }
  .about__content p {
    margin-bottom: 60px;
  }
  .grey-overlay:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #232323;
    opacity: 0.5;
    z-index: 1;
  }
  .gradient:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #9A9A9A;
    background: linear-gradient(135deg, #9A9A9A, #232323);
    opacity: 0.8;
    z-index: 1;
  }
  
  .contact-area {
    margin-top: 20px;
  }
  .contact-area li {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
  }
  .contact-area li p {
    margin-bottom: 0;
  }
  .contact-area li:not(:last-child) {
    margin-right: 20px;
  }
  .contact-area li a:hover {
    color: var(--secondary-color);
  }
  .contact-area li i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 10px;
    margin-top: 5px;
  }
  .d-flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .justify-content-center {
    justify-content: center;
  }
  @media (max-width: 991px) {
    #about .col-md-6:last-child {
      margin-top: 5rem;
    }
    .col-md-9.contact-form {
      width: 100%;
    }
  }
  @media (max-width: 767px) {
    .special-area .feature-items .single-item,
    .contact-area {
      flex-wrap: wrap;
    }
    .special-area .feature-items .single-item {
      margin-bottom: 30px;
    }
    .special-area .feature-items .single-item:nth-child(even) {
      flex-direction: row;
    }
    .special-area .feature-items .single-item .thumb {
      order: 1;
      margin: 2rem 0 0;
    }
    .special-area .feature-items .single-item .info {
      order: 0;
    }
  }
  @media (max-width: 575px) {
    .contact-area li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }