/* Table of contents */
/* ---------------------------------------------------------------------- / */
/*  1 - General / Global Styles 										 */
/*  1.1 - Buttons 				 										 */
/*  1.2 - Controls 				 										 */
/*  1.3 - Typography			 										 */
/*  2.0 - Navigation			 										 */
/*  3.0 - Banners			 										 	 */
/*  4.0 - Archives			 										 	 */
/*  5.0 - Features			 										 	 */
/*  6.0 - Download Links	 										 	 */
/*  7.0 - Pricing	 												 	 */
/*  8.0 - Testimonials 												 	 */
/*  9.0 - Screenshots 												 	 */
/*  10.0 - Blog Archives 												 */
/*  11.0 - Blog 												 		 */
/*  12.0 - Newsletter 												 	 */
/*  13.0 - Contact  												 	 */
/*  14.0 - Team  												 	     */
/*  15.0 - Logo  												 	     */
/*  16.0 - Footer  												 	     */
/*  17.0 - Gradient Style										 	     */
/*  18.0 - Dark Style										 	         */
/*  19.0 - Sidebar And Widgets									 	     */
/*  19.1 - Widget - Archives									 	     */
/*  19.2 - Widget - Calendar									 	     */
/*  19.3 - Widget - Search									 	         */
/*  19.4 - Widget - Tag Cloud								 	         */
/*  20.0 - Internet Explorer Fix							 	         */
/* --------------------------------------------------------------------- */
/* 1.0 - General / Global Styles */
/* Global Rules */
body {
    color: #5b7182;
    font-size: 16px;
    line-height: 26px;
    background-color: #fff;
    word-wrap: break-word;
  }
  
  a {
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  img,
  figure {
    max-width: 100%;
    height: auto;
  }
  
  .screen-reader-text {
    display: none;
  }
  
  /* Placehoder */
  ::-webkit-input-placeholder {
    color: #bdd1de;
    font-style: italic;
  }
  
  :-moz-placeholder {
    color: #bdd1de;
    font-style: italic;
  }
  
  ::-moz-placeholder {
    color: #bdd1de;
    font-style: italic;
  }
  
  :-ms-input-placeholder {
    color: #bdd1de;
    font-style: italic;
  }
  
  /* SVG */
  .mask-svg {
    height: 0;
    width: 0;
  }
  
  /* Middle Image */
  .middle-img img {
    margin: 0 auto;
  }
  
  /* Overlay Effects */
  .overlay {
    background: rgba(15, 22, 30, 0.8);
    color: #FFFFFF;
  }
  
  .overlay h1,
  .overlay h2,
  .overlay h3,
  .overlay h4,
  .overlay h5,
  .overlay h6 {
    color: #FFFFFF;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  /* Section Title */
  .section-title {
    color: #1d252e;
  }
  
  .section-title>span {
    color: #4798d9;
  }
  
  .stripe {
    margin: 0px auto;
    text-align: center;
    position: relative;
  }
  
  .stripe:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 18px;
    width: 15%;
    height: 1px;
    border-top: 2px dotted #d1d9e2;
  }
  
  .stripe:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    margin-right: 18px;
    width: 15%;
    height: 1px;
    border-top: 2px dotted #d1d9e2;
  }
  
  .stripe>i {
    position: relative;
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 1em;
    line-height: 1.4em;
    border: 2px dotted #d1d9e2;
    padding: 3px;
    border-radius: 50%;
  }
  
  /* Section Description */
  .section-description {
    font-size: 1.125em;
    padding-top: 10px;
  }
  
  /* Section Styles */
  .section-padding {
    padding: 100px 0;
    overflow: hidden;
  }
  
  .top-no-padding {
    padding-top: 0;
  }
  
  .bottom-no-padding {
    padding-bottom: 0;
  }
  
  .top-padding-100 {
    padding-top: 100px;
  }
  
  .top-padding-80 {
    padding-top: 80px;
  }
  
  .top-padding-50 {
    padding-top: 50px;
  }
  
  .top-padding-30 {
    padding-top: 30px;
  }
  
  .top-padding-20 {
    padding-top: 20px;
  }
  
  .extra-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .extra-padding-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .top-margin-80 {
    margin-top: 80px;
  }
  
  .right-padding-50 {
    padding-right: 50px;
  }
  
  [data-background="gray"] {
    background: #e5eff6;
  }
  
  [data-background="light-black"] {
    background: #1d252e;
  }
  
  [data-background="light-black"] h1,
  [data-background="light-black"] h2,
  [data-background="light-black"] h3,
  [data-background="light-black"] h4,
  [data-background="light-black"] h5,
  [data-background="light-black"] h6 {
    color: #FFFFFF;
  }
  
  [data-parallax="yes"] {
    background-size: cover;
    background-attachment: fixed;
  }
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0f161e;
    z-index: 9999;
  }
  
  #loader {
    position: absolute;
    top: 50%;
    left: 50%;
  }
  
  /* 1.1 - Buttons */
  .aw-btn {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    background-color: #FFFFFF;
    color: #4798d9;
    border-radius: 4px;
    font-size: 1.125em;
    line-height: 1em;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .aw-btn:hover {
    text-decoration: none;
    background-color: #4798d9;
    color: #FFFFFF;
  }
  
  .aw-btn:first-child {
    margin-left: 0;
  }
  
  .aw-btn:last-child {
    margin-right: 0;
  }
  
  .aw-btn.alt {
    font-size: 1em;
    background-color: #4798d9;
    color: #FFFFFF;
    border: 1px solid transparent;
  }
  
  .aw-btn.alt:hover {
    border-color: #4798d9;
    background-color: #FFFFFF;
    color: #4798d9;
  }
  
  .aw-btn.viewmore {
    border: 4px solid #bdd1de;
  }
  
  .gradient .overlay .aw-btn {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
  }
  
  .gradient .overlay .aw-btn.alt,
  .gradient .overlay .aw-btn:hover {
    background-color: #FFFFFF;
    color: #4798d9;
  }
  
  /* 1.2 - Controls */
  .bullet-pagination {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    padding: 10px 0;
  }
  
  .bullet-pagination>span {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 2px;
    border: 3px solid #5b7182;
    border-radius: 50%;
    background: transparent;
    opacity: 0.5;
  }
  
  .bullet-pagination>span.active,
  .bullet-pagination>span.swiper-pagination-bullet-active {
    border-color: #4798d9;
    background-color: #4798d9;
    opacity: 1;
  }
  
  .arrow-control {
    position: absolute;
    width: 30px;
    height: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    background-image: none;
    font-size: 100px;
    color: #4798d9;
    cursor: pointer;
  }
  
  .arrow-control.next {
    right: 25px;
  }
  
  .arrow-control.next:before,
  .arrow-control.next:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: #4798d9;
    right: 15px;
  }
  
  .arrow-control.next:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -4px;
  }
  
  .arrow-control.next:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -4px;
  }
  
  .arrow-control.prev {
    left: 0px;
  }
  
  .arrow-control.prev:before,
  .arrow-control.prev:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: #4798d9;
    right: 15px;
  }
  
  .arrow-control.prev:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -4px;
  }
  
  .arrow-control.prev:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: -4px;
  }
  
  .arrow-control.inactive:before,
  .arrow-control.inactive:after,
  .arrow-control.disabled:before,
  .arrow-control.disabled:after,
  .arrow-control.swiper-button-disabled:before,
  .arrow-control.swiper-button-disabled:after {
    background-color: rgba(91, 113, 130, 0.2);
  }
  
  /* 1.3 - Typography */
  /* Body */
  body {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    color: #5b7182;
  }
  
  /* Headings */
  h1,
  h2,
  h3,
  h4,
  h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
  }
  
  table {
    width: 100%;
  }
  
  table tbody tr th,
  table tbody tr td {
    border: 1px solid #F0F0F0;
    padding: 5px 10px;
  }
  
  /* 2.0 - Navigation */
  .menu-1-canvas {
    position: relative;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .menu-1-open {
    overflow-x: hidden;
    -webkit-transform: translateX(300px);
    -ms-transform: translateX(300px);
    transform: translateX(300px);
    -webkit-transition: all 0.35s ease-in-out;
  
    transition: all 0.35s ease-in-out;
  }
  
  #navigation.navigation-style-1 {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #1d252e;
    z-index: 100;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  
  #navigation.navigation-style-1>.container {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  #navigation.navigation-style-1 .nav-header #logo {
    display: block;
    width: 85px;
    height: 85px;
    margin: 30px auto;
  }
  
  #navigation.navigation-style-1 .nav-header #nav-trigger {
    position: absolute;
    top: 65px;
    left: 330px;
  }
  
  #navigation.navigation-style-1 .nav-header #nav-trigger>a {
    color: #5b7182;
    font-size: 1.3em;
  }
  
  #navigation.navigation-style-1 .nav-header #nav-socials {
    display: none;
  }
  
  #navigation.navigation-style-1 .site-navigation {
    padding: 0;
    margin: 0;
  }
  
  #navigation.navigation-style-1 .site-navigation>li {
    list-style: none;
  }
  
  #navigation.navigation-style-1 .site-navigation>li>a {
    display: block;
    color: #5b7182;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    padding: 10px 25px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  #navigation.navigation-style-1 .site-navigation>li>a>i {
    padding-right: 10px;
  }
  
  #navigation.navigation-style-1 .site-navigation>li>a:hover {
    color: #4798d9;
    background: #182029;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu {
    position: relative;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 10px;
    right: 35px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu>ul {
    padding: 0;
    margin: 0;
    display: none;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity .35s ease;
    transition: opacity .35s ease;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu>ul>li {
    list-style: none;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu>ul>li>a {
    display: block;
    font-size: .9em;
    color: #5b7182;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 25px;
    padding-left: 45px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.has-submenu>ul>li>a:hover {
    color: #4798d9;
    background: #182029;
  }
  
  #navigation.navigation-style-1 .site-navigation>li.active:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  #navigation.navigation-style-1 .site-navigation>li.active>ul {
    display: block;
    opacity: 1;
  }
  
  #navigation.navigation-style-2 {
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    position: absolute;
    z-index: 100;
  }
  
  #navigation.navigation-style-2>.container {
    position: relative;
  }
  
  #navigation.navigation-style-2 .nav-header #logo {
    float: left;
    color: #FFFFFF;
    text-decoration: none;
  }
  
  #navigation.navigation-style-2 .nav-header #logo>h1 {
    font-size: 2em;
    line-height: 32px;
    font-weight: 400;
    margin: 5px 0;
  }
  
  #navigation.navigation-style-2 .nav-header #nav-trigger {
    float: right;
    margin: 10px 0;
    padding-right: 30px;
  }
  
  #navigation.navigation-style-2 .nav-header #nav-trigger>a {
    color: #FFFFFF;
    font-size: 1.3em;
    line-height: 25px;
  }
  
  #navigation.navigation-style-2 .nav-header #nav-socials {
    float: right;
    border-left: 2px solid #FFFFFF;
    margin: 10px 0;
    padding-left: 20px;
  }
  
  #navigation.navigation-style-2 .nav-header #nav-socials>a {
    font-size: 1em;
    display: inline-block;
    margin: 0 3px;
    color: rgba(29, 37, 46, 0.5);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  #navigation.navigation-style-2 .nav-header #nav-socials>a:hover {
    color: #FFFFFF;
  }
  
  #navigation.navigation-style-2 .site-navigation {
    padding: 0;
    margin: 0;
    text-align: right;
    float: right;
    margin-right: 25px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  
  #navigation.navigation-style-2 .site-navigation>li {
    display: inline-block;
    opacity: 0;
    position: relative;
    top: -5px;
    -webkit-transition: top .1s ease .1s, opacity .1s ease .1s;
    transition: top .1s ease .1s, opacity .1s ease .1s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(2n) {
    -webkit-transition: top .2s ease .2s, opacity .2s ease .2s;
    transition: top .2s ease .2s, opacity .2s ease .2s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(3n) {
    -webkit-transition: top .3s ease .3s, opacity .3s ease .3s;
    transition: top .3s ease .3s, opacity .3s ease .3s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(4n) {
    -webkit-transition: top .4s ease .4s, opacity .4s ease .4s;
    transition: top .4s ease .4s, opacity .4s ease .4s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(5n) {
    -webkit-transition: top .5s ease .5s, opacity .5s ease .5s;
    transition: top .5s ease .5s, opacity .5s ease .5s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(6n) {
    -webkit-transition: top .6s ease .6s, opacity .6s ease .6s;
    transition: top .6s ease .6s, opacity .6s ease .6s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(7n) {
    -webkit-transition: top .7s ease .7s, opacity .7s ease .7s;
    transition: top .7s ease .7s, opacity .7s ease .7s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(8n) {
    -webkit-transition: top .8s ease .8s, opacity .8s ease .8s;
    transition: top .8s ease .8s, opacity .8s ease .8s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(9n) {
    -webkit-transition: top .9s ease .9s, opacity .9s ease .9s;
    transition: top .9s ease .9s, opacity .9s ease .9s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(10n) {
    -webkit-transition: top 1.0s ease 1.0s, opacity 1.0s ease 1.0s;
    transition: top 1.0s ease 1.0s, opacity 1.0s ease 1.0s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(11n) {
    -webkit-transition: top 1.1s ease 1.1s, opacity 1.1s ease 1.1s;
    transition: top 1.1s ease 1.1s, opacity 1.1s ease 1.1s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li:nth-child(12n) {
    -webkit-transition: top 1.2s ease 1.2s, opacity 1.3s ease 1.3s;
    transition: top 1.2s ease 1.2s, opacity 1.3s ease 1.3s;
  }
  
  #navigation.navigation-style-2 .site-navigation>li>a {
    display: block;
    margin: 0px 15px;
    padding: 10px 0;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #FFFFFF;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  #navigation.navigation-style-2 .site-navigation>li>a>i {
    display: none;
  }
  
  #navigation.navigation-style-2 .site-navigation>li>a:hover {
    color: #7ecfff;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu {
    position: relative;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu>ul {
    position: absolute;
    background-color: #1d252e;
    padding: 0;
    margin: 0;
    min-width: 225px;
    text-align: left;
    top: 75px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu>ul>li {
    list-style: none;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu>ul>li>a {
    display: block;
    line-height: 3em;
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
    color: #5b7182;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu>ul>li>a:hover {
    background-color: #182029;
    color: #4798d9;
  }
  
  #navigation.navigation-style-2 .site-navigation>li.has-submenu:hover>ul {
    visibility: visible;
    top: 46px;
    opacity: 1;
  }
  
  #navigation.open .site-navigation>li {
    opacity: 1;
    top: 0;
  }
  
  @media (max-width: 992px) {
    #navigation.navigation-style-2 {
      margin-top: 0px;
      padding-top: 25px;
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
    }
  
    #navigation.navigation-style-2 .site-navigation {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
    }
  
    #navigation.navigation-style-2 .site-navigation>li {
      display: block;
      text-align: center;
    }
  
    #navigation.navigation-style-2.open {
      height: 100%;
      background-color: rgba(29, 37, 46, 0.8);
    }
  }
  
  @media (max-height: 500px) {
    #navigation.navigation-style-2 .site-navigation {
      top: 50px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  
    #navigation.navigation-style-2 .site-navigation>li>a {
      font-size: .8em;
      line-height: 1.2em;
      padding: 5px 0;
    }
  }
  
  @media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: portrait) {
    #navigation.navigation-style-2 .nav-header #nav-socials {
      display: none;
    }
  }
  
  /* 3.0 - Banners */
  .banner-section {
    margin-bottom: 50px;
  }
  
  .banner-section .overlay>.container {
    padding: 0;
  }
  
  .banner-section .banner-middle-content {
    position: relative;
  }
  
  @media only screen and (min-device-width: 320px) and (max-device-width: 991px) {
    .banner-section .banner-middle-content {
      margin-top: 250px;
      padding: 0 20px;
    }
    .full-screen.banner-section .banner-middle-content {
      margin-top: 200px;
    }
  }
  
  .banner-section .banner-content .banner-title {
    font-size: 2.625em;
    line-height: 1.2em;
    margin-bottom: 25px;
  }
  
  .banner-section .banner-content .banner-description {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 25px;
  }
  
  .banner-section .application-mockup {
    position: relative;
  }
  
  .banner-section .application-mockup .overlay-image {
    position: absolute;
    left: 50%;
    bottom: -60px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    max-height: 750px;
  }
  
  .banner-section .application-mockup .banner-image-2 {
    height: auto;
    position: absolute;
    bottom: 0px;
    height: 75%;
  }
  
  @media (max-width: 410px) {
    .banner-section .banner-content .action-buttons>a {
      display: block;
      margin: 10px 0;
      text-align: center;
    }
  }
  
  @media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
    .banner-section .banner-content .banner-title {
      font-size: 2em;
    }
  
    .banner-section .banner-content .banner-description {
      font-size: 1em;
    }
  
    .banner-section .banner-content .action-buttons>a {
      display: block;
      margin: 10px 0;
      text-align: center;
    }
  
    .banner-section .application-mockup {
      display: none;
    }
  }
  
  @media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: landscape) {
    .banner-section .banner-content .action-buttons {
      overflow: hidden;
      text-align: center;
    }
  
    .banner-section .banner-content .action-buttons>a {
      display: inherit;
      float: left;
    }
  
    .banner-section .banner-content .action-buttons>a:last-child {
      margin-left: 5%;
    }
  }
  
  /* 4.0 - Achieves */
  .achieve-item {
    margin-top: 100px;
    padding: 0 10px;
    position: relative;
  }
  
  .achieve-item>.icon {
    width: 100px;
    height: 100px;
    background-color: #FFF;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: -50px;
    background-color: #4798d9;
    text-align: center;
    border-radius: 50%;
    z-index: 2;
  }
  
  .achieve-item>.icon:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 94px;
    height: 94px;
    background: #f2faff;
    border-radius: 50%;
    z-index: -1;
  }
  
  .achieve-item>.icon>i {
    font-size: 2.5em;
    color: #4798d9;
    line-height: 2.5em;
  }
  
  .achieve-item>.inside {
    min-height: 150px;
    padding-top: 65px;
    padding-right: 25px;
    padding-bottom: 65px;
    padding-left: 25px;
    text-align: center;
    background-color: #4798d9;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg);
  }
  
  .achieve-item>.inside>.content {
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.2em;
    font-family: "Montserrat", sans-serif;
    -webkit-transform: skewY(6deg);
    -ms-transform: skewY(6deg);
    transform: skewY(6deg);
  }
  
  .achieve-item>.inside>.name {
    font-size: 1.125em;
    line-height: 2em;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transform: skewY(6deg);
    -ms-transform: skewY(6deg);
    transform: skewY(6deg);
  }
  
  /* 5.0 - Features */
  .feature-items .item {
    margin-bottom: 40px;
  }
  
  .feature-items .item>.icon {
    width: 60px;
    height: 60px;
    float: left;
  }
  
  .feature-items .item>.icon>i {
    font-size: 2.5em;
    color: #b5cbdc;
  }
  
  .feature-items .item>.content {
    margin-left: 70px;
  }
  
  .feature-items .item>.content>h3 {
    color: #4798d9;
  }
  
  .feature-items.style-2 .item {
    margin-bottom: 0;
    padding-bottom: 50px;
    position: relative;
  }
  
  .feature-items.style-2 .item>.icon {
    width: 80px;
    height: 70px;
    position: relative;
    border: 2px solid #4798d9;
    text-align: center;
    -webkit-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    transform: skewY(-5deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .feature-items.style-2 .item>.icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .feature-items.style-2 .item>.icon>i {
    color: #4798d9;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .feature-items.style-2 .item>.content {
    margin-left: 100px;
    position: relative;
  }
  
  .feature-items.style-2 .item>.content:after {
    content: "";
    position: absolute;
    height: 89%;
    width: 1px;
    border-left: 1px dashed #4798d9;
    left: -60px;
    top: 65px;
    z-index: 1;
  }
  
  .feature-items.style-2 .item:hover>.icon:after {
    background-color: #4798d9;
  }
  
  .feature-items.style-2 .item:hover>.icon>i {
    color: #FFFFFF;
    z-index: 300;
  }
  
  .feature-items.style-2 .item:before,
  .feature-items.style-2 .item:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4798d9;
    border-radius: 50%;
    top: -4px;
    left: 40px;
    margin-left: -4.5px;
    z-index: 3;
  }
  
  .feature-items.style-2 .item:after {
    top: 65px;
  }
  
  .feature-items.style-2 .item:last-child:after {
    display: none;
  }
  
  .feature-items.style-2 .item:last-child>.content:after {
    display: none;
  }
  
  .feature-items.style-2 .item:first-child:before {
    display: none;
  }
  
  .feature-items.style-3 .item {
    min-height: 100px;
  }
  
  .feature-items.style-3 .item>.icon {
    float: none;
    margin: 0 auto;
    width: 102px;
    height: 102px;
    border: 3px solid #4798d9;
    padding: 4px;
    border-radius: 50%;
    position: relative;
    z-index: 50;
    margin-bottom: 20px;
  }
  
  .feature-items.style-3 .item>.icon:before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border-radius: 50%;
    z-index: -48;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .feature-items.style-3 .item>.icon>i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #5b7182;
  }
  
  .feature-items.style-3 .item>.content {
    margin: 0;
    text-align: center;
  }
  
  .feature-items.style-3 .item>.content>h3 {
    color: #1d252e;
  }
  
  .feature-items.style-3 .item:hover>.icon>i {
    color: #FFFFFF;
  }
  
  .feature-items.style-3 .item:hover>.icon:before {
    background: #4798d9;
  }
  
  .feature-items.style-3.left-icon .item>.icon {
    float: left;
  }
  
  .feature-items.style-3.left-icon .item>.content {
    text-align: inherit;
    margin-left: 120px;
  }
  
  .feature-items.style-3.right-icon .item>.icon {
    float: right;
  }
  
  .feature-items.style-3.right-icon .item>.content {
    text-align: right;
    margin-right: 120px;
  }
  
  .feature-items.style-3.list-style .item {
    position: relative;
  }
  
  .feature-items.style-3.list-style .item:before,
  .feature-items.style-3.list-style .item:after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #4798d9;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: 51px;
    margin-left: -5px;
    z-index: 51;
  }
  
  .feature-items.style-3.list-style .item:after {
    top: 96px;
  }
  
  .feature-items.style-3.list-style .item .content:before {
    content: "";
    position: absolute;
    height: 65%;
    width: 1px;
    border-left: 1px dashed #4798d9;
    left: 50px;
    top: 80px;
  }
  
  .feature-items.style-3.list-style .item:first-child:before {
    display: none;
  }
  
  .feature-items.style-3.list-style .item:last-child:after {
    display: none;
  }
  
  .feature-items.style-3.list-style .item:last-child>.content:before {
    display: none;
  }
  
  .feature-items.style-3.list-style.right-icon .item:before,
  .feature-items.style-3.list-style.right-icon .item:after {
    left: inherit;
    right: 51px;
    margin-right: -5px;
    z-index: 51;
  }
  
  .feature-items.style-3.list-style.right-icon .item:after {
    top: 96px;
  }
  
  .feature-items.style-3.list-style.right-icon .item .content:before {
    left: inherit;
    right: 50px;
  }
  
  .feature-items.style-3.small .item>.icon {
    width: 86px;
    height: 86px;
  }
  
  .feature-items.style-3.small .item>.icon>i {
    font-size: 1.6em;
  }
  
  .feature-items.style-3.small.left-icon .item>.icon {
    float: left;
  }
  
  .feature-items.style-3.small.left-icon .item>.content {
    text-align: inherit;
    margin-left: 100px;
  }
  
  .feature-items.style-3.small.right-icon .item>.icon {
    float: right;
  }
  
  .feature-items.style-3.small.right-icon .item>.content {
    text-align: right;
    margin-right: 100px;
  }
  
  .feature-items.style-3.small.list-style .item:before,
  .feature-items.style-3.small.list-style .item:after {
    left: 43px;
    margin-left: -5px;
    z-index: 51;
  }
  
  .feature-items.style-3.small.list-style .item:after {
    top: 80px;
  }
  
  .feature-items.style-3.small.list-style .item .content:before {
    left: 43px;
  }
  
  .feature-items.style-3.small.list-style.right-icon .item:before,
  .feature-items.style-3.small.list-style.right-icon .item:after {
    left: inherit;
    right: 44px;
    margin-left: inherit;
    margin-right: -5px;
    z-index: 51;
  }
  
  .feature-items.style-3.small.list-style.right-icon .item:after {
    top: 80px;
  }
  
  .feature-items.style-3.small.list-style.right-icon .item .content:before {
    left: inherit;
    right: 44px;
  }
  
  /* 6.0 - Download Links */
  .download-links>.link-item {
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    padding: 15px 40px;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    margin: 10px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .download-links>.link-item>i {
    width: 50px;
    font-size: 3em;
    float: left;
  }
  
  .download-links>.link-item>.heading {
    margin-left: 60px;
    display: block;
    font-size: .9375em;
    color: #bfd5e6;
  }
  
  .download-links>.link-item>.name {
    margin-left: 60px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.25em;
    font-weight: 700;
  }
  
  .download-links>.link-item:hover {
    background-color: #4798d9;
    border-color: #4798d9;
  }
  
  .download-links>.link-item:first-child {
    margin-left: 0px;
  }
  
  .download-links>.link-item:last-child {
    margin-right: 0px;
  }
  
  /* 7.0 - Pricing */
  .pricing-plan {
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px rgba(29, 37, 46, 0.15);
    margin-top: 15px;
  }
  
  .pricing-plan>.head {
    padding: 40px 25px;
    background-color: #4798d9;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #FFFFFF;
    *zoom: 1;
  }
  
  .pricing-plan>.head:before,
  .pricing-plan>.head:after {
    content: "";
    display: table;
  }
  
  .pricing-plan>.head:after {
    clear: both;
  }
  
  .pricing-plan>.head>.plan-name {
    font-family: "Montserrat", sans-serif;
    font-size: 1.375em;
    line-height: 1em;
    font-weight: 700;
    width: 70%;
    float: left;
  }
  
  .pricing-plan>.head>.plan-name>.plan-desc {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.7em;
    font-weight: 400;
    color: #eeeeee;
  }
  
  .pricing-plan>.head>.plan-price {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 3em;
    line-height: 0.75em;
    font-weight: 700;
    width: 30%;
    float: left;
  }
  
  .pricing-plan>.head>.plan-price>.currency {
    position: absolute;
    top: 7px;
    left: -12px;
    font-size: 0.45em;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    color: #c7d1d8;
  }
  
  .pricing-plan>.head>.plan-price>.cycle {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 0.31em;
    line-height: 1em;
    color: #d4dee5;
    position: absolute;
    top: 40px;
  }
  
  .pricing-plan>.content {
    border-top: 4px solid #e5eff6;
    padding: 25px;
  }
  
  .pricing-plan>.content>ul {
    padding: 0px;
    margin: 0px;
  }
  
  .pricing-plan>.content>ul.plan-feature>li {
    list-style: none;
    border-bottom: 1px solid #e5eff6;
    padding: 10px 0;
  }
  
  .pricing-plan>.content>ul.plan-feature>li>i {
    padding-right: 10px;
    color: #4798d9;
  }
  
  .pricing-plan>.content>ul.plan-feature>li.disable>i {
    color: #5b7182;
  }
  
  .pricing-plan>.footer {
    padding: 25px;
    padding-top: 0px;
    text-align: center;
  }
  
  .pricing-plan.active {
    margin-top: 0px;
  }
  
  .pricing-plan.active>.head {
    padding-top: 50px;
  }
  
  .pricing-plan.active>.footer {
    padding-bottom: 40px;
  }
  
  @media (max-width: 992px) {
    .pricing-plan.active {
      margin-top: 15px;
    }
  }
  
  /* 8.0 - Testimonials */
  .testimonial-container {
    padding-top: 80px;
    *zoom: 1;
  }
  
  .testimonial-container:before,
  .testimonial-container:after {
    content: "";
    display: table;
  }
  
  .testimonial-container:after {
    clear: both;
  }
  
  .testimonial-items {
    height: 275px;
  }
  
  .testimonial-items .item {
    padding: 0 15px;
    position: relative;
  }
  
  .testimonial-items .item>.content {
    background: #e5eff6;
    padding: 30px;
    color: #5b7182;
    border-radius: 4px;
    font-weight: 600;
    font-style: italic;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .testimonial-items .item>.content:before {
    content: "";
    border-style: solid;
    border-width: 15px 15px 15px 0px;
    border-color: transparent;
    border-right-color: #e5eff6;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: -15px;
  }
  
  .testimonial-items .item>.content>.info {
    margin-top: 25px;
    font-weight: 400;
    font-style: normal;
  }
  
  .testimonial-items .item>.content>.info>.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
  }
  
  .testimonial-items .item>.content>.info>.rating>span {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
  }
  
  .testimonial-items .item>.content>.info>.rating>span.star:before {
    content: "\f006";
    padding-left: 5px;
  }
  
  .testimonial-items .item>.content>.info>.rating>span.star.filled:before {
    content: "\f005";
    color: #4798d9;
  }
  
  .testimonial-navigation {
    height: 275px;
    width: 115px;
    float: right;
    position: relative;
  }
  
  .testimonial-navigation>i {
    position: absolute;
    top: -32px;
    font-size: 2em;
    color: #4798d9;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 555;
  }
  
  .testimonial-navigation>i.swiper-button-disabled {
    color: #818b92;
  }
  
  .testimonial-navigation>i[data-carousel="prev"] {
    top: auto;
    bottom: -32px;
  }
  
  .testimonial-navigation>.swiper-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  .testimonial-navigation>.swiper-container>.nav-items>.item {
    position: relative;
  }
  
  .testimonial-navigation>.swiper-container>.nav-items>.item>img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #e5eff6;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .testimonial-navigation>.swiper-container>.nav-items>.item.swiper-slide-active>img {
    width: 105px;
    height: 105px;
    border: 4px solid #4798d9;
    -webkit-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
  }
  
  @media (max-width: 992px) {
    .testimonial-items .item>.content {
      width: 100%;
    }
  
    .testimonial-items .item>.content:before {
      content: "";
      border-style: solid;
      border-width: 15px 15px 15px 15px;
      border-color: transparent transparent #e5eff6 transparent;
      position: absolute;
      top: -14px;
      margin-left: -15px;
      left: 50%;
    }
  
    .testimonial-navigation {
      width: 275px;
      height: 115px;
      float: none;
      margin: 0 auto;
    }
  
    .testimonial-navigation>i {
      top: 50%;
      margin-top: -10px;
      left: -32px;
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }
  
    .testimonial-navigation>i[data-carousel="prev"] {
      top: 50%;
      left: inherit;
      bottom: inherit;
      right: -32px;
    }
  }
  
  .overflow-testimonials {
    position: relative;
    width: 962px;
    height: 435px;
    margin: 0 auto;
    overflow: hidden;
    background-image: url("../../assets/images/ov-t-bg.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  
  .overflow-testimonials>.item {
    position: absolute;
    overflow: hidden;
  }
  
  .overflow-testimonials>.item>.image {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    padding: 3px;
    background-color: #bdd1de;
  }
  
  .overflow-testimonials>.item>.image>img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  
  .overflow-testimonials>.item>.image>img:hover {
    cursor: pointer;
  }
  
  .overflow-testimonials>.item>.content {
    position: absolute;
    top: 108px;
    font-size: 1.125em;
    width: 850px;
    height: auto;
    padding: 40px;
    border: 1px solid #bdd1de;
    border-bottom: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px 0px rgba(189, 209, 222, 0.5);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
  }
  
  .overflow-testimonials>.item>.content:before,
  .overflow-testimonials>.item>.content:after {
    bottom: 100%;
    left: 225px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: #FFFFFF;
    border-width: 20px;
    margin-bottom: -1px;
  }
  
  .overflow-testimonials>.item>.content:before {
    border-bottom-color: #bdd1de;
    margin-bottom: 0px;
  }
  
  .overflow-testimonials>.item>.content .comment {
    font-style: italic;
    margin-bottom: 25px;
  }
  
  .overflow-testimonials>.item>.content>.info {
    line-height: 1em;
  }
  
  .overflow-testimonials>.item>.content>.info>.name {
    font-weight: 600;
  }
  
  .overflow-testimonials>.item>.content>.info>.designation {
    margin-left: 15px;
    padding-left: 15px;
    display: inline-block;
    position: relative;
  }
  
  .overflow-testimonials>.item>.content>.info>.designation:before {
    content: "";
    position: absolute;
    left: 0px;
    height: 100%;
    width: 2px;
    background-color: #bdd1de;
  }
  
  .overflow-testimonials>.item.active {
    overflow: visible;
    z-index: 101;
  }
  
  .overflow-testimonials>.item.active>.content {
    opacity: 1;
  }
  
  .overflow-testimonials>.item.active>.image {
    background-color: #4798d9;
  }
  
  .overflow-testimonials>.item:nth-child(1) {
    top: 10px;
    left: 270px;
  }
  
  .overflow-testimonials>.item:nth-child(1)>.content {
    top: 100px;
    left: -210px;
  }
  
  .overflow-testimonials>.item:nth-child(1).active>.content {
    top: 120px;
  }
  
  .overflow-testimonials>.item:nth-child(2) {
    top: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .overflow-testimonials>.item:nth-child(2)>.content {
    top: 100px;
    left: -380px;
  }
  
  .overflow-testimonials>.item:nth-child(2)>.content:before,
  .overflow-testimonials>.item:nth-child(2)>.content:after {
    left: 400px;
  }
  
  .overflow-testimonials>.item:nth-child(2).active>.content {
    top: 120px;
  }
  
  .overflow-testimonials>.item:nth-child(3) {
    top: 10px;
    right: 270px;
  }
  
  .overflow-testimonials>.item:nth-child(3)>.content {
    top: 100px;
    left: inherit;
    right: -200px;
  }
  
  .overflow-testimonials>.item:nth-child(3)>.content:before,
  .overflow-testimonials>.item:nth-child(3)>.content:after {
    left: inherit;
    right: 220px;
  }
  
  .overflow-testimonials>.item:nth-child(3).active>.content {
    top: 120px;
  }
  
  .overflow-testimonials>.item:nth-child(4) {
    top: 235px;
    left: 400px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .overflow-testimonials>.item:nth-child(4)>.content {
    top: -200px;
    left: -300px;
  }
  
  .overflow-testimonials>.item:nth-child(4)>.content:before,
  .overflow-testimonials>.item:nth-child(4)>.content:after {
    bottom: -39px;
    left: 320px;
    border-bottom-color: transparent;
    border-top-color: #FFFFFF;
  }
  
  .overflow-testimonials>.item:nth-child(4)>.content:before {
    border-bottom-color: transparent;
    border-top-color: #bdd1de;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    bottom: -42px;
  }
  
  .overflow-testimonials>.item:nth-child(4).active>.content {
    top: -220px;
  }
  
  .overflow-testimonials>.item:nth-child(5) {
    top: 235px;
    right: 310px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .overflow-testimonials>.item:nth-child(5)>.content {
    top: -200px;
    left: -450px;
  }
  
  .overflow-testimonials>.item:nth-child(5)>.content:before,
  .overflow-testimonials>.item:nth-child(5)>.content:after {
    bottom: -38px;
    left: 470px;
    border-bottom-color: transparent;
    border-top-color: #FFFFFF;
  }
  
  .overflow-testimonials>.item:nth-child(5)>.content:before {
    border-bottom-color: transparent;
    border-top-color: #bdd1de;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    bottom: -42px;
  }
  
  .overflow-testimonials>.item:nth-child(5).active>.content {
    top: -220px;
  }
  
  /* 9.0 - Screenshots */
  .screenshots-carousel {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
  }
  
  .screenshots-carousel .bullet-pagination {
    margin-top: 40px;
  }
  
  .screenshots-carousel .arrow-control.next {
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  .screenshots-carousel .arrow-control.prev {
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  .screenshot-item {
    position: relative;
  }
  
  .screenshot-item>img {
    width: 100%;
    height: auto;
  }
  
  .screenshot-item>.zoom-overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(29, 37, 46, 0.8);
    color: #FFFFFF;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
  }
  
  .screenshot-item>.zoom-overlay>i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 25px;
    border: 2px solid #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .screenshot-item>.zoom-overlay>i:before,
  .screenshot-item>.zoom-overlay>i:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
  }
  
  .screenshot-item>.zoom-overlay>i:before {
    width: 1px;
    height: 20px;
  }
  
  .screenshot-item>.zoom-overlay>i:after {
    width: 20px;
    height: 1px;
  }
  
  .screenshot-item>.zoom-overlay>i:hover {
    background-color: rgba(71, 152, 217, 0.3);
  }
  
  .screenshot-item>.zoom-overlay:hover {
    opacity: 1;
  }
  
  /* 10.0 - Blog Archives */
  .blog,
  .single,
  .blog-container {
    background: #FFFFFF;
  }
  
  .aw-bredcrumb {
    margin: 0;
    padding: 0;
  }
  
  .aw-bredcrumb>li {
    display: inline-block;
    position: relative;
    padding-right: 12px;
  }
  
  .aw-bredcrumb>li:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #5b7182;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    left: -10px;
  }
  
  .aw-bredcrumb>li:first-child:before {
    display: none;
  }
  
  .transparent .aw-bredcrumb>li:before {
    background-color: #FFFFFF;
  }
  
  .aw-blog-posts>article {
    border: 1px solid #e5eff6;
    padding: 5px;
    margin-bottom: 25px;
  }
  
  .aw-blog-posts>article>img {
    width: 100%;
    height: auto;
    text-align: center;
  }
  
  .aw-blog-posts>article .aw-post-content {
    padding: 25px;
  }
  
  .aw-blog-posts>article .aw-post-content>h2 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 1.375em;
  }
  
  .aw-blog-posts>article .aw-post-content>h2>a {
    color: #1d252e;
    text-decoration: none;
  }
  
  .aw-blog-posts>article .aw-post-content>h2>a:hover {
    color: #4798d9;
  }
  
  .aw-blog-posts>article .aw-post-content>.meta {
    margin-bottom: 15px;
  }
  
  .aw-blog-posts>article .aw-post-content>.meta>ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .aw-blog-posts>article .aw-post-content>.meta>ul>li {
    display: inline-block;
    margin-right: 5px;
  }
  
  .aw-blog-posts>article .aw-post-content>.meta>ul>li>a {
    color: #5b7182;
  }
  
  .aw-blog-posts>article .aw-post-content>.aw-post-excerpt {
    margin-bottom: 15px;
  }
  
  .aw-blog-posts>article .aw-post-content>.aw-btn {
    margin: 0;
  }
  
  .aw-single-post>article {
    border: 1px solid #e5eff6;
    padding: 5px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  
  .aw-single-post>article>.aw-post-thumb {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  
  .aw-single-post>article .aw-post-content {
    padding: 25px;
  }
  
  .aw-single-post>article .aw-post-content>.title {
    margin: 10px 0 25px 0;
    font-size: 1.375em;
    color: #1d252e;
  }
  
  .aw-single-post>article .aw-post-content p {
    margin-bottom: 30px;
  }
  
  .aw-single-post>article .aw-post-content>.meta {
    display: table;
    float: left;
  }
  
  .aw-single-post>article .aw-post-content>.meta>ul {
    margin: 0;
    padding: 0;
  }
  
  .aw-single-post>article .aw-post-content>.meta>ul>li {
    display: inline-block;
    margin-right: 5px;
    color: #bdd1de;
  }
  
  .aw-single-post>article .aw-post-content>.meta>ul>li>a {
    color: #bdd1de;
  }
  
  .aw-single-post>article .aw-post-content>.post-share {
    display: table;
    float: right;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>.share-text {
    color: #bdd1de;
    font-weight: 600;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul {
    padding: 0;
    margin: 0;
    display: inline-block;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li {
    display: inline-block;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a {
    position: relative;
    padding: 0 5px;
    display: block;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>span {
    display: none;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>i {
    font-size: 1.25em;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>i[class*="facebook"] {
    color: #3b5998;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>i[class*="twitter"] {
    color: #28a9e2;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>i[class*="pinterest"] {
    color: #cb2027;
  }
  
  .aw-single-post>article .aw-post-content>.post-share>ul>li>a>i[class*="google"] {
    color: #d95232;
  }
  
  .aw-post-author {
    padding: 20px;
    border: 1px solid #e5eff6;
    margin-bottom: 25px;
    *zoom: 1;
  }
  
  .aw-post-author:before,
  .aw-post-author:after {
    content: "";
    display: table;
  }
  
  .aw-post-author:after {
    clear: both;
  }
  
  .aw-post-author>.author-img {
    width: 145px;
    height: 145px;
    background-color: #e5eff6;
    padding: 4px;
    border-radius: 50%;
    float: left;
  }
  
  .aw-post-author>.author-img>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  .aw-post-author>.author-details {
    margin-left: 170px;
  }
  
  .aw-post-author>.author-details>h3 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .aw-comments {
    border: 1px solid #e5eff6;
    padding: 45px 25px;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
  
  .aw-comments>h2 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 1.375em;
    text-transform: uppercase;
  }
  
  .aw-comments .commentslist {
    padding: 0;
  }
  
  .aw-comments ol>li,
  .aw-comments ul>li {
    list-style: none;
  }
  
  .aw-comments ol>li>article,
  .aw-comments ul>li>article {
    margin-bottom: 25px;
    *zoom: 1;
  }
  
  .aw-comments ol>li>article:before,
  .aw-comments ol>li>article:after,
  .aw-comments ul>li>article:before,
  .aw-comments ul>li>article:after {
    content: "";
    display: table;
  }
  
  .aw-comments ol>li>article:after,
  .aw-comments ul>li>article:after {
    clear: both;
  }
  
  .aw-comments ol>li>article>.comment-author-img,
  .aw-comments ul>li>article>.comment-author-img {
    width: 80px;
    height: 80px;
    background-color: #e5eff6;
    padding: 3px;
    border-radius: 50%;
    float: left;
  }
  
  .aw-comments ol>li>article>.comment-author-img>img,
  .aw-comments ul>li>article>.comment-author-img>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  .aw-comments ol>li>article>.comment-details,
  .aw-comments ul>li>article>.comment-details {
    margin-left: 100px;
  }
  
  .aw-comments ol>li>article>.comment-details .comment-meta,
  .aw-comments ul>li>article>.comment-details .comment-meta {
    margin-bottom: 15px;
  }
  
  .aw-comments ol>li>article>.comment-details .comment-meta>h3,
  .aw-comments ul>li>article>.comment-details .comment-meta>h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1em;
  }
  
  .aw-comments ol>li>article>.comment-details .comment-meta>.time,
  .aw-comments ul>li>article>.comment-details .comment-meta>.time {
    font-size: 0.8em;
  }
  
  .aw-comments ol>li>article>.comment-details .comment-meta>.time>a,
  .aw-comments ul>li>article>.comment-details .comment-meta>.time>a {
    color: #bdd1de;
  }
  
  .aw-comments ol>li>article>.comment-reply-link,
  .aw-comments ul>li>article>.comment-reply-link {
    display: inline-block;
    float: right;
    background-color: #4798d9;
    color: #FFFFFF;
    line-height: 1em;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 2px;
  }
  
  .aw-comments ol>li>article>.comment-reply-link:hover,
  .aw-comments ul>li>article>.comment-reply-link:hover {
    color: #4798d9;
    background-color: transparent;
    border: 1px solid #4798d9;
  }
  
  .comment-respond {
    border: 1px solid #e5eff6;
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .comment-respond>h3 {
    margin: 0;
    margin-bottom: 25px;
    font-size: 1.375em;
    text-transform: uppercase;
  }
  
  .comment-respond>form>input,
  .comment-respond>form>textarea {
    width: 100%;
    border: 1px solid #e5eff6;
    padding: 10px 15px;
    margin-bottom: 10px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .comment-respond>form>input:focus,
  .comment-respond>form>input:active,
  .comment-respond>form>textarea:focus,
  .comment-respond>form>textarea:active {
    outline: 2px solid #4798d9;
  }
  
  .comment-respond>form>.form-submit {
    margin: 0;
    padding: 0;
  }
  
  .comment-respond>form>.form-submit>input[type="submit"] {
    width: 100%;
    background-color: #4798d9;
    border: 2px solid #4798d9;
    padding: 10px 0px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .comment-respond>form>.form-submit>input[type="submit"]:hover {
    background-color: transparent;
    color: #4798d9;
  }
  
  /* 11.0 - Blog */
  .article-item {
    background-color: #FFFFFF;
    padding: 6px;
    padding-bottom: 30px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.1);
  }
  
  .article-item>.article-head {
    position: relative;
  }
  
  .article-item>.article-head>.article-image {
    overflow: hidden;
    margin-bottom: 70px;
  }
  
  .article-item>.article-head>.article-image>img {
    width: 100%;
    height: auto;
  }
  
  .article-item>.article-head>.article-meta {
    display: inline-block;
    padding: 20px 10px;
    color: rgba(255, 255, 255, 0.5);
    background-color: #4798d9;
    text-align: center;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translate(-50%, 50%) skewY(1deg);
    -ms-transform: translate(-50%, 50%) skewY(1deg);
    transform: translate(-50%, 50%) skewY(1deg);
    position: absolute;
    width: 90%;
    z-index: 10;
  }
  
  .article-item>.article-head>.article-meta>.meta-item {
    display: inline-block;
    padding: 0 25px;
    border-right: 1px solid rgba(174, 214, 241, 0.3);
    -webkit-transform: skewY(-1deg);
    -ms-transform: skewY(-1deg);
    transform: skewY(-1deg);
  }
  
  .article-item>.article-head>.article-meta>.meta-item>i {
    display: block;
  }
  
  .article-item>.article-head>.article-meta>.meta-item span {
    color: #FFFFFF;
    font-weight: 600;
  }
  
  .article-item>.article-head>.article-meta>.meta-item:last-child {
    border-right: none;
  }
  
  .article-item>.entry-title {
    font-size: 1.375em;
    text-align: center;
    padding: 0 50px;
  }
  
  .article-item>.entry-title>a {
    color: #1d252e;
    text-decoration: none;
  }
  
  .article-item>.entry-title>a:hover {
    color: #4798d9;
  }
  
  .article-item>.entry-content {
    text-align: center;
    padding: 0 50px;
    margin-bottom: 30px;
  }
  
  .article-item>.readmore {
    display: table;
    margin: 0 auto;
  }
  
  .timeline {
    position: relative;
    overflow: hidden;
    padding-bottom: 85px;
  }
  
  .timeline:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #bdd1de;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .timeline .article-item {
    width: 45%;
    float: left;
    clear: left;
  }
  
  .timeline .article-item:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #e5eff6;
    border: 5px solid #bdd1de;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    right: -72px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .timeline .article-item:hover:before {
    background-color: #4798d9;
  }
  
  .timeline .article-item>.article-head:before {
    content: "";
    position: absolute;
    top: 30px;
    right: -38px;
    width: 0;
    height: 0;
    border: 14px solid transparent;
    border-left-color: rgba(29, 37, 46, 0.2);
    -webkit-filter: blur(2px);
    filter: blur(2px);
  }
  
  .timeline .article-item>.article-head:after {
    content: "";
    position: absolute;
    top: 26px;
    right: -42px;
    width: 0;
    height: 0;
    border: 18px solid transparent;
    border-left-color: #FFFFFF;
  }
  
  .timeline .article-item>.article-head>.corner {
    width: 15px;
    height: 26px;
    position: absolute;
    top: 31px;
    right: -15px;
    background-position: 14px -35px;
    z-index: 10;
  }
  
  .timeline .article-item:nth-child(even) {
    margin-top: 70px;
    margin-left: 10%;
    clear: right;
  }
  
  .timeline .article-item:nth-child(even):before {
    right: inherit;
    left: -72px;
  }
  
  .timeline .article-item:nth-child(even)>.article-head:before {
    right: inherit;
    left: -38px;
    border-left-color: transparent;
    border-right-color: rgba(29, 37, 46, 0.2);
  }
  
  .timeline .article-item:nth-child(even)>.article-head:after {
    right: inherit;
    left: -42px;
    border-left-color: transparent;
    border-right-color: #FFFFFF;
  }
  
  .timeline .article-item:nth-child(even)>.article-head>.corner {
    right: inherit;
    left: -15px;
    background-position: 0px -41px;
    -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
  
  .timeline .morepost-btn {
    position: absolute;
    z-index: 50;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .timeline .morepost-btn>.viewmore {
    display: table;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      display: none;
    }
  
    .timeline .article-item {
      width: 100%;
      float: none;
    }
  
    .timeline .article-item:before,
    .timeline .article-item:after {
      display: none;
    }
  
    .timeline .article-item .article-head .corner,
    .timeline .article-item .article-head:before,
    .timeline .article-item .article-head:after {
      display: none;
    }
  
    .timeline .article-item:nth-child(even) {
      margin-left: 0;
    }
  }
  
  @media (min-width: 768px) {
    .timeline:before {
      display: none;
    }
  
    .timeline .article-item {
      width: 100%;
      float: none;
    }
  
    .timeline .article-item:before,
    .timeline .article-item:after {
      display: none;
    }
  
    .timeline .article-item .article-head .corner,
    .timeline .article-item .article-head:before,
    .timeline .article-item .article-head:after {
      display: none;
    }
  
    .timeline .article-item:nth-child(even) {
      margin-left: 0;
    }
  }
  
  @media (min-width: 992px) {
    .timeline:before {
      display: block;
    }
  
    .timeline .article-item {
      width: 45%;
      float: left;
    }
  
    .timeline .article-item:before,
    .timeline .article-item:after {
      display: block;
    }
  
    .timeline .article-item:before {
      right: -62px;
    }
  
    .timeline .article-item>.article-head .corner,
    .timeline .article-item>.article-head:before,
    .timeline .article-item>.article-head:after {
      display: block;
    }
  
    .timeline .article-item>.article-head>.article-meta>.meta-item {
      padding: 0 10px;
    }
  
    .timeline .article-item:nth-child(even) {
      margin-left: 10%;
    }
  
    .timeline .article-item:nth-child(even):before {
      left: -62px;
    }
  }
  
  @media (min-width: 1200px) {
    .timeline .article-item:before {
      right: -80px;
    }
  
    .timeline .article-item:nth-child(even):before {
      left: -80px;
    }
  }
  
  .full-width .aw-single-post>article {
    border: none;
    margin: 0;
  }
  
  .full-width .aw-single-post .aw-post-content {
    padding: 0;
    margin: 0;
    border: none;
  }
  
  .full-width .aw-single-post .aw-post-content>.title {
    font-size: 2em;
  }
  
  .aw-post-pagination>ul>li>a,
  .aw-post-pagination>ul>li>span {
    border-color: #e5eff6;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: 600;
  }
  
  .aw-post-pagination>ul>li>a:hover,
  .aw-post-pagination>ul>li>span:hover {
    background-color: #4798d9;
    color: #FFFFFF;
  }
  
  /* 12.0 - Newsletter */
  .newsletter-form {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  
  .field-inside {
    position: relative;
    padding: 4px;
    padding-left: 20px;
    background-color: #FFFFFF;
    border-radius: 4px;
  }
  
  .field-inside>input[type="text"] {
    border: none;
    padding: 15px 10px;
    padding-left: 50px;
    color: #5b7182;
    width: 100%;
  }
  
  .field-inside>input[type="text"]:focus,
  .field-inside>input[type="text"]:active {
    outline-color: transparent;
  }
  
  .field-inside>button[type="submit"] {
    border: none;
    background-color: #4798d9;
    border: 1px solid transparent;
    padding: 14px 35px;
    font-size: 1.125em;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .field-inside>button[type="submit"]:hover {
    color: #4798d9;
    background-color: #FFFFFF;
    border-color: #4798d9;
    border-radius: 4px;
  }
  
  .field-inside>button[type="submit"]>.ajax-loader {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  
  .field-inside>button[type="submit"]>.ajax-loader>i {
    position: absolute;
    top: 13px;
    left: 2px;
  }
  
  .field-inside>button[type="submit"].clicked>.subscribe-text {
    opacity: 0;
  }
  
  .field-inside>button[type="submit"].clicked>.ajax-loader {
    opacity: 1;
  }
  
  .field-inside>i {
    color: #bdd1de;
    font-size: 2.25em;
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  @media (max-width: 767px) {
    .newsletter-form {
      width: 100%;
      border-color: transparent;
      border-radius: 0;
    }
  
    .field-inside {
      background-color: transparent;
      padding: 0;
      border-radius: 0;
    }
  
    .field-inside>i {
      top: 8px;
      left: 10px;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
  
    .field-inside>input {
      display: block;
    }
  
    .field-inside>button[type="submit"] {
      position: relative;
      top: inherit;
      right: inherit;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: 100%;
      margin-top: 10px;
    }
  }
  
  /* 13.0 - Contact */
  #google-maps {
    min-height: 460px;
    width: 100%;
  }
  
  .contact-details {
    background-color: #f2faff;
    padding: 30px;
    position: relative;
    box-shadow: 2px 0 4px rgba(29, 37, 46, 0.4);
    z-index: 3;
    color: #5b7182;
  }
  
  .contact-details .contact-title {
    font-size: 1.375em;
    font-weight: normal;
    margin-bottom: 16px;
    color: #1d252e;
  }
  
  .contact-details .contact-items {
    padding: 0px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5eff6;
  }
  
  .contact-details .contact-items>li {
    list-style: none;
    padding-left: 32px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
  }
  
  .contact-details .contact-items>li:before {
    font-family: FontAwesome;
    font-size: 1.25em;
    color: #4798d9;
    position: absolute;
    left: 0px;
    top: 8px;
  }
  
  .contact-details .social-profiles {
    padding: 15px 0px;
  }
  
  .contact-details .social-profiles>li {
    display: inline-block;
  }
  
  .contact-details .social-profiles>li>a {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    text-align: center;
  }
  
  .contact-details .social-profiles>li>a>i {
    font-size: 1.25em;
  }
  
  .contact-details .social-profiles>li>a>span {
    opacity: 0;
    background: #000;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 0.75em;
    line-height: 1em;
    padding: 3px 5px;
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .contact-details .social-profiles>li>a>span:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #000;
    border-width: 5px;
    margin-left: -5px;
  }
  
  .contact-details .social-profiles>li>a:hover>span {
    top: -30px;
    opacity: 1;
  }
  
  .contact-details .social-profiles>li[class*="facebook"]>a {
    color: #3b5998;
  }
  
  .contact-details .social-profiles>li[class*="facebook"]>a>span {
    background-color: #3b5998;
  }
  
  .contact-details .social-profiles>li[class*="facebook"]>a>span:after {
    border-top-color: #3b5998;
  }
  
  .contact-details .social-profiles>li[class*="twitter"]>a {
    color: #28a9e2;
  }
  
  .contact-details .social-profiles>li[class*="twitter"]>a>span {
    background-color: #28a9e2;
  }
  
  .contact-details .social-profiles>li[class*="twitter"]>a>span:after {
    border-top-color: #28a9e2;
  }
  
  .contact-details .social-profiles>li[class*="pinterest"]>a {
    color: #cb2027;
  }
  
  .contact-details .social-profiles>li[class*="pinterest"]>a>span {
    background-color: #cb2027;
  }
  
  .contact-details .social-profiles>li[class*="pinterest"]>a>span:after {
    border-top-color: #cb2027;
  }
  
  .contact-details .social-profiles>li[class*="dribbble"]>a {
    color: #e04c86;
  }
  
  .contact-details .social-profiles>li[class*="dribbble"]>a>span {
    background-color: #e04c86;
  }
  
  .contact-details .social-profiles>li[class*="dribbble"]>a>span:after {
    border-top-color: #e04c86;
  }
  
  .contact-details .social-profiles>li[class*="vimeo"]>a {
    color: #1ab7ea;
  }
  
  .contact-details .social-profiles>li[class*="vimeo"]>a>span {
    background-color: #1ab7ea;
  }
  
  .contact-details .social-profiles>li[class*="vimeo"]>a>span:after {
    border-top-color: #1ab7ea;
  }
  
  .contact-details .social-profiles>li[class*="googleplus"]>a {
    color: #d95232;
  }
  
  .contact-details .social-profiles>li[class*="googleplus"]>a>span {
    background-color: #d95232;
  }
  
  .contact-details .social-profiles>li[class*="googleplus"]>a>span:after {
    border-top-color: #d95232;
  }
  
  .contact-container {
    background-color: rgba(189, 209, 222, 0.1);
    padding: 30px;
  }
  
  .contact-container .contact-title {
    font-size: 1.375em;
    font-weight: normal;
    margin: 0;
    margin-bottom: 25px;
  }
  
  .contact-container .contact-form p {
    margin: 0;
  }
  
  .contact-container .contact-form input,
  .contact-container .contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #1e2429;
    padding: 10px 20px;
    margin-bottom: 15px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    resize: none;
  }
  
  .contact-container .contact-form input:active,
  .contact-container .contact-form input:focus,
  .contact-container .contact-form textarea:active,
  .contact-container .contact-form textarea:focus {
    border-color: #4798d9;
    outline-color: transparent;
  }
  
  .contact-container .contact-form input::-webkit-input-placeholder,
  .contact-container .contact-form textarea::-webkit-input-placeholder {
    color: #5b7182;
  }
  
  .contact-container .contact-form input:-moz-placeholder,
  .contact-container .contact-form textarea:-moz-placeholder {
    color: #5b7182;
  }
  
  .contact-container .contact-form input::-moz-placeholder,
  .contact-container .contact-form textarea::-moz-placeholder {
    color: #5b7182;
  }
  
  .contact-container .contact-form input:-ms-input-placeholder,
  .contact-container .contact-form textarea:-ms-input-placeholder {
    color: #5b7182;
  }
  
  .contact-container .contact-form input[type="submit"],
  .contact-container .contact-form textarea[type="submit"] {
    display: inline-block;
    width: auto;
    background-color: #4798d9;
    color: #FFFFFF;
    font-size: 1.125em;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .contact-container .contact-form input[type="submit"]:hover,
  .contact-container .contact-form textarea[type="submit"]:hover {
    background-color: #FFFFFF;
    color: #4798d9;
  }
  
  .contact-container .contact-form textarea {
    height: 150px;
  }
  
  .gradient .contact-container .contact-form input,
  .gradient .contact-container .contact-form textarea {
    color: #1d252e;
    background-color: #FFFFFF;
  }
  
  .gradient .contact-container .contact-form input[type="submit"],
  .gradient .contact-container .contact-form textarea[type="submit"] {
    color: #4798d9;
  }
  
  .gradient .contact-container .contact-form input[type="submit"]:hover,
  .gradient .contact-container .contact-form textarea[type="submit"]:hover {
    background-color: #4798d9;
    color: #FFFFFF;
    border-color: #FFFFFF;
  }
  
  /* 14.0 - Team */
  .member-profile {
    padding: 25px;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.1);
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .member-profile>.member-image {
    width: 160px;
    height: 160px;
    background: #bdd1de;
    margin: 0 auto;
    border-radius: 50%;
    padding: 4px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .member-profile>.member-image>img {
    border-radius: 50%;
    width: 100%;
    height: auto;
  }
  
  .member-profile>.member-info {
    padding: 25px 0px;
  }
  
  .member-profile>.member-info>.member-name {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1d252e;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .member-profile>.member-social {
    padding-top: 25px;
  }
  
  .member-profile>.member-social>a {
    display: inline-block;
    margin: 5px;
    color: #bdd1de;
  }
  
  .member-profile>.member-social>a:hover {
    color: #4798d9;
  }
  
  .member-profile>.member-social>a:hover.facebook {
    color: #3b5998;
  }
  
  .member-profile>.member-social>a:hover.twitter {
    color: #28a9e2;
  }
  
  .member-profile>.member-social>a:hover.pintarest {
    color: #cb2027;
  }
  
  .member-profile>.member-social>a:hover.dribbble {
    color: #e04c86;
  }
  
  .member-profile>.member-social>a:hover.googleplus {
    color: #d95232;
  }
  
  .member-profile>.member-social>a:hover.github {
    color: #333;
  }
  
  .member-profile>.member-social>a:hover.linkedin {
    color: #0077b5;
  }
  
  .member-profile:hover>.member-image {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  
  .member-profile:hover>.member-info>.member-name {
    color: #4798d9;
  }
  
  @media (max-width: 992px) {
    .member-profile {
      min-height: 475px;
    }
  }
  
  @media (max-width: 767px) {
    .member-profile {
      min-height: inherit;
    }
  }
  
  /* 15.0 - Logo */
  .logo-items {
    text-align: center;
  }
  
  .logo-items>.item {
    display: inline-block;
    padding: 30px;
  }
  
  .logo-items>.item>a {
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }
  
  .logo-items>.item>a:hover {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  
  /* 16.0 - Footer */
  .footer-section {
    padding: 35px 0px;
    background-color: #182028;
  }
  
  .footer-section .copyright-info {
    margin: 0;
    font-weight: 500;
  }
  
  .footer-section .copyright-info>a {
    font-weight: 600;
  }
  
  /* 17.0 - Gradient Style */
  .gradient .overlay {

      background: -webkit-linear-gradient(0deg, rgba(143, 41, 141, 0.85) 0, rgba(237, 30, 126, 0.85) 100%);
      background: linear-gradient(90deg, rgba(143, 41, 141, 0.85) 0, rgba(237, 30, 126, 0.85) 100%);
    
    /*background: -webkit-linear-gradient(0deg, rgba(181, 39, 255, 0.85) 0, rgba(83, 179, 249, 0.85) 100%);*/
    /*background: linear-gradient(90deg, rgba(181, 39, 255, 0.85) 0, rgba(83, 179, 249, 0.85) 100%);*/
  }
  
  .gradient .overlay .section-title {
    color: #FFFFFF;
  }
  
  .gradient .overlay .section-title>span {
    color: #FFFFFF;
  }
  
  .gradient .overlay .download-links>.link-item:hover {
    background: #FFFFFF;
    border-color: transparent;
    color: #1d252e;
  }
  
  .gradient .achieve-item>.icon {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .achieve-item>.inside {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .feature-items.style-2 .item>.icon {
    border-color: transparent;
    border-image: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    border-image: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
    border-image-slice: 1;
  }
  
  .gradient .feature-items.style-2 .item:hover>.icon:after {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .feature-items.style-3 .item>.icon {
    border: none;
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .feature-items.style-3 .item>.icon:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background-color: #f2faff;
    border-radius: 50%;
    z-index: 1;
  }
  
  .gradient .feature-items.style-3 .item>.icon:before {
    z-index: 2;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
  }
  
  .gradient .feature-items.style-3 .item>.icon>i {
    z-index: 3;
  }
  
  .gradient .feature-items.style-3 .item:hover>.icon:before {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .member-profile>.member-image {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .pricing-plan>.head {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .screenshot-item>.zoom-overlay {
      background: -webkit-linear-gradient(0deg, rgba(143, 41, 141, 0.85) 0, rgba(237, 30, 126, 0.85) 100%);
      background: linear-gradient(90deg, rgba(143, 41, 141, 0.85) 0, rgba(237, 30, 126, 0.85) 100%);
      
    /*background: -webkit-linear-gradient(0deg, rgba(181, 39, 255, 0.8) 0, rgba(83, 179, 249, 0.8) 100%);*/
    /*background: linear-gradient(90deg, rgba(181, 39, 255, 0.8) 0, rgba(83, 179, 249, 0.8) 100%);*/
  }
  
  .gradient .overflow-testimonials>.item.active>.image {
    background: -webkit-linear-gradient(0deg, #B527FF 0, #53b3f9 100%);
    background: linear-gradient(90deg, #B527FF 0, #53b3f9 100%);
  }
  
  .gradient .footer-section {
    background-color: #FFFFFF;
  }
  
  /* 18.0 - Dark Style */
  .dark {
    background-color: #28323d;
  }
  
  .dark .section-title {
    color: #FFFFFF;
  }
  
  .dark [data-background="gray"] {
    background-color: #182028;
  }
  
  .dark .achieve-item>.icon {
    background-color: #182028;
  }
  
  .dark .achieve-item>.icon:after {
    background-color: #28323d;
  }
  
  .dark .achieve-item>.icon>i {
    color: #5b7182;
  }
  
  .dark .achieve-item>.inside {
    background-color: #182028;
    color: #4798d9;
  }
  
  .dark .achieve-item>.inside>.name {
    color: #5b7182;
  }
  
  .dark .feature-items .item>.icon>i {
    color: #293f50;
  }
  
  .dark .feature-items.style-2 .item>.icon>i {
    color: #4798d9;
  }
  
  .dark .feature-items.style-2 .item:hover>.icon>i {
    color: #FFFFFF;
  }
  
  .dark .feature-items.style-3 .item>.icon>i {
    color: #4798d9;
  }
  
  .dark .feature-items.style-3 .item>.content>h3 {
    color: #4798d9;
  }
  
  .dark .feature-items.style-3 .item:hover>.icon>i {
    color: #FFFFFF;
  }
  
  .dark .feature-items.style-3 .item:hover>.icon:after {
    background-color: #4798d9;
  }
  
  .dark .member-profile {
    background-color: #28323d;
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.2);
  }
  
  .dark .member-profile>.member-info>.member-name {
    color: #4798d9;
  }
  
  .dark .member-profile:hover>.member-info>.member-name {
    color: #FFFFFF;
  }
  
  .dark .pricing-plan {
    background-color: #28323d;
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.2);
  }
  
  .dark .pricing-plan>.content {
    border-top: 4px solid #182028;
  }
  
  .dark .pricing-plan>.content>ul.plan-feature>li {
    border-bottom: 1px solid #5b7182;
  }
  
  .dark .testimonial-items .item>.content {
    background: #28323d;
  }
  
  .dark .testimonial-items .item>.content:before {
    border-right-color: #28323d;
  }
  
  .dark .overflow-testimonials {
    background-image: url("../../assets/images/testimonials-lg-bg-dark.png");
  }
  
  .dark .overflow-testimonials>.item>.image {
    background-color: #182028;
  }
  
  .dark .overflow-testimonials>.item>.content {
    border: 1px solid #182028;
    border-bottom: none;
    background-color: rgba(40, 50, 61, 0.8);
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.5);
  }
  
  .dark .overflow-testimonials>.item>.content:before,
  .dark .overflow-testimonials>.item>.content:after {
    border-bottom-color: #28323d;
  }
  
  .dark .overflow-testimonials>.item>.content:before {
    border-bottom-color: #182028;
  }
  
  .dark .overflow-testimonials>.item:nth-child(4)>.content:before,
  .dark .overflow-testimonials>.item:nth-child(4)>.content:after,
  .dark .overflow-testimonials>.item:nth-child(5)>.content:before,
  .dark .overflow-testimonials>.item:nth-child(5)>.content:after {
    border-top-color: #28323d;
    border-bottom-color: transparent;
  }
  
  .dark .overflow-testimonials>.item:nth-child(4)>.content:before,
  .dark .overflow-testimonials>.item:nth-child(5)>.content:before {
    border-top-color: #182028;
  }
  
  .dark .article-item {
    background-color: #28323d;
    box-shadow: 0px 2px 4px 0px rgba(29, 37, 46, 0.2);
  }
  
  .dark .article-item>.entry-title>a {
    color: #4798d9;
  }
  
  .dark .article-item>.entry-title>a:hover {
    color: #FFFFFF;
  }
  
  .dark .timeline:before {
    background-color: #28323d;
  }
  
  .dark .timeline .article-item:before {
    background-color: #182028;
    border: 5px solid #28323d;
  }
  
  .dark .timeline .article-item:hover:before {
    background-color: #4798d9;
  }
  
  .dark .timeline .article-item>.article-head:before {
    border-left-color: rgba(24, 32, 40, 0.4);
  }
  
  .dark .timeline .article-item>.article-head:after {
    border-left-color: #28323d;
  }
  
  .dark .timeline .article-item:nth-child(even)>.article-head:before {
    border-right-color: rgba(24, 32, 40, 0.4);
  }
  
  .dark .timeline .article-item:nth-child(even)>.article-head:after {
    border-left-color: transparent;
    border-right-color: #28323d;
  }
  
  .dark .contact-details {
    background-color: #28323d;
  }
  
  .dark .contact-details .contact-title {
    color: #FFFFFF;
  }
  
  .dark .contact-details .contact-items {
    border-bottom-color: #182028;
  }
  
  .dark .aw-btn.viewmore {
    border: 4px solid #28323d;
    background-color: #182028;
  }
  
  /* 19.0 - Sidebar And Widgets */
  .widget {
    margin-bottom: 50px;
  }
  
  .widget>.widget-title {
    font-size: 1.375em;
    margin: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #4798d9;
  }
  
  .widget select {
    max-width: 100%;
    border: 1px solid #e5eff6;
    padding: 10px 15px;
  }
  
  .widget select:focus,
  .widget select:active {
    outline: 2px solid #4798d9;
  }
  
  .wp-caption {
    background: #FFFFFF;
    border: 1px solid #e5eff6;
    padding: 5px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .wp-caption>p.wp-caption-text {
    font-size: 1em;
    line-height: 1em;
    padding-top: 5px;
    margin: 0;
  }
  
  /* 19.1 - Widget - Archives */
  .widget_recent_entries>ul,
  .widget_recent_comments>ul,
  .widget_categories>ul,
  .widget_archive>ul,
  .widget_pages>ul,
  .widget_meta>ul,
  .widget_nav_menu>div>ul {
    margin: 0;
    padding: 0;
    padding-left: 5px;
  }
  
  .widget_recent_entries>ul li,
  .widget_recent_comments>ul li,
  .widget_categories>ul li,
  .widget_archive>ul li,
  .widget_pages>ul li,
  .widget_meta>ul li,
  .widget_nav_menu>div>ul li {
    list-style: none;
    display: block;
  }
  
  .widget_recent_entries>ul li>a,
  .widget_recent_comments>ul li>a,
  .widget_categories>ul li>a,
  .widget_archive>ul li>a,
  .widget_pages>ul li>a,
  .widget_meta>ul li>a,
  .widget_nav_menu>div>ul li>a {
    color: #5b7182;
    text-decoration: none;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .widget_recent_entries>ul li>a:hover,
  .widget_recent_comments>ul li>a:hover,
  .widget_categories>ul li>a:hover,
  .widget_archive>ul li>a:hover,
  .widget_pages>ul li>a:hover,
  .widget_meta>ul li>a:hover,
  .widget_nav_menu>div>ul li>a:hover {
    color: #4798d9;
  }
  
  .widget_recent_entries>ul li:before,
  .widget_recent_comments>ul li:before,
  .widget_categories>ul li:before,
  .widget_archive>ul li:before,
  .widget_pages>ul li:before,
  .widget_meta>ul li:before,
  .widget_nav_menu>div>ul li:before {
    content: "\f105";
    font-family: FontAwesome;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.20em;
    font-weight: bold;
    color: #FFFFFF;
    width: 15px;
    height: 15px;
    display: inline-block;
    background-color: #bdd1de;
    padding-left: 2px;
    border-radius: 50%;
    margin-right: 20px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .widget_recent_entries>ul li:hover:before,
  .widget_recent_comments>ul li:hover:before,
  .widget_categories>ul li:hover:before,
  .widget_archive>ul li:hover:before,
  .widget_pages>ul li:hover:before,
  .widget_meta>ul li:hover:before,
  .widget_nav_menu>div>ul li:hover:before {
    background-color: #4798d9;
  }
  
  /* 19.2 - Widget - Calendar */
  #wp-calendar {
    width: 100%;
  }
  
  #wp-calendar caption {
    text-align: right;
    color: #333;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
  #wp-calendar thead th {
    padding-bottom: 10px;
    font-size: 1em;
    text-align: center;
  }
  
  #wp-calendar tbody {
    color: #aaa;
  }
  
  #wp-calendar tbody td {
    background: #e5eff6;
    border: 1px solid #FFFFFF;
    text-align: center;
    padding: 8px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  #wp-calendar tbody td:hover {
    background: #FFFFFF;
  }
  
  #wp-calendar tbody .pad {
    background: none;
  }
  
  #wp-calendar tfoot #next {
    text-transform: uppercase;
    text-align: right;
  }
  
  #wp-calendar tfoot #prev {
    text-transform: uppercase;
    padding-top: 10px;
  }
  
  /* 19.3 - Widget - RSS Feed */
  .widget_rss>ul {
    margin: 0;
    padding: 0;
  }
  
  .widget_rss>ul>li {
    list-style: none;
    margin-bottom: 25px;
  }
  
  .widget_rss>ul>li>.rsswidget {
    font-size: 1.25em;
    line-height: 1.2em;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    display: block;
    text-decoration: none;
  }
  
  .widget_rss>ul>li>.rss-date {
    display: block;
    font-size: 0.8em;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  /* 19.4 - Widget - Search */
  .search-form {
    position: relative;
  }
  
  .search-form>label {
    display: block;
    width: 100%;
  }
  
  .search-form>label>input {
    display: block;
    width: 100%;
    border: 1px solid #e5eff6;
    padding: 10px 15px;
    font-weight: normal;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .search-form>label>input:focus,
  .search-form>label>input:active {
    outline: 2px solid #4798d9;
  }
  
  .search-form input[type="submit"] {
    position: absolute;
    top: 0;
    display: none;
  }
  
  /* 19.5 - Widget - Tag Cloud */
  .widget_tag_cloud>.tagcloud>a {
    font-size: 0.8em !important;
    font-weight: 600;
    border: 1px solid #e5eff6;
    padding: 5px 10px;
    margin: 3px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
  }
  
  .widget_tag_cloud>.tagcloud>a:hover {
    background-color: #4798d9;
    color: #FFFFFF;
  }
  
  /* 20.0 - Internet Explorer Fix*/
  body[class*="aw-ie"].menu-1-open #navigation.navigation-style-1.open {
    left: 0px;
  }
  
  body[class*="aw-ie"] .timeline .article-item>.article-head .corner {
    display: none;
  }